mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Dec 2015
Posts: 5
C
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
C
Joined: Dec 2015
Posts: 5
for example if i have the line,

ON *:TEXT:*:?: { echo -a This is a test }

I want to run the event only when a specific nick sends me any text to my private chat. ¿how can i do that?

Joined: Jan 2005
Posts: 192
Vogon poet
Offline
Vogon poet
Joined: Jan 2005
Posts: 192
Code:
ON *:TEXT:*:?: {
    IF ($nick == Christian2501) {
        echo -a This is a test
    }
}


echo -a $signature
Joined: Dec 2015
Posts: 5
C
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
C
Joined: Dec 2015
Posts: 5
Thank you sir laugh


Link Copied to Clipboard