Name SendPush
Type Method
Summary Sends a message to the MUD and saves it in the command history buffer
Prototype long SendPush(BSTR Message);
Description This sends the specified text to the world. It is like typing it into the command window.

The command is saved in the command history buffer (use Send if you do NOT want to save it).

Note: This function is available in MUSHclient version 3.27 onwards.
VBscript example
World.SendPush "go north"
Jscript example
world.SendPush("go north");
PerlScript example
$world->SendPush("go north");
Returns eWorldClosed : The world is closed
eOK: Sent OK

See also ...