- Sep 13, 2017
- 343
- 304
Hi MaraTDuoDev:hahaha shit, thanks for the report, I'll fix it![]()
I noticed that your pictures include 4 images of Celia in underwear and the MC can peek into the bedroom. The script that triggers those images is in the Celia.rpy file and it is a random event. I found that by playing it normally I could never trigger this part of the game. I started to look at your code and found that you have two randon number generation command folowing each other which effectively means that you have a 7.5% (50% of 15%) chance of triggering this event provided other conditions are met. I did a test where I continually rolled back to reselect Celia's room and the first random number generator command never gave me a value of less than 15.
My view is that to better balance the game and allow this event to trigger more frequently you need to remove the 1st two lines of the script. This will then give a 50% chance of triggering it instead.
$ randNum = renpy.random.randint(1,100)
if randNum <= 15:
Just my 2 cents worth. BTW great and very intriguing game.
Regards
Jugar
Excerpt from Celia.rpy game script follows:
label celiaroom:
$ randNum = renpy.random.randint(1,100)
if randNum <= 15:
$ randNum = renpy.random.randint(1,100)
if daytime == 3 or daytime == 4 or daytime == 5:
if randNum < 50:
jump event_celia_walking
elif celia_corr >= 20: