The dev used a non standard place to save the games variables making the addon useless.
For cheats open the console (F12 on most browsers) and enter:
money (best not to use before you ran out after stealing some):
Code:
SugarCube.State.active.__getUpperName__.player.franc = 10000
arousal (max):
Code:
SugarCube.State.active.__getUpperName__.player.excitation = 100
changing dick size (currently implemented values are 1, 2, 3 smallest -> biggest, will be reset to 2 when you enter the bathroom, unless you remove that from the html):
smallest example:
Code:
SugarCube.State.active.__getUpperName__.player.body.sex.size = 1
discovering places faster (enter each time before you click on explore the city):
Code:
SugarCube.State.active.__getUpperName__.engine.states.cityDiscoverProb = 100
quick leveling of massage skill (will result in 1 level for every massage you give for some time):
Code:
SugarCube.State.active.__getUpperName__.player.skills.massage.xp = 1000000
mucking with time (3 periods, with 3 instants for the first 2 and 1 for the last one, starting with 0):
start of day example:
Code:
SugarCube.State.active.__getUpperName__.engine.time.period = 0, SugarCube.State.active.__getUpperName__.engine.time.instant = 0
doing daily things multiple times:
First do it once and enter
Code:
SugarCube.State.active.__getUpperName__.engine.daily
This will give you a list of the daily events you did on that day, the last one should be the one you just did, lets call it "whatever". Next enter:
Code:
SugarCube.State.active.__getUpperName__.engine.daily.pop("whatever")
Big example for visiting the bf on weekends (because that is where the new content is, with added time reset and maximised arousal)
Code:
SugarCube.State.active.__getUpperName__.engine.daily.pop("housebf"), SugarCube.State.active.__getUpperName__.engine.time.period = 0, SugarCube.State.active.__getUpperName__.engine.time.instant = 0, SugarCube.State.active.__getUpperName__.player.excitation = 100
When you enter this (ideally before going back to the city, otherwise visit the park and immediatly go back) you will be able to visit the bf again, and rush through the content in a single day (instead of the 7 or so it would require)