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.

Binding Question ( Voice )

Old posts that have not been replied to for several years.
Locked
]
]x[

Binding Question ( Voice )

Post by ]x[ »

I have searched every where for it but i can't seem to find it ' anymore '. In the past i editted my eggdrop, so when anyone joined, no matter who ( even users who are not in the userfile ) gets voice. I know it was some sort off bind / rebind thingie and it had something to do with the +greet. Atleast if i can remember correctly. If anyone on this forum can help me find the page or the code or something again it would be very appreciated.

I know you guys get these requests very often and i hope you can make the time to help me with this.

Thankz in advance
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

That doesn't help us at all.

All you have given us, is your thoughts to the solution, of a unknown problem (IE, you didn't say).
User avatar
caesar
Mint Rubber
Posts: 3778
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

Code: Select all

setudef flag freevoice

bind join * * free:voice

proc free:voice {nick uhost handle channel} {
  global botnick
  if {[lsearch -exact [channel info $channel] -freevoice] != -1 || ![botisop $channel]} { return }
  pushmode $channel +v $nick
}
Save this code to a .tcl file in your scripts/ dir, load it to your eggdrop and for the channel you want this to work do .chanset #channel +freevoice
Once the game is over, the king and the pawn go back in the same box.
]
]x[

Post by ]x[ »

ppslim wrote:That doesn't help us at all.

All you have given us, is your thoughts to the solution, of a unknown problem (IE, you didn't say).
I wanna know how to rebind the +greet to a autovoice so , when anyone joins the chan gets voiced.


Thankz ceasar for the script but the point is, i don't want a script, i got plenty of scripts already. I want to know the rebind or any other method how it can be done. Tho without a tcl script that is.
b
bobjuh
Master
Posts: 268
Joined: Wed Oct 03, 2001 8:00 pm
Location: Netherlands
Contact:

Post by bobjuh »

]x[ wrote:
ppslim wrote:That doesn't help us at all.

All you have given us, is your thoughts to the solution, of a unknown problem (IE, you didn't say).
I wanna know how to rebind the +greet to a autovoice so , when anyone joins the chan gets voiced.


Thankz ceasar for the script but the point is, i don't want a script, i got plenty of scripts already. I want to know the rebind or any other method how it can be done. Tho without a tcl script that is.
Add a user with host *!*@* and give that user the flags +gv for that chan :).
]
]x[

Post by ]x[ »

Thankz a nice solution :) hheeh will use that one i think :)
Locked