Does anyone know the TCL syntax for getting the bot to kick a user? so far ive tried:
Code:
bind pub - !kick kick

proc kick {nick uhost handle chan args} {
        putserv "PRIVMSG $chan /kick $nick :\001ACTION die \001"

        return 0
}
But all the bot does is return to the channel:

botname: /kick

instead of kicking the user upon request of !kick

...

I dont understand why not, it seems like it should work.. any input would be cool ..