The syntax of the script files
On this page, the syntax of the StoryScript script files will be explained.
The syntax .sscript
is pretty simple. Each line in the file is a new command.
Here is an example of a .sscript
file that outputs a message to the chat [John] Hi! How are you?
:
msg "John" Hi! How are you?
You can also make comments in the script files using //
:
// Welcome
msg "John" Hi! How are you?
// End of the script
Last updated