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.

Look for simple script: Just +v every user on join

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
M
Moti
Voice
Posts: 15
Joined: Fri Sep 20, 2013 12:36 pm

Look for simple script: Just +v every user on join

Post by Moti »

Hello,

I look for a very simple script.
That eggdrop +v everyone who join to #Moti channel.

Thank you ! :)
M
Moti
Voice
Posts: 15
Joined: Fri Sep 20, 2013 12:36 pm

Post by Moti »

Never mind, I set it by the IRCD Service.

Thank you !
d
doggo
Halfop
Posts: 97
Joined: Tue Jan 05, 2010 7:53 am
Contact:

Post by doggo »

cool ya got sorted but for ppl wanting a simple script that does this..

Code: Select all

bind join -|- "#thechannel *" autovoice
proc autovoice {nick uhost hand chan} {
putserv "mode $chan +v $nick"
}
Post Reply