- Apr 20, 2018
- 207
- 79
Nice guy, nice codes.If you're new to sugarcube just hit F12 select the console tab and then use autocomplete.
almost all sugarcube games have the same variable location.
SugarCube.State.active.variables
if you hit enter after that you will see all the variables the game uses. most are easy to understand. in the company you also have arrays like for serums. remember arrays start at 0 so the first position in an array is always 0. in the company this serum is a developer serum that i have never tried. if you wish to add serums you can just type
SugarCube.State.active.variables.serum[1].qty = 100 (replace 1 with 2 3 and 7 for all serums.)
the cheats i will recommend is:
SugarCube.State.active.variables.chem[0].qty = 99999; SugarCube.State.active.variables.chem[1].qty = 99999; SugarCube.State.active.variables.chem[2].qty = 99999; SugarCube.State.active.variables.chem[3].qty = 99999; SugarCube.State.active.variables.chem[4].qty = 99999; SugarCube.State.active.variables.chem[5].qty = 99999; SugarCube.State.active.variables.chem[6].qty = 99999; SugarCube.State.active.variables.chem[7].qty = 99999; SugarCube.State.active.variables.chem[8].qty = 99999
for all chems.
SugarCube.State.active.variables.EventCD = 0
lets you have more than one event per day.
SugarCube.State.variables.time.cTime = 0
sets time to morning. (0 is morning 6 is night)
SugarCube.State.variables.player.dom = 0
sets player dominance. if you are unsure of numbers use += and -= instead of just = to adjust. i.e SugarCube.State.variables.player.dom += 100
";" works as a line change so you dont have to do them one by one. for example:
SugarCube.State.active.variables.EventCD = 0;SugarCube.State.variables.time.cTime = 0
sorry for terrible formatting. hope this helps someone.