Advertisement
OrFeAsGr

Stalking Fun Script 2.1

Jul 20th, 2016
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 1.46 KB | None | 0 0
  1. ON *:TEXT:*:#: {
  2.   if ($strip($1) == !stalk) {
  3.     if ($nick == NICKHERE) {
  4.       if (!%stalked) || (%stalked != $strip($2)) || ($nick != $strip($2) {
  5.         set %stalkrep $chan
  6.         set %stalked $strip($2)
  7.         msg $chan I'm now stalking $strip($2) ...
  8.       }
  9. }
  10. }
  11. if ($strip($1) == !stalkoff) {
  12.  if ($nick == NICKHERE) {
  13. unset %stalked* | msg $chan I'm not stalking anyone! Do !stalk <nick> to make me stalk whoever you want!
  14. }
  15. }
  16.   else {
  17.     if ($chan != %stalkrep) {
  18.       if ($nick == %stalked) {
  19.         msg %stalkrep $+([,$chan,]) $+(<,$nick,>) $$1-
  20.       }
  21.     }
  22.   }
  23. }
  24.  
  25. ON *:JOIN:#: {
  26.   if ($chan != %stalkrep) {
  27.     if ($nick == %stalked) {
  28.       msg %stalkrep $nick Just Joined $chan
  29.     }
  30.   }
  31. }
  32.  
  33. ON *:PART:#: {
  34.   if ($chan != %stalkrep) {
  35.     if ($nick == %stalked) {
  36.       msg %stalkrep $nick Just Left $chan
  37.     }
  38.   }
  39. }
  40.  
  41. ON *:QUIT: {
  42.   if ($nick == %stalked) {
  43.     msg %stalkrep $nick Quit $iif($$1-, Reason: $v1, $null)
  44.   }
  45. }
  46.  
  47. ON *:NICK: {
  48.   if ($nick == %stalked) {
  49.     msg $v2 $nick is now knows as $newnick - Stalked NickName Updated
  50.     set %stalked $newnick
  51.   }
  52. }
  53.  
  54. ON *:KICK:#: {
  55.   if ($nick == %stalked) {
  56.     msg $v2 $nick Just Kicked $knick out of $chan $iif($$1-, Reason: $v1, $null)
  57.   }
  58.   if ($knick == %stalked) {
  59.     msg $v2 $nick Just Kicked $knick out of $chan $iif($$1-, Reason: $v1, $null)
  60.   }
  61. }
  62.  
  63. ON *:ACTION:*:#: {
  64.   if ($nick == %stalked) {
  65.     msg $v2 $+([,$chan,]) 13* $nick $$1-
  66.   }
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement