Register forum user name Search FAQ

MUSHclient scripting

Description of MUSHclient world function: world.TraceOut


Name TraceOut
Type Method
Summary Outputs the supplied message to the world Trace
Prototype void TraceOut(BSTR Message);
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")


Note: Available in version 3.68 onwards.


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.
Returns Nothing.
Introduced in version 3.68

See also ...

Function Description
Trace Trace mode property

Search for script function

Enter a word or phrase in the box below to narrow the list down to those that match.

The function name, prototype, summary, and description are searched.

Search for:   

Leave blank to show all functions.


Return codes

Many functions return a "code" which indicates the success or otherwise of the function.

You can view a list of the return codes


Function prototypes

The "prototype" part of each function description lists exactly how the function is called (what arguments, if any, to pass to it).

You can view a list of the data types used in function prototypes


View all functions

[Back]

Information and images on this site are licensed under the Creative Commons Attribution 3.0 Australia License unless stated otherwise.