init python:
config.overlay_screens.append("game_cheats")
screen game_cheats:
if config.skip_delay > 50 :
key "[" action [SetVariable("config.skip_delay", config.skip_delay - 50)]
key "]" action [SetVariable("config.skip_delay", config.skip_delay + 50)]
key "=" action [SetVariable("config.skip_delay", 100)]
# -------------------------- clock.hour -------------------------------------------
if clock.hour > 0:
key "q" action [SetVariable("clock.hour", clock.hour -1), SetVariable("p_you.energy", 100), SetVariable("p_you.hunger", 100), SetVariable("p_you.hygene", 100), SetVariable("p_you.horny", 0)]
if clock.hour < 12:
key "w" action [SetVariable("clock.hour", clock.hour +1), SetVariable("p_you.energy", 100), SetVariable("p_you.hunger", 100), SetVariable("p_you.hygene", 100), SetVariable("p_you.horny", 0)]
key "z" action [SetVariable("clock.hour", 0), SetVariable("p_you.energy", 100), SetVariable("p_you.hunger", 100), SetVariable("p_you.hygene", 100), SetVariable("p_you.horny", 0)]
key "x" action [SetVariable("clock.hour", 2), SetVariable("p_you.energy", 100), SetVariable("p_you.hunger", 100), SetVariable("p_you.hygene", 100), SetVariable("p_you.horny", 0)]
key "c" action [SetVariable("clock.hour", 6), SetVariable("p_you.energy", 100), SetVariable("p_you.hunger", 100), SetVariable("p_you.hygene", 100), SetVariable("p_you.horny", 0)]
key "v" action [SetVariable("clock.hour", 8), SetVariable("p_you.energy", 100), SetVariable("p_you.hunger", 100), SetVariable("p_you.hygene", 100), SetVariable("p_you.horny", 0)]
key "e" action [SetVariable("p_you.energy", 100), SetVariable("p_you.hunger", 100), SetVariable("p_you.hygene", 100), SetVariable("p_you.horny", 0)]