Difference between revisions of "Scripting Functions"
From Wiki | RPG in a Box
Line 1: | Line 1: | ||
The page lists all of the functions that are currently available in the ''RPG in a Box'' scripting language. | The page lists all of the functions that are currently available in the ''RPG in a Box'' scripting language. | ||
+ | |||
+ | {| class="wikitable" | ||
+ | !Function | ||
+ | !Description | ||
+ | !Example | ||
+ | |- | ||
+ | |Display Message | ||
+ | |Displays a message box with the specified message. This can be called multiple times in a row to queue up a series of messages. | ||
+ | |display_message("Hello world!") | ||
+ | |} |
Revision as of 12:24, 15 February 2016
The page lists all of the functions that are currently available in the RPG in a Box scripting language.
Function | Description | Example |
---|---|---|
Display Message | Displays a message box with the specified message. This can be called multiple times in a row to queue up a series of messages. | display_message("Hello world!") |