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.

Whats the command line to do a action in a tcl script ?

Old posts that have not been replied to for several years.
Locked
J
JingYou
Halfop
Posts: 58
Joined: Tue Oct 16, 2001 8:00 pm
Location: Singapore
Contact:

Post by JingYou »

proc act {nick host handle channel testes} {
( how to make bot do actions <e.g /me>)
remote 1
}

Thank ya very muchy for ya helpy
Jing You
A
Arnaudg

Post by Arnaudg »

Use this:

putserv "ACTION #Channel texte"
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

On 2002-01-24 06:14, Arnaudg wrote:
Use this:

putserv "ACTION #Channel texte"
That will not work, as there is no such IRC command as action. A client may have one, but IRC doesn't.

You should use
puthelp "PRIVMSG <#chan/nick> :01ACTION MESSAGE HERE01"
Locked