View previous topic :: View next topic |
Author |
Message |
suffering Voice
Joined: 27 May 2005 Posts: 27
|
Posted: Tue Oct 18, 2005 6:50 am Post subject: i need a small script .. |
|
|
i need this script so my bot will autovoice the specific host on join on a specific channel thru X (Undernet)
Code: |
on ^*:join:#:{
if (*!*@host iswm $fulladdress) && ($chan == #Channel) { /.msg x voice #Channel $nick }
|
|
|
Back to top |
|
 |
Sir_Fz Revered One

Joined: 27 Apr 2003 Posts: 3793 Location: Lebanon
|
Posted: Tue Oct 18, 2005 8:16 am Post subject: |
|
|
Code: | bind join - "#channel *!*@host" x:msg
proc x:msg {nick uhost hand chan} {
putquick "privmsg x :voice $chan $nick"
} |
_________________ Follow me on GitHub
- Opposing
Public Tcl scripts |
|
Back to top |
|
 |
|