Serial Dialog Settings Block
One of the root level blocks in MGS Natlang.
settings for serial dialog {}
//or
settings serial dialog {}
Use these blocks to set global settings for serial dialogs.
Block contents: any number of serial dialog parameters (serial dialog property and value pairs) in any order. For example:
settings for serial dialog {
wrap messages to 80
}
Behavior
Serial dialog settings are applied to serial dialogs in order as the parser encounters them; a serial dialog settings block partway down the file will affect only the serial dialogs afterward, and none before.
Parameters given in a serial dialog's body will override any other settings, however.
Serial Dialog Settings are Local!
Settings only apply to scripts within the same file! (They are not global.) They can only apply to multiple files with the use of include!()
.