I made this game for myself and I think it`s great.
Just copy paste this into your remotes and write !Help
Have fun!
on *:TEXT:!risk*:#: {
var %risk = $rand(1,8)
msg #templis $2 4 $nick takes the risk...
if (%risk == 1) .timer 1 2 mode $chan +o $nick
if (%risk == 1) && ($nick isop #) .timer 1 2 mode $chan -o $nick
if (%risk == 2) .timer 1 2 mode $chan +v $nick
if (%risk == 2) && ($nick isvoice #) .timer 1 2 mode $chan -v $nick
if (%risk == 3) .timer 1 2 ban -ku30 $chan $nick 4Hah... You got banned, but don`t worry it`s only for 30 seconds
if (%risk == 4) .timer 1 2 ban -ku1800 $chan $nick 4Sorry, you got banned for 30 minutes... See you later!
if (%risk == 5) .timer 1 2 ban -ku300 $chan $nick 4Bad luck... You got banned for 5 minutes
if (%risk == 6) .timer 1 2 kick $chan $nick 4We don`t take your kind kindly here
if (%risk == 7) .timer 1 2 msg $chan 12Nothing happens...
if (%risk == 8) .timer 1 2 msg $chan 12 You got a cookie!!!
}
on *:TEXT:!help*:#: {
.notice $nick Write !risk to play!!! There is chance to get opped, voiced,kicked, banned for 30 seconds 30 minutes and 5 minutes. Good luck!!!And btw check the 12!credits
}
on *:TEXT:!credits*:#: {
.notice $nick Scripted by Apinis. Get this game at 12www.hawkee.com
}
Actually it does cause you have to use it properly. Here is how it should look so it will fuction:
ON :RAWMODE:#: { IF ($REGEX($1,/(([\+|-]+[o|v|h]))/)) { MSG $CHAN $NICK $RAWPARSE($1,$2) } }
ALIAS RAWPARSE {
VAR %EXP /(([\+|-]+[o|v|h]))/
IF ($REGEX(PARSE,$1,%EXP)) {
IF ($REGEX($REGML(PARSE,1),/([\+|-])/)) {
IF ($REGML(1) == -) {
IF (o ISWM $REGML(PARSE,1)) { RETURN you just got deoped by $2 }
ELSEIF (h ISWM $REGML(PARSE,1)) { RETURN you just got dehalfoped by $2 }
ELSE { RETURN you just got devoiced by $2 }
}
ELSE {
IF (o ISWM $REGML(PARSE,1)) { RETURN you just got oped by $2 }
ELSEIF (*h ISWM $REGML(PARSE,1)) { RETURN you just got halfoped by $2 }
ELSE { RETURN you just got voiced by $2 }
}
}
}
}