PDA

View Full Version : Can someone lend a hand here?


Refugee
04-07-2001, 12:35
(Complete IRC scripting newbie)

Can someone tell me how I can have a command that will auto op anyone who joins (Or is already in) a certain channel, and voice them in another, or do none if required.

Thanks :)

Ironheart
04-07-2001, 13:36
To op people who join #x, for example, you would need to add the following line to your Remotes section:
on 1:join:#x:/mode #x +o $nick

And the other one to voice anyone who joins #y would be:
on 1:join:#y:/mode #y +v $nick

Not sure how you would do it for people who are already in the channel, but hey that's a start :)

[Edited by Ironheart on 04-07-2001 at 01:41 PM]

Refugee
04-07-2001, 15:07
Thanks, works a treat :)