DISPLAY
Description
The DISPLAY command is the basic method of showing text on the screen. Up to XX characters will be shown (the text box bubble does not currently expand past three lines). Unicode standard (includes non-modified emojis) is supported.
note
Use the SLEEP command alongside the DISPLAY command to make sure the message stays on the screen. Otherwise, the message will simply flash on the screen too quickly to actually view!
Syntax
DISPLAY "text"
SLEEP value
Arguments
- value: time in seconds
Example
Input
DISPLAY "Hello World!"
SLEEP 5
Output
Screen will display "Hello World!" in the text box bubble for 5 seconds.
Resources
Explore the SaviScript GitHub repository for all published instances of this command.