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.

ACTION

Old posts that have not been replied to for several years.
Locked
G
Guest

Post by Guest »

How i can detect /ME in the channel ???
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

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>
}
Locked