For anyone struggling with console commands, here are a few:
1. Set the amount of money you have
GAME.money = X
2. Control the hour of the day
GAME.hour = X
3. Modify installed systems
subSys[SYSTEM_NAME][ROW][COLUMN] = X
Possible values for each variable:
SYSTEM_NAME: "cargo", "engines", "hyperdrive", "launcher", "mining", "shields", "uplink", "weapons"
ROW: 1, 2, 3
COLUMN: 1, 2, 3, 4
4. Manage crewmate stress/energy:
Code:
khelara.attr["STS"] = X
nimhe.attr["STS"] = X
vee.attr["ENE"] = X
tris.attr["STS"] = X
5. Give yourself items
GAME.mc.addItem(ITEM_CODE)
Item codes:
Candle: "ITMCandle"
6. Add items to cargo bay
GAME.ship.loadWare(ITEM_CODE)
Item codes:
AI core: "ITMAICore"
Basic crates: "ITMCrateBots"
Rare crates: "ITMCrateBotsRare"
Military crates: "ITMCrateBotsMil"
Precursor crates: "ITMCrateBotsPre"
Bio weapons: "ITMBioWeapons"
---------------------------
There are, of course, tons of item codes you might need, but I've not required any so far. Feel free to suggest more if you want me to add any to the list.