This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Voice script

Old posts that have not been replied to for several years.
Locked
d
dlined-

Post by dlined- »

Does anybody know where I can get a voice script with pause, that voices everybody on a specific channel?

There is one but it voices on every channel from FireEgl :sad:

Thanks! :wink:
User avatar
DrTongue
Op
Posts: 115
Joined: Sat Jan 26, 2002 8:00 pm
Location: Orlando, Florida
Contact:

Post by DrTongue »

On 2002-01-27 03:51, dlined- wrote:
Does anybody know where I can get a voice script with pause, that voices everybody on a specific channel?

There is one but it voices on every channel from FireEgl :sad:

Thanks! :wink:

The used to be a .tcl here on slennox's .tcl page that would voice people on a specified channel and not everyone the bot is on.
B
B|aDe

Post by B|aDe »

This script was made for me by my friend.

It simply voices everyone who joins the channel 10secs after they have joined.

It's a great script bc it allows you to store hosts you dont want the bot to give voice. Pretty neat for controlling flooders in your channel.

stdragon also helped add in the delay of 10secs before the bot would voice anyone who just joined the channel.

hope this helps you..

here's the code...

#################################auto-voice#############################
# before loading this script make a user
# called "novoice" that contains the hostmasks
# that you don't wish to have +v in the channel
#
bind join - * oj_voice
proc oj_voice {nick uhost hand chan} {
if {$hand != "novoice"} { utimer 10 [list pushmode $chan +v $nick] }
return 0
}
putlog "loaded =AutoVoice= created by _andy updated by RoCkY, stdragon"
Locked