Mass Invite
Platform: mIRC
Published Feb 11, 2010
Updated Feb 11, 2010
It's small. It uses a while loop. It's simplistic. If you have any questions, you should read the mIRC help with /help
Note:
I made this because I didn't see very many mass invite scripts on Hawkee. The syntax is very simple, and to reduce redundancy, I'll make you all read the script instead of saying how to do it here.
-Made by Simplicity
;Just type /massinvite #target #where
;Example: /massinvite #Chan1 #chan2 will mass invite #chan1 to #chan2.
alias massinvite {
var %x $nick($1,0)
while (%x) {
invite $nick($1,%x) $2
dec %x
}
}