world.LogSend

MUSHclient script function (Method) — introduced in version 3.25

Sends a message to the MUD and logs it

Prototype

long LogSend(BSTR Message);

Data type meanings

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.

The data in the log file may not appear immediately if you view it in another application. To force the data to disk use the FlushLog function.

VBscript example

world.logsend "go north"

Jscript example

world.LogSend("go north");

PerlScript example

$world->LogSend("go north");

Python example

world.LogSend("go north")

Lua example

LogSend 
[[
go north
eat food
drink water
]]

Lua notes

You can supply multiple arguments, which are concatenated together.

Return value

eWorldClosed : The world is closed
eItemInUse : Cannot be called from within OnPluginSent script callback
eOK: Sent OK

Return code meanings

Related topic

Logging

See also

FunctionDescription
FlushLogFlushes the log file to disk
NoteSends a note to the output window
SendSends a message to the MUD
WriteLogWrites to the log file