Ending a Route - shawna-p/mysterious-messenger GitHub Wiki
Notice
These pages are out of date! The most recent version of the documentation can be found here: https://mysterious-messenger.readthedocs.io/en/stable/
This page is retained so that it can still be linked to.
Ending a Route
When the player has reached the end of the route, there is a special call to show the player an ending screen and return them to the main menu.
Ending a Route after a VN
If you end the route after a VN, at the end of the VN label, write
$ ending = 'good'
jump vn_end_route
where 'good'
is one of 'good'
, 'normal'
, or 'bad'
. It will show the correct ending screen before returning to the main menu.
Ending a Route after a Chatroom
At the end of the chatroom label, write
$ ending = 'bad'
jump chat_end_route
where 'good'
is one of 'good'
, 'normal'
, or 'bad'
. It will show the correct ending before returning to the main menu.