world.TraceOut

MUSHclient script function (Method) — introduced in version 3.68

Outputs the supplied message to the world Trace

Prototype

void TraceOut(BSTR Message);

Data type meanings

Description

If tracing is enabled for this world, the supplied string will be output to the trace destination. Normally this would be by world.Note, however if you are using a plugin with OnPluginTrace inside it, then it will be sent to there instead.

eg.

TraceOut ("debug point 3")

VBscript example

TraceOut "debug point 3"

Jscript example

TraceOut ("debug point 3")

Lua example

TraceOut ("debug point 3")

Lua notes

You can supply multiple arguments, which are concatenated together.

Return value

Nothing.

Related topic

Utilities

See also

FunctionDescription
TraceTrace mode property