i need a small script ..

Old posts that have not been replied to for several years.
Locked
s
suffering
Voice
Posts: 27
Joined: Fri May 27, 2005 4:34 am

i need a small script ..

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 }
User avatar
Sir_Fz
Revered One
Posts: 3793
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"
}
Locked