mIRC Homepage
Posted By: MyNe Voice - 28/03/05 09:40 PM
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)?
Posted By: SladeKraven Re: Voice - 28/03/05 09:53 PM
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.
Posted By: DaveC Re: Voice - 28/03/05 10:05 PM
On @*:Join:#: { inc %on.join.counter | if (%on.join.counter >= 5) { unset %on.join.counter | mode $chan +v $nick } }
Posted By: SladeKraven Re: Voice - 28/03/05 10:10 PM
Damn, seems I had the whole concept wrong.
Hehehe. I need some coffee! grin
Posted By: DaveC Re: Voice - 28/03/05 10:52 PM
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!
Posted By: SladeKraven Re: Voice - 28/03/05 11:01 PM
I'd only /hop the channel if it was usermode +o as opposed to channel mode. wink
© mIRC Discussion Forums