| Name |
LogOutput |
| Type |
Property |
| Summary |
The property of whether MUD output is logged to the log file |
| Prototype |
short LogOutput; |
| Description |
Set to 1 to log output to the log file, 0 to not log |
| VBscript example |
world.logoutput = 1 ' log output
world.logoutput = 0 ' don't log output
world.note world.logoutput ' display whether output is logged |
| Jscript example |
world.logoutput = 1; // log output
world.logoutput = 0; // don't log output
world.note(world.logoutput); // display whether output is logged |
| PerlScript example |
$world->{logoutput} = 1; # log output
$world->{logoutput} = 0; # don't log output
$world->note($world->{logoutput}); # display whether output is logged |
| Returns |
This is a property. You can use it to find whether MUD output is currently logged. |