Design Note

These scripts uses the Editor -> Design Note feature in Dromed to store their configuration, in common with the behaviour of scripts provided by other authors like those found in NVScript, tnhScript, and PublicScripts.

For some scripts, the Design Note may be left empty, in which case the script's default settings are used. However, this is rarely useful, and in practice the Design Note will contain one or more configuration parameters. Each parameter consists of three parts:

For example:

TWTrapSetSpeedDest='SomeTerrPt'

The value you can specify for any given parameter depends on its type. The documentation for each parameter says what type of value it expects you to give it, and it may require any of the following:

For the integer, boolean, and time types, you may also use a quest variable in place of a literal value. To do this, prepend the quest variable name with $. For example, this will use the value specified in the quest variable platform_speed:

TWTrapSetSpeed=$platform_speed

Values may be enclosed in quotes, either single quotes or double quotes, but this is not required unless you are specifying a string containing a semicolon, in which case you must quote the string.

If more than one parameter is specified, semicolons are used to separate them, for example:

TWTrapSetSpeed=5;TWTrapSetSpeedDest='*TerrPt'