Some useful commands -
Infinte Health & Stamina
values.player.set(Attribute:HealthRechargeRate) = 100000
values.player.set(Attribute:Stamina) = 100000
values.player.set(Attribute:Health) = 100000
Add Items to Inventory -
Note - all items can be re-added back into the inventory once given to target. Some items do not stack. Keep this in mind, don't go spamming the same command 50 times.
Beer (get partygoers drunk or get cozy to Frank) =
nattylite.inventory = true
Chocolates (useful for boosting likeability with player) =
valentineschocolates.inventory = true
Thermos for Rachel -
thermos.inventory = true
Unstuck Command if a NPC gets stuck in the air etc.
unstuck.derek
(swap out the name, depending on who it is)
Run Commands -
This is userful for finding out what you can fuck about with. For example - if we wish to see what list there is for Derek - we would type -
derek.run.list
Which will then give us a list of all functions available to run. We will see a bunch of available, for example - EnableGiantHands is one of them. So to run it - we'd type the following -
derek.run(EnableGiantHands) = 1
Or, for females - we could use -
brittney.run(IncreaseBreastSize) = 2
Filtering and finding values -
you can find values for specific NPC's or player by using the command -
values.help
If it's too much, you can also filter it using the following - remove NAME and put in the name of the NPC or PLAYER you wish to see -
values.NAME.list.filter(SEARCHTERM)
An example would be -
values.amy.list.filter(health)
This will then give the result in the console with the following
Attribute:Health: 100
To then change this, you can use the same command from the top of this command, but instead of PLAYER we ue AMY. So it would be -
values.amy.set(Attribute:Health) = 10000
When I see what other useful there are - I'll share here.