I really feel like a newb needin so much help lately, but ive been makin a lot of different stuff that ive never tried before, except the kick counter which i just messed up, lol.
Anyways, i need help once again, this time with sumthin that when i type a nick, it msgs me options, and when i type one of the options, it does that option to the nick, i cant figure out why it dont work, but then i again, i am pretty slow, lol.
on *:text:*:#:{
if ($readini(admin.ini, n, admin, $address($nick,1)) != $null) {
if ($1- ison $chan) {
auser question $nick
msg $chan Owner, Host, Voice, Kick, Ban, Addowner, Addhost, Addvoice for $1-
set %question.nick $1-
}
}
}
on question:text:kick:#:{
msg $chan It shall be done :)
kick $chan %question.nick My master said so :P
ruser question $nick
}
on question:text:owner:#:{
msg $chan It shall be done :)
mode $chan +q %question.nick
ruser question $nick
}
on question:text:host:#:{
msg $chan It shall be done :)
mode $chan +o %question.nick
ruser question $nick
}
on question:text:voice:#:{
msg $chan It shal be done :)
mode $chan +v %question.nick
ruser question $nick
}
on question:text:ban:#:{
msg $chan It shall be done :)
access $chan add deny $address(%question.nick,1)
kick $chan %question.nick My master wants you banned :P
ruser question $nick
}
on question:text:Addowner:#:{
msg $chan It shall be done :)
access $chan add owner $address(%question.nick,1)
ruser question $nick
}
on question:text:Addhost:#:{
msg $chan It shall be done :)
access $chan add host $address(%question.nick,1)
ruser question $nick
}
on question:text:Addvoice :#:{
msg $chan It shall be done :)
access $chan add voice $address(%question.nick,1)
ruser question $nick
}
Thanks,
--SpAzZ--