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.
-
S
Shaddix
Post
by Shaddix »
bind pub - !dance dance
proc dance { nick host handle channel args} {
putserv "PRIVMSG $channel :hi"
}
when i type !dance, it says hi.. but i want it to do /me dances

-
S
Shaddix
Post
by Shaddix »
yeah so :O
-
user
-
- Posts: 1452
- Joined: Tue Mar 18, 2003 9:58 pm
- Location: Norway
Post
by user »
What you want is a CTCP ACTION and here's how to do it:
putserv "PRIVMSG <target> :\001ACTION <message>\001"
Read the irc rfc for details

-
spock
- Master
- Posts: 319
- Joined: Thu Dec 12, 2002 8:40 pm
Post
by spock »
or if you want to do it the "noob/spock" way:
putact <nick/chan> <text>
EDIT NOTE: putact is a procedure in alltools.tcl so make sure its loaded if you intend to use it

photon?
-
S
Shaddix
Post
by Shaddix »
ty so much :>