skc0110
Member
- Nov 18, 2021
- 153
- 276
- 187
I'm happy to provide some context. The mini-game is 100% winnable, and if you follow the guide, you can succeed on your first try. The code responsible for determining if you win isn't located in the claw_machine.rpy file but rather in the ep10_others_branch.rpy file. Specifically, the code is:
I marked the area around those offsets to make it clear for others. I tested it multiple times, and it works consistently. Hope this helps!Python:if claw_offset[0] >= -220 and claw_offset[0] <= -180 and claw_offset[1] >= -410 and claw_offset[1] <= -355: jump ep10_claw_success_label
Ill check