Code: Select all
bind pub - !host host
proc host {nick host hand chan} {
putserv "PRIVMSG $chan : your host is $host"
}
putlog "loaded ukhs script"
Tcl error [host]: called "host" with too many arguments
I also have this
Code: Select all
bind join - "*" ukhsjoin
proc ukhsjoin {nick host hand chan} {
if {$host == "someone.called.player.killed-me.co.uk"} {
pushmode $chan +v $nick
putserv "PRIVMSG $nick : your host is $host"
}
}
cheers to anyone that helps me!!