mIRC Snippet:
Powar!
Posted on
Mar 30, 2008 7:51 pm
if you change the line where it add the total nicks to:
set %power.powerover %power.powerover + $nick($chan(%power.chan.counter),0,a,o)
it will give olny nicks that are not opped. also you can use some while statements to help clean up the code a little and use the /inc command.
mIRC Snippet:
!orgy D:
Posted on
Mar 25, 2008 3:15 am
maybe add some checks so it dont say the same nick twice or say the bot's nick...
heres one way...
[code]on @*:text:!orgy:#:{
if ($nick(#,0) <= 4) { msg $chan Sorry $nick You Need At Lest 4 Other People Not Including $me In The Channel To Use This Script | halt }
elseif ($nick(#,0) >= 5) {
:pickagain
var %nick = $nick(#,$r(1,$nick(#,0))), %nick2 = $nick(#,$r(1,$nick(#,0))), %nick3 = $nick(#,$r(1,$nick(#,0)))
if ($istok(%nick %nick2 %nick3,$me,32)) || ($istok(%nick %nick2 %nick3,$nick,32)) { goto pickagain }
if (%nick == %nick2 || %nick == %nick3 || %nick2 == %nick3) { goto pickagain }
else {
msg $chan $nick starts an orgy!
.timer 1 3 msg $chan $nick grabs %nick %nick2 and %nick3
.timer 1 5 msg $chan OH NOES!
.timer 1 7 kick $chan $gettok($nick %nick %nick2 %nick3,$r(1,4),32) YOU GOT AIDS!
}
}
}[code]