Christmas present!
2.30 Command Cheat List
Disclaimer: They work for me, it may break your game, list(s) not complete, blah blah. Most of these cheats were found by digging through game files. Particularly breakable cheats have 'BREAKABLE' in notes, be VERY careful, I will try to explain why it's breakable, all of them carry to the risk of breaking quests, missions, gallery, achievements.
Press 'SHIFT+O' (the letter 'oh', not number 'zero') to open the console.
Rollback results: If you don't like what the mining, crate, ship loot, sex bot cortex, or skipped pony race results are, you can use the rollback function (generally Mouse Wheel Up, possible to do mulitple rollbacks) to try again. You can also use to this to try to rollback incorrectly entered cheats. (For Pony Race, it's may not be possible to rollback an entire race as there may not be enough rollback history, which is why I suggest only rolling back skipped races.)
To unlock gallery directly:
Code:
REFERENCES
Possible Characters: 'tris' - T'Ris, 'nimhe' - Nimhe, 'khelara' - Khelara, 'vee' - V, 'seraphine' - Princess Seraphine, 'moira' - Dr. Moira, 'GAME.mc' - YOU, the Main Character!
Item List: see /game/200_init/205_init_items.rpy
Bot Part List: see /game/700_minigames/760_sexbot_core_data.rpy
Attributes (getAttr): MOD - Mood, STS - Stress, ENE - Energy (for V), TEC - Tech Skill, REP - Reputation, - APP - Appreciation, EXH - Exhibitionism, SLU - Sluttiness, SUB - Submission
Code:
GAME.addItemSmart("ITMCrateWeapons")
- Add items [i.e. Weapon Crate]
Code:
for x in range(100):
GAME.addItemSmart("ITMPetSupplement")
[need extra enter here^]
- Loop the command/cheat 100 times. [i.e. add 100 Pet Supplements]
Code:
GAME.lab.parts.append(GAME.sbPartsData["SBPAddOnImmo3"].clone({"pref": "elite"}))
- MAJOR BREAKABLE - Do not typo, this directly adds parts to your bot lab, and could break the botlab! Add bot parts [i.e. Immobilizer, Gen 3, Elite].
Code:
GAME.lab.parts.append(GAME.sbPartsData["SBPCortexPre"].clone({"pref": "elite"})); GAME.lab.parts.append(GAME.sbPartsData["SBPHead3"].clone({"pref": "elite"})); GAME.lab.parts.append(GAME.sbPartsData["SBPTorso3"].clone({"pref": "elite"})); GAME.lab.parts.append(GAME.sbPartsData["SBPArms3"].clone({"pref": "elite"})); GAME.lab.parts.append(GAME.sbPartsData["SBPLegs3"].clone({"pref": "elite"}))
- MAJOR BREAKABLE - See above. Add enough parts to build an Elite - Precursor Cortex/Gen 3 Head, Torso, Arms, Legs
- BREAKABLE - possible to set invalid hour, but can just change back to a valid hour or sleep it off. Change hour of the day [use 8 thru 22, hours outside these are considered invalid].
- BREAKABLE - Recommend avoiding until favour quests for character are completed. Add 100 favor points to T'Ris
Code:
hexCanvas.ownShip.ap+=1000
- BREAKABLE - don't go crazy, I've added up to 2007 AP total and it's fine, but obviously could overflow integer and crash game, if you need more, use up most of your AP first. Add 1000 AP to your own ship, only works in combat. All combat is beatable with inifinite AP
Code:
GAME.mc.tally["Eliminated Obliterators"] += 20
- BREAKABLE - can break quest/achievemet triggers, can set not in game Diary tallies, stick with '+=' to ensure you're adding to an existing tally. Add 20 to your "Eliminated Obliterators" count stat, useful for achievements.
- see list of completed character tasks for V for today.
Code:
vee.doneToday.remove('favour')
- BREAKABLE - repeating tasks meant for once per day. useful if you want to just grind through for gallery/achievements. remove the 'favour', allows some favours to be repeated on the same day. Also useful for 'pole' (poledance); 'uniform_inspected' (uniform inspection)
Code:
GAME.mc.setAttr('TEC',30)
- BREAKABLE - possible to exceed attribute's maximum, Recommend understanding safe increments (i.e. 5 for TEC, 1 for APP/EXH/SLU/SUB, etc.), then sleeping to ensure quests/gallery/achievements don't break. Set MC's Tech Skill to 30.