mIRC Home    About    Download    Register    News    Help

Print Thread
#115663 28/03/05 09:40 PM
Joined: Dec 2004
Posts: 7
M
MyNe Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
M
Joined: Dec 2004
Posts: 7
how can i set mode +v to users: 5, 10, 15, 20, 25, 30... (set voice to user number 5 then 10 then 15...... who join a channel)?

#115664 28/03/05 09:53 PM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Do you mean voice users who have a User Level of 5,10,15,20 etc?

if you did then something like..

/auser 10 Andy

Code:
On @*:Join:#: {
  if ($level($nick) == 5 || $level($nick) == 10 || $level($nick) == 15 || $level($nick) == 20) {  mode $chan +v $nick  } 
}


If could you explain how you mean?

You can change $nick to $address($nick,N).

Hope this helps.

-Andy.

Last edited by SladeKraven; 28/03/05 09:57 PM.
#115665 28/03/05 10:05 PM
Joined: Sep 2003
Posts: 4,230
D
Hoopy frood
Offline
Hoopy frood
D
Joined: Sep 2003
Posts: 4,230
On @*:Join:#: { inc %on.join.counter | if (%on.join.counter >= 5) { unset %on.join.counter | mode $chan +v $nick } }

#115666 28/03/05 10:10 PM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Damn, seems I had the whole concept wrong.
Hehehe. I need some coffee! grin

#115667 28/03/05 10:52 PM
Joined: Sep 2003
Posts: 4,230
D
Hoopy frood
Offline
Hoopy frood
D
Joined: Sep 2003
Posts: 4,230
What type of crazy channel voices every 5th user tho?, all thats gonna happen is everyones going to sit ther doing /hop tell they get to be a 5th join. How crazy is that!

#115668 28/03/05 11:01 PM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
I'd only /hop the channel if it was usermode +o as opposed to channel mode. wink


Link Copied to Clipboard