Advertisement
cheiron

where is wally script

Sep 1st, 2019
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 1.30 KB | None | 0 0
  1. ;missing to add.. in the #services section of the script
  2. ;what channel tracked user joins and leaves. Also when they come online and go offline.
  3. on $*:text:/^!(watch|unwatch|nuke|fgrab)\b/iS:#ops: {
  4.   if ($2) { goto $regml(1) }
  5.   else { return }
  6.   :watch
  7.   if ($level($2) !== watch) { .auser spy $2 | .msg #ops Now tracking $2 | return }
  8.   else { .msg #ops That user is already on the tracking list. | return }
  9.   :unwatch
  10.   if ($level($2) == unwatch) { .ruser spy $2 | .msg #ops No longer tracking $2 | return }
  11.   else { .msg #ops That user is not on the tracking list. | return }
  12.   :nuke
  13.   if ($level($2) == nuke) { .tempshun $2 Problem user| return }
  14.   else { .msg #ops That user is not on the tracking list. | return }
  15.   :fgrab
  16.   if ($level($2) == fgrab) { .msg #ops found them.. grabbing then now | .sajoin $2 0 | .sajoin $2 #conf1 | .timer 1 3 .msg #conf1 Do not leave this channel $2 as a server admin needs to speak with you | return }
  17.   else { .msg #ops That user is not on the tracking list. | return }
  18. }
  19. on *:text:*:#Services: {
  20.   var %! = $numtok($1-,40)
  21.   var %^ = $gettok($gettok($gettok($1-,$calc(%! - 1),40),2,41),4,32)
  22.   if ($level($2) == spy) || ($level(%^) == spy) {
  23.     if (changed nick isin $strip($1-)) {
  24.       .ruser spy $2
  25.       .auser spy %^
  26.     }
  27.     /msg #mastercontrol $1-
  28.   }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement