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

The message text is also logged to the current log file, if one is open.

Note: Available in MUSHclient version 3.25 onwards.
VBscript example
World.logsend "go north"
Jscript example
world.LogSend("go north");
PerlScript example
$world->LogSend("go north");
Returns eWorldClosed : The world is closed
eOK: Sent OK

See also ...