Page 1 of 1

Chapter Titles

Posted: Tue Feb 07, 2012 6:38 am
by cracklings
Hi everyone,

I'm sorry if this is a repeat topic or if this is already in the Ren'py site documentations. It's just quite hard when doing searches for it.

Can anyone tell me how to put titles on chapters in the games? It just makes tracking easier.

Any help will be much appreciated. Thanks.

Re: Chapter Titles

Posted: Tue Feb 07, 2012 3:38 pm
by HigurashiKira
You have two options: you can label them

Code: Select all

label start:
"Nipah!"

label Chapter_1:
"nano desu~"
Or you can split the script into multiple .rpy files (Which you must combine with labeling)

Code: Select all

label start:
"nipah!"
jump chapter_1
##This is in a seperate .rpy file
label chapter_1:
"nano desu~"