Skip to content

Scenes and Labels

Scene Definition

Use #SceneName to define a scene:

#scene_forest "Dark Forest"

> You arrive at a forest...

#scene_tower "Tower of Stars"

> A tall tower looms before you...

Scene names can use Chinese, with the title in quotes.

Labels

Labels are used for jumps within a scene, starting with .:

#scene_start "Start"

林晓: What should I do?

.look_around
> You look around.
-> scene_start

.wait
> You decide to wait.
-> scene_start

Jumps

Scene Jump

-> scene_forest

Label Jump

-> .look_around

Call and Return

@call is used to call a scene and return:

@call shop_scene
林晓: Done shopping, back to adventure.

Use @return to return in shop_scene:

#shop_scene "Shop"

林晓: Shopkeeper, I want to buy something!
@return
Last updated on