gbobee

Newbie
Feb 6, 2020
15
59
96
OP is a mess. Trying to download correct ver after 3 patches is a headache. 0.93.1c file link is broken, but may not even be needed for 0.93.1b file? Just a horrible way to do releases man...
 

SonsOfLiberty

Community Champion
Compressor
Sep 3, 2022
30,417
279,946
957
OP is a mess. Trying to download correct ver after 3 patches is a headache. 0.93.1c file link is broken, but may not even be needed for 0.93.1b file? Just a horrible way to do releases man...
All you need is v0.93.1b, and .
 

steelmonkey76

Member
Feb 4, 2021
375
419
206
Are we going to utilise the mansion more cause it seems pointless not being able to meet more than two women there?
 

steelmonkey76

Member
Feb 4, 2021
375
419
206
Made a compresed Android port of High-Rise Climb v0.93.1d with the cheat mod.

Got some basic gestures loaded in: swipe up for save menu, swipe down to hide UI, swipe left for history and swipe right to skip.

Please let me know if you encounter any issues with the port and I'll see what I can do to get them sorted.

Links: Pixeldrain
Sweet Ty
 
  • Like
Reactions: Eonor

gbobee

Newbie
Feb 6, 2020
15
59
96
Level 14 research upgrade seems to miss the boundary check to move to 15. Have tried it on two different saves. Installed 0.93.1b with the 0.93.1d patch.
 

gbobee

Newbie
Feb 6, 2020
15
59
96
Bug is almost certainly starts at line 3533 in 'script.rpy'. All the levels after level 14 follow a different format than the levels below 14 as well. Maybe I'll try to figure out the logic, but the code is written with a lot of hard coded values which is a pain in the dick.


Python:
    elif research_xp < 280:
        $research_xp_max = 20
       $research_stat = 14
        if research_xp_before < 260:
            "You have leveled up."
            "Go to your phone or a computer to select a talent."
            $talent = talent + 1
            return
        else:
           $research_stat = 14
            return
    elif research_xp < 300:
        $research_xp_max = 20
        $research_stat = 14
        if research_xp_before < 280:
            "You have leveled up."
            "Go to your phone or a computer to select a talent."
            $talent = talent + 1
            return
        else:
           $research_stat = 15
            return
 

gbobee

Newbie
Feb 6, 2020
15
59
96
Bug is almost certainly starts at line 3533 in 'script.rpy'. All the levels after level 14 follow a different format than the levels below 14 as well. Maybe I'll try to figure out the logic, but the code is written with a lot of hard coded values which is a pain in the dick.


Python:
    elif research_xp < 280:
        $research_xp_max = 20
       $research_stat = 14
        if research_xp_before < 260:
            "You have leveled up."
            "Go to your phone or a computer to select a talent."
            $talent = talent + 1
            return
        else:
           $research_stat = 14
            return
    elif research_xp < 300:
        $research_xp_max = 20
        $research_stat = 14
        if research_xp_before < 280:
            "You have leveled up."
            "Go to your phone or a computer to select a talent."
            $talent = talent + 1
            return
        else:
           $research_stat = 15
            return
Fixed the leveling error at level 14. Absolutely no idea if it breaks things further on.
 
  • Like
Reactions: SolarWindCatcher
3.90 star(s) 111 Votes