Advertisement
Seb

X kick revenge via X

Seb
Jun 12th, 2015
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.72 KB | None | 0 0
  1. raw *:*: {
  2.   if $istok(354 315,$numeric,32) && %tmp.watch.user != $null {
  3.     if $numeric == 354 && $2 == 600 {
  4.       if $4 == %tmp.watch.user {
  5.         set %tmp.watch.nick $3
  6.         msg X kick %tmp.watch.chan $3 Why would you feel the need to use X to do your damm business?
  7.       }
  8.       halt
  9.     }
  10.     elseif $numeric == 315 && $2 == %tmp.watch.user {
  11.       if %tmp.watch.nick == $null {
  12.         echo -as Nick Not found!! However, username that kicked was %tmp.watch.user
  13.       }
  14.       unset %tmp.watch.*
  15.       halt
  16.     }
  17.   }
  18. }
  19.  
  20. on !*:KICK:#: {
  21.   if $nick == X && $knick == $me {
  22.     set %tmp.watch.chan $chan
  23.     set %tmp.watch.user $mid($1,2,-1)
  24.     who %tmp.watch.user $+(xad,%,nat,$chr(44),600)
  25.   }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement