mIRC Homepage
Posted By: dark2099 auto voice script - 06/01/05 09:41 PM
i am trying to make an auto voice script and i copyied the auto op script from another post, but i have not set it up correctly, i was wondering exactly what the code should say, and where i should put it. thanks
Posted By: SladeKraven Re: auto voice script - 06/01/05 09:48 PM
This will auto voice anyone who joins.
Code:
on @*:Join:#: {  mode $chan +v $nick }
Posted By: Tr0n Re: auto voice script - 06/01/05 09:55 PM
Why the @ ?
Posted By: tidy_trax Re: auto voice script - 06/01/05 10:00 PM
It makes sure you're an op before trying to voice someone.
Posted By: SladeKraven Re: auto voice script - 06/01/05 10:04 PM
Yes, it checks whether you're an op before you voice them. Just like if ($me isop $chan) does.
Posted By: nvrovert Re: auto voice script - 16/08/06 10:35 PM
hey i need ot knwo hot to set this chanel to auto voice #team.nV.
Posted By: RusselB Re: auto voice script - 17/08/06 10:03 PM
Use the code indicated above and replace # with #team.nV
Posted By: nvrovert Re: auto voice script - 17/08/06 11:14 PM
on @*:Join:#team.nV: { mode $chan +v $nick }


it dont work

on @*:Join:#team.nV: mode $chan +v $nick

dont work can u set it up for me plez i am a noob.
Posted By: RusselB Re: auto voice script - 18/08/06 12:15 AM
For that script to work the person/bot that is running the script must be in the channel and have full ops status (ie: the @ symbol must be in front of the nick)
Posted By: Sparhawk Re: auto voice script - 09/10/06 12:56 AM
How would that script be modified to create a delay first, to avoid opping those Spam bots that go around as well?
Posted By: deegee Re: auto voice script - 09/10/06 01:03 AM
Code:
on @*:Join:#:pvoice [color:red]5[/color] # $nick

where 5 is around 5 seconds delay.
Posted By: Keno Re: auto voice script - 13/04/09 03:25 PM
hey
i was trying thet script but don't work
i need for #keno channel
it muss look like this here
@*:Join:#keno: mode $chan +v $nick

right?

and the script is working just when i have o+??
or its working when i have +qo too?
Posted By: 5618 Re: auto voice script - 13/04/09 04:31 PM
It works when you have +o or higher.
Do you have the word "on" in front of @*:JOIN:#keno: ?
It's supposed to look like this:
Code:
on @*:JOIN:#keno: mode $chan +v $nick
Posted By: Horstl Re: auto voice script - 13/04/09 05:07 PM
...but use the pvoice command like in deegees last post, which decreases possible mode-flooding a lot:
on @*:join:#keno:pvoice 5 # $nick
Posted By: DJ_Sol Re: auto voice script - 13/04/09 05:10 PM
Another thing pvoice is nice for:

Many times a nick will join a room then leave right away so your

"on join:#:mode # +v $nick"

would give you a "nick not found" error.

I set it for 3 or 4 seconds and if the nick isn't in the room after 3-5 seconds, it won't perform the command.
Posted By: sparta Re: auto voice script - 13/04/09 05:54 PM
you can also use: if ($nick ison #) {command }
Posted By: Keno Re: auto voice script - 18/04/09 08:52 PM
ye thx guyz
but i need more help :S
how can i give some one +qo when he join


on @*:JOIN:#CoH: { if ($nick == Cpp) mode #CoH +qo $nick $nick }


this here don't work :S? whats wrong
and thx for the auto +v
and nick is Cpp
Posted By: sparta Re: auto voice script - 18/04/09 09:23 PM
on @*:JOIN:#CoH: if ($nick == NICK) mode $chan +qo $nick

don't that work for you?
Posted By: Tomao Re: auto voice script - 18/04/09 09:31 PM
Code:
on @*:JOIN:#CoH: { 
  if ($nick == Cpp) {
    mode # +qo $v2 $v2
  }
}
Posted By: RusselB Re: auto voice script - 18/04/09 09:45 PM
On some networks, the +q mode can only be set by chanserv via the owner identifying themselves as the owner of the channel using the channel password.
Posted By: Keno Re: auto voice script - 18/04/09 10:39 PM
THX dude its working laugh
© mIRC Discussion Forums