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.
Old posts that have not been replied to for several years.
G
Guest
Post
by Guest » Mon Oct 08, 2001 9:32 am
How i can detect /ME in the channel ???
ppslim
Revered One
Posts: 3914 Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England
Post
by ppslim » Mon Oct 08, 2001 10:31 am
Use the ctcp bind.
EG
Code: Select all
bind ctcp - "ACTION" bind:action
proc bind:action {nick uh hand dest kw arg} {
if {[isbotnick $dest]} {
<SOME1 DID A /ME IN A PM>
return
}
<SOME1 DID A /ME IN A CHANNEL>
}