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.

error

Old posts that have not been replied to for several years.
Locked
E
EvilKalaH

Post by EvilKalaH »

i have the following function


bind act - *away* pub_kick


proc pub_kick {nick uhost hand chan args} {
putserv "KICK $chan $nick :bleh"
return 1
}

i want to kick the person from the channel when he says /me is away what must i change to let it work i want to react on actions, in the tutorial stands that act is bind for actions. So i don't understand the error.
P
Petersen
Owner
Posts: 685
Joined: Thu Sep 27, 2001 8:00 pm
Location: Blackpool, UK

Post by Petersen »

bind act is for actions on the partyline (ie done with the bot command .me) IRC actions are a CTCP, thus you need bind ctcp - ACTION proc
Locked