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.
Old posts that have not been replied to for several years.
-
suffering
- Voice
- Posts: 27
- Joined: Fri May 27, 2005 4:34 am
Post
by suffering »
i need this script so my bot will autovoice the specific host on join on a specific channel thru X (Undernet)
Code: Select all
on ^*:join:#:{
if (*!*@host iswm $fulladdress) && ($chan == #Channel) { /.msg x voice #Channel $nick }
-
Sir_Fz
- Revered One
- Posts: 3794
- Joined: Sun Apr 27, 2003 3:10 pm
- Location: Lebanon
-
Contact:
Post
by Sir_Fz »
Code: Select all
bind join - "#channel *!*@host" x:msg
proc x:msg {nick uhost hand chan} {
putquick "privmsg x :voice $chan $nick"
}