- May 26, 2017
- 838
- 2,810
Hi,
One of the games I'm modding switched from version 7.1.3 of Ren'Py to version 7.3.0 . It resulted in two issues but I can't find the reason in the changelogs:
I'm getting a
I managed to solve the issue by rewriting it:
Note that these errors don't occur when using the main game. I find this extremely weird.
The second problem is with a timer not counting down anymore:
The last documented change to the timers I could find was in 6.1.3...
One of the games I'm modding switched from version 7.1.3 of Ren'Py to version 7.3.0 . It resulted in two issues but I can't find the reason in the changelogs:
I'm getting a
Line is indented, but the preceding tag statement does not expect a block. Please check this line's indentation.
error because of screens using a tag like screen main_menu() tag menu:
.I managed to solve the issue by rewriting it:
Code:
screen main_menu():
tag menu
You don't have permission to view the spoiler content.
Log in or register now.
The second problem is with a timer not counting down anymore:
Code:
timer 1 repeat True action If(JDMOD_time > 0, true=SetVariable("JDMOD_time", JDMOD_time - 1), false=SetVariable("JDMOD_time", 0))