|
|
Joined: Jan 2005
Posts: 1
Mostly harmless
|
OP
Mostly harmless
Joined: Jan 2005
Posts: 1 |
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
|
|
|
|
Joined: Dec 2002
Posts: 3,547
Hoopy frood
|
Hoopy frood
Joined: Dec 2002
Posts: 3,547 |
This will auto voice anyone who joins.
on @*:Join:#: { mode $chan +v $nick }
|
|
|
|
Joined: Jan 2005
Posts: 8
Nutrimatic drinks dispenser
|
Nutrimatic drinks dispenser
Joined: Jan 2005
Posts: 8 |
|
|
|
|
Joined: Nov 2003
Posts: 2,327
Hoopy frood
|
Hoopy frood
Joined: Nov 2003
Posts: 2,327 |
It makes sure you're an op before trying to voice someone.
New username: hixxy
|
|
|
|
Joined: Dec 2002
Posts: 3,547
Hoopy frood
|
Hoopy frood
Joined: Dec 2002
Posts: 3,547 |
Yes, it checks whether you're an op before you voice them. Just like if ($me isop $chan) does.
|
|
|
|
Joined: Aug 2006
Posts: 2
Bowl of petunias
|
Bowl of petunias
Joined: Aug 2006
Posts: 2 |
hey i need ot knwo hot to set this chanel to auto voice #team.nV.
|
|
|
|
Joined: Aug 2004
Posts: 7,252
Hoopy frood
|
Hoopy frood
Joined: Aug 2004
Posts: 7,252 |
Use the code indicated above and replace # with #team.nV
|
|
|
|
Joined: Aug 2006
Posts: 2
Bowl of petunias
|
Bowl of petunias
Joined: Aug 2006
Posts: 2 |
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.
|
|
|
|
Joined: Aug 2004
Posts: 7,252
Hoopy frood
|
Hoopy frood
Joined: Aug 2004
Posts: 7,252 |
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)
|
|
|
|
Joined: Oct 2006
Posts: 1
Mostly harmless
|
Mostly harmless
Joined: Oct 2006
Posts: 1 |
How would that script be modified to create a delay first, to avoid opping those Spam bots that go around as well?
|
|
|
|
Joined: Jun 2006
Posts: 508
Fjord artisan
|
Fjord artisan
Joined: Jun 2006
Posts: 508 |
on @*:Join:#:pvoice [color:red]5[/color] # $nick where 5 is around 5 seconds delay.
|
|
|
|
Joined: Apr 2009
Posts: 3
Self-satisified door
|
Self-satisified door
Joined: Apr 2009
Posts: 3 |
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?
|
|
|
|
Joined: Jun 2007
Posts: 933
Hoopy frood
|
Hoopy frood
Joined: Jun 2007
Posts: 933 |
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: on @*:JOIN:#keno: mode $chan +v $nick
|
|
|
|
Joined: Nov 2006
Posts: 1,559
Hoopy frood
|
Hoopy frood
Joined: Nov 2006
Posts: 1,559 |
...but use the pvoice command like in deegees last post, which decreases possible mode-flooding a lot: on @*:join:#keno:pvoice 5 # $nick
|
|
|
|
Joined: Jan 2007
Posts: 1,156
Hoopy frood
|
Hoopy frood
Joined: Jan 2007
Posts: 1,156 |
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.
|
|
|
|
Joined: Feb 2003
Posts: 3,432
Hoopy frood
|
Hoopy frood
Joined: Feb 2003
Posts: 3,432 |
you can also use: if ($nick ison #) {command }
if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
|
|
|
|
Joined: Apr 2009
Posts: 3
Self-satisified door
|
Self-satisified door
Joined: Apr 2009
Posts: 3 |
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
Last edited by Keno; 18/04/09 08:52 PM.
|
|
|
|
Joined: Feb 2003
Posts: 3,432
Hoopy frood
|
Hoopy frood
Joined: Feb 2003
Posts: 3,432 |
on @*:JOIN:#CoH: if ($nick == NICK) mode $chan +qo $nick
don't that work for you?
if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
|
|
|
|
Joined: Jul 2007
Posts: 1,129
Hoopy frood
|
Hoopy frood
Joined: Jul 2007
Posts: 1,129 |
on @*:JOIN:#CoH: {
if ($nick == Cpp) {
mode # +qo $v2 $v2
}
}
|
|
|
|
Joined: Aug 2004
Posts: 7,252
Hoopy frood
|
Hoopy frood
Joined: Aug 2004
Posts: 7,252 |
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.
|
|
|
|
|
|