2.00 star(s) 10 Votes

Hinatsukino

Newbie
Jul 15, 2018
71
34
Don't know about anyone else, but the rollback function is busted, for me. I've set it to left and right. Nothing.
 

neman

Member
Jan 5, 2020
247
246
College Jack seem to be broken.... Button highlights , click , 3 girls image shows and i am suppose to click portrait of one of them to start , but u cant click anything except back button , so cant start jack.

Don't know about anyone else, but the rollback function is busted, for me. I've set it to left and right. Nothing.
open file options.rpy which is in game folder
find line where it says config.rollback_enabled = False
change False to True
mind capital letter
it will work now
 

OtstrelDebilov

You should work better
Donor
Game Developer
May 28, 2017
552
775
College Jack seem to be broken.... Button higlists , click , 3 girls image shows and i am suppose to click portrait of one of them to start , but u cant click anything except back button , so cant start jack.
Do you have money for bet?
 

OtstrelDebilov

You should work better
Donor
Game Developer
May 28, 2017
552
775
Rollback function is off - it reduce tons of crushes of renpy engine.

For lazy people - you can skip quiz part and play without questions.
 

neman

Member
Jan 5, 2020
247
246
Interesting. No active faces, I will check it (did you play college jack before? )
No, this is first time and yeah faces arent active at all

P.S i fast skipped to time when next jack was suppose to activate, same thing, Faces are not active
 

neman

Member
Jan 5, 2020
247
246
Maybe position of face icons is x/y wrong (off screen?) ? but i am not sure what am i reading here, first time experience with renpy..
 

neman

Member
Jan 5, 2020
247
246
The Go Shop also went out on me on day 7. Is there a cheat for the perfume?
you should be able to force shop to be always ON

screens.py
Code:
            if (last_shop_day < day_number) and p22 == 1:
                textbutton _("Go shopping") action ShowMenu('shop_1')
            else:
                textbutton _("Go shopping")
change
Code:
            else:
                textbutton _("Go shopping")
to
Code:
            else:
                textbutton _("Go shopping") action ShowMenu('shop_1')
dont copy paste , just write it, might break tabs
 

neman

Member
Jan 5, 2020
247
246
Interesting. No active faces, I will check it (did you play college jack before? )
Ok got it to work. it seems that for some reason (investigating) girl money check function doesn't work
charlie_bl_money >= 200
setting it to 0 , enabled portrait

P.S
after little checking.. why is it even using =>200? i am not finding any reference to her getting money beside from wins but if i havent played before she cant have money? making flag check break the game startup
 

neman

Member
Jan 5, 2020
247
246
Ehh.. only 7 days in game? walkthrou has more days then that and its older version then the game.. just when it got interesting it ended..
 

Kuniyoshi

Member
May 24, 2017
188
253
you should be able to force shop to be always ON

screens.py
Code:
            if (last_shop_day < day_number) and p22 == 1:
                textbutton _("Go shopping") action ShowMenu('shop_1')
            else:
                textbutton _("Go shopping")
change
Code:
            else:
                textbutton _("Go shopping")
to
Code:
            else:
                textbutton _("Go shopping") action ShowMenu('shop_1')
dont copy paste , just write it, might break tabs
This worked for me, thank you!
 
2.00 star(s) 10 Votes