Visit
http://fapadultgames.com/Game by: Icstor
Remake by: selectivepaperclip
Censorship: None
Version: Completed
OS: Windows / Linux
Language: English
Ramake Info:
Spoiler
In addition to the clickable map, the games have the following changes from the RPGM versions:
No walking
No combat
No waiting for text or video to finish
Save anywhere
Aside from testing whether the games can be completed, I'm looking for feedback about how well this runs on people's machines, how they feel about the interface, etc.
onsole Commands:
Spoiler
Open the console with SHIFT-O
To cheat money (or "gold" as RPGM calls it):
Code:
game_state.party.gain_gold(10000)
To see game variables:
Code:
game_state.variables.print_values()
To set game variables:
Code:
game_state.variables.set_value([variable_id], [variable_name])
for example, this sets the aunt, sister, and mom's relation in Incest Story 2 to 100
Code:
game_state.variables.set_value(1, 100)
game_state.variables.set_value(3, 100)
game_state.variables.set_value(5, 100)
with the disclaimer that games might behave weirdly if you go setting variables to crazy numbers.