Hi!
I would like to create a script where I can give someone access level but only in a certain channel. So say I want to grant someone access level 2 but I only want him to have access level 2 in #apples. How would I go about doing this?
Just to explain what I mean, here's an example of what it COULD be. :P
on *:TEXT:*!grant 2*:#: {
if ($nick isop #) {
auser 2 $3 $chan
msg # $3 has been granted access level 2 in $chan.
}
}
Hopefully this will kinda help you understand what I want.
/Loose