mIRC Home    About    Download    Register    News    Help

Print Thread
D
DuXxXieJ
DuXxXieJ
D
Does anyone has a script which checks on a join if the nick is in the access list, or if he gets a +o/+h/+v/+q/+a in the chan, and if not, the script user (me or a bot) will voice the joining nick?

(My english isn't that well, I'm sorry)

Joined: Dec 2002
Posts: 1,997
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Dec 2002
Posts: 1,997

Do you mean in the network services access list? If so then the joining user would be voiced/opped by services immediately, so you could use a timer delay to check their status and voice only if necessary....

Code:

on @*:JOIN:#: {
  .timer 1 3 if ( $nick isreg # ) mode # +v $nick
}



Joined: Jul 2007
Posts: 1,124
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Jul 2007
Posts: 1,124
RoCk, why not use the /pvoice command?

5
5618
5618
5
Originally Posted By: Tomao
RoCk, why not use the /pvoice command?

Because that will still voice +h and above when there's no need to?

Joined: Dec 2002
Posts: 1,997
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Dec 2002
Posts: 1,997

What he said.

Last edited by RoCk; 20/07/09 04:38 PM.
D
DuXxXieJ
DuXxXieJ
D
Thanks smile


Link Copied to Clipboard