3.30 star(s) 69 Votes

eike2000

Member
May 9, 2017
166
85
211
I create file name : cheat.rpy and put in game folder
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)]
Please help me, when press q,e,z,x,c or v key it dont active, i often used this key to cheat other renpy game, but this game is useless
 

goobdoob

Conversation Conqueror
Modder
Respected User
Dec 17, 2017
7,426
9,717
630
I create file name : cheat.rpy and put in game folder

Please help me, when press q,e,z,x,c or v key it dont active, i often used this key to cheat other renpy game, but this game is useless
You can lock hunger, hygiene, etc on the computer. You don't need this.
 

eike2000

Member
May 9, 2017
166
85
211
You can lock hunger, hygiene, etc on the computer. You don't need this.
That is not what i wanna point in, i wanna get help that "config.overlay_screens.append("game_cheats")" is unworking, i mean, i wanna press 'q' key to cheat time in game (jump back 1 hour). All game i could create my own cheat by this way, but this game is unwork. Maybe i got a mistake in somewhere
 

lordfridge9

Emperor of Universe 7
Donor
Aug 24, 2017
3,271
3,954
436
So does young Amelia know that you're her father? She seems to either not knowing it or acknowledging/caring
 

Ranger

'Water World' developer
Game Developer
Jul 30, 2017
1,144
2,140
384
That is not what i wanna point in, i wanna get help that "config.overlay_screens.append("game_cheats")" is unworking, i mean, i wanna press 'q' key to cheat time in game (jump back 1 hour). All game i could create my own cheat by this way, but this game is unwork. Maybe i got a mistake in somewhere
So you want the game to support whatever additional stuff you might want to hack in? Sorry to say this, but it's up to you to make your add-on compatible with the game, not vice-versa. Also jumping the clock is something I would generally advise against, but if you want to do it, just don't be surprised when the weird stuff you do has weird consequences.
 

goobdoob

Conversation Conqueror
Modder
Respected User
Dec 17, 2017
7,426
9,717
630
So you want the game to support whatever additional stuff you might want to hack in? Sorry to say this, but it's up to you to make your add-on compatible with the game, not vice-versa. Also jumping the clock is something I would generally advise against, but if you want to do it, just don't be surprised when the weird stuff you do has weird consequences.
I jump the clock all the time - with the forward time button and rollback! :p
 

Sonayte

Member
Apr 12, 2019
260
95
204
is it final for 18 version after arriving the wife and some scenes with her? i havent open full gallery, but no also havent new events
 

nijiemax

Newbie
Mar 10, 2019
43
7
148
anyone have some saved file? im kinda stuck in open marriage and idk how to follow the walkthrough in this part. pls? thanks
 

Ranger

'Water World' developer
Game Developer
Jul 30, 2017
1,144
2,140
384
anyone have some saved file? im kinda stuck in open marriage and idk how to follow the walkthrough in this part. pls? thanks
Or you can post YOUR save file and get some help how to get 'unstuck' :D
 

Ranger

'Water World' developer
Game Developer
Jul 30, 2017
1,144
2,140
384
thats my save and ive been stucked without new events
Challenge Catherine to a game of strip dice while she's at the gym with Barbara and lose. This will unlock the Old Rivalry quest and once you progress enough through it, you will be able to continue the Open Marriage quest and all the quests after that.
 

Sonayte

Member
Apr 12, 2019
260
95
204
Challenge Catherine to a game of strip dice while she's at the gym with Barbara and lose. This will unlock the Old Rivalry quest and once you progress enough through it, you will be able to continue the Open Marriage quest and all the quests after that.
thank you
 
  • Like
Reactions: Ranger
3.30 star(s) 69 Votes