- Jan 19, 2020
- 12,382
- 48,812
how am i supposed to cut the electric pole?
no hud when u need to cut the cabel and you cant do it
It's the code.Same here, there doesn't seem to be a way to add the wire-cutter in the box.
The dev forces the quick access screen Off three times in the latest update: once at the end of v1.16, once during Story2Survive, and once during Story2Exploration.
What he should do is set a temp var to see if the Player has it open and if so be able to turn it back on automatically after the need to remove it is completed.
This is simple to do. I would make it more complex inside a Python function, but novice code could be something similar to this:
Python:
# Sancho: Dev needs to turn it off. Check if it's on and if so set a temp var and close it:
if renpy.get_screen("quick_acces"):
$ SanchoAmazingTempVar = True # if the access screen is shown, set a temp var
hide screen quick_acces # close the access screen regardless
# Sancho: Now, later dev could check if the Player had it open and reopen it when it's clear to do so:
if SanchoAmazingTempVar: # check to see if the access screen was previously shown by the Player
$ SanchoAmazingTempVar = False
show screen quick_acces # turn that shit back on automatically
# Sancho: Pretty damn easy, right?