mIRC Home    About    Download    Register    News    Help

Print Thread
#78502 08/04/04 02:46 PM
Joined: Oct 2003
Posts: 306
J
Fjord artisan
OP Offline
Fjord artisan
J
Joined: Oct 2003
Posts: 306
on 1:ban:#: { .echo $nick te ha pateado tio en el # !!!! | .msg chanserv invite # }

the add on is work fine but how i do , when some body kick me

if $nick == me ?

thnx


mess with the best
#78503 08/04/04 03:05 PM
Joined: Jun 2003
Posts: 5,024
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Jun 2003
Posts: 5,024
To detect if someone has kicked you, use the ON KICK event with $knick - see /help on kick.

Regards,


Mentality/Chris
#78504 08/04/04 03:18 PM
Joined: Oct 2003
Posts: 306
J
Fjord artisan
OP Offline
Fjord artisan
J
Joined: Oct 2003
Posts: 306
thnx my pal .how i do it



mess with the best
#78505 08/04/04 03:26 PM
Joined: Jun 2003
Posts: 5,024
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Jun 2003
Posts: 5,024
On top of the examples in /help on kick, one might be:
Code:
on *:kick:#:{ 
  if ($knick == $me) { 
    msg $nick Don't kick me please, thanks :)  
    join #
  }
}


You could probably get the point from this smile

Regards,


Mentality/Chris

Link Copied to Clipboard