luna23

Newbie
Sep 26, 2021
19
18
its too much bug for me, cant chat with olivia. After promotion the game crash when you gonna talk with grace. and much more. Played 93.1b + 93.1d addon + urm.
 

gbobee

New Member
Feb 6, 2020
14
48
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

Board Buff
Compressor
Sep 3, 2022
19,296
159,045
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 .
 
  • Love
Reactions: tommyjohne

steelmonkey76

Member
Feb 4, 2021
301
311
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

New Member
Feb 6, 2020
14
48
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

New Member
Feb 6, 2020
14
48
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

New Member
Feb 6, 2020
14
48
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) 110 Votes