Name Note
Type Method
Summary Sends a note to the output window
Prototype void Note(BSTR Message);
Description This makes a note in the output window. It is not transmitted to the world. It is useful for making comments to yourself. The note is automatically terminated by a newline, so each World.Note will appear on a separate line.

The note appears in the current NoteColour (a custom colour), or in the RGB colours selected by NoteColourFore and NoteColourBack.

You can also choose colours with NoteColourRGB and NoteColourName.

If you want to change colours in the middle of a note, use World.Tell instead.
VBscript example
World.note \"This monster is worth avoiding!\"
Jscript example
world.note(\"This monster is worth avoiding!\");
PerlScript example
$world->note(\"This monster is worth avoiding!\");
Returns Nothing.

See also ...