mIRC Home    About    Download    Register    News    Help

Print Thread
#175335 21/04/07 02:33 AM
Joined: Feb 2007
Posts: 6
D
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
D
Joined: Feb 2007
Posts: 6
i'm trying to find a script
for auto voiceing that when someone come in my room it voice them
please help
thank you Danny

danny375 #175336 21/04/07 02:53 AM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Several possibilities depending on the services that may be available.
1) Issue the command
Code:
/msg chanserv vop [color:#66FFFF]#channel[/color] add [color:#66FFFF]nick[/color]
This does not require you to be in the channel when the nick enters in order for it to be voiced, but the network does have to support chanserv service.
2) Issue the command
Code:
/avoice [color:#66FFFF]nick[/color] [color:#66FFFF]#channel[/color]

This does require you to be in the channel, but no further scripting is required
3)
Code:
on @*:join:#:{
  .mode $chan +v $nick
}


The first two will only voice those nicks that have been previously specified. The last one will voice all nicks that enter the channel presuming that the client running the code has full ops in the channel.


Link Copied to Clipboard