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

The command is not saved in the command history buffer (use SendPush if you want to save it).
VBscript example
World.send "go north"
Jscript example
world.Send("go north");
PerlScript example
$world->Send("go north");
Returns eWorldClosed : The world is closed
eOK: Sent OK

See also ...