Post Chatroom Content - 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.
Post-Chatroom Content
Example files to look at: tutorial_5_coffee.rpy
If there is anything you would like to have occur after a chatroom, or any additional content you would like to make available to the player (e.g. text messages), you need to create an "after chatroom" label. This is after_
+ the name of your label.
For example, if your chatroom is called
label my_chatroom:
then the "after label" should be called
label after_my_chatroom:
This needs to be separate from the main chatroom so the program knows to deliver things like text messages in the event that a chatroom has expired. You can do many things in this label -- the most common use is for text messages, though you can also use it to change a character's voicemail, among other things.