- Jan 16, 2020
- 517
- 1,938
Ruykiru
Chapter 1 :
"Don't click next, the following music auto plays."
Here is something for you dude.
$ renpy.say(charactername,"Whatever dialogue you want to put during the cinematic.", interact=False)
$ renpy.pause(number of second before the code proceeds to the next line, hard = True)
Example :
Cinematic lasts 60 seconds, and you have two persons saying one thing during it :
$ renpy.say(mc,"Dialogue 1", interact=False)
$ renpy.pause(2, hard = True)
$ renpy.say(girl,"Dialogue 2", interact=False)
$ renpy.pause(2, hard = True)
// 60 - 2 - 2 = 56 (total cinematic length minus all the dialogues)
$ renpy.pause(56, hard = True)
Now you have a cinematic no one can ruin by left clicking, and the dialogue sync properly. It will prevent immersion breaking by including instructions before it starts.
PS : Also, a Worakls music ? Good luck with the DMCA
Chapter 1 :
"Don't click next, the following music auto plays."
Here is something for you dude.
$ renpy.say(charactername,"Whatever dialogue you want to put during the cinematic.", interact=False)
$ renpy.pause(number of second before the code proceeds to the next line, hard = True)
Example :
Cinematic lasts 60 seconds, and you have two persons saying one thing during it :
$ renpy.say(mc,"Dialogue 1", interact=False)
$ renpy.pause(2, hard = True)
$ renpy.say(girl,"Dialogue 2", interact=False)
$ renpy.pause(2, hard = True)
// 60 - 2 - 2 = 56 (total cinematic length minus all the dialogues)
$ renpy.pause(56, hard = True)
Now you have a cinematic no one can ruin by left clicking, and the dialogue sync properly. It will prevent immersion breaking by including instructions before it starts.
PS : Also, a Worakls music ? Good luck with the DMCA
Last edited: