world.SendPkt

MUSHclient script function (Method) — introduced in version 3.81

Sends a low-level packet of data to the MUD

Prototype

long SendPkt(BSTR Packet);

Data type meanings

Description

This sends the specified text to the world.

A newline is not appended to it.

If the text contains the IAC character (0xFF) a second IAC character is NOT appended to it (as normally happens).

The text does not go through the OnPluginSend plugin callback, nor through the OnPluginSent callback.

The text is not echoed to the screen.

It is intended only for low-level sending of data for things like telnet negotiation options.

VBscript example

SendPkt Chr(255) & Chr (252) & Chr (31)  ' IAC WONT NAWS

Lua example

SendPkt (string.char (255, 252, 31))  -- IAC WONT NAWS

Lua notes

The data may include imbedded null characters (0x00) as the Lua string is not tested for being null-terminated.

Return value

eWorldClosed : The world is closed
eOK: Sent OK

Return code meanings

Related topic

Sending to the world

See also

FunctionDescription
ExecuteExecutes a command as if you had typed it into the command window
LogSendSends a message to the MUD and logs it
NoteSends a note to the output window
QueueQueues a command for sending at the "speed walk" rate.
SendSends a message to the MUD
SendImmediateSends a message to the MUD immediately, bypassing the speedwalk queue
SendNoEchoSends a message to the MUD without echoing in the output window
SendPushSends a message to the MUD and saves it in the command history buffer