how do you use that to cheat money?, cheat engine? if so, how?
You just need to overwrite the files in your game folder. The cheats are just hard changes to the game code using dnspy a disassembler. The file before has the change to the update money method so when you buy or sell something it changes your money to a fixed value. For quality of life i also added a new file with the energy cost of breeding set to 0 and the money change (the 0f multiplication in the other method.)
Though i am not sure how useful this cheats are as there seems to also exist debug menu, but well at least this ones are just drag and drop.
public void UpdatePlayerMoney(int newValue)
{
this.money = 10000000;
this.variableManager.SetVariableValue("playerMoney", this.money.ToString());
}
public int TotalEnergyCost(Monster LeftMonster, Monster RightMonster)
{
float value = this.Reducement(LeftMonster);
float value2 = this.Reducement(RightMonster);
float num = Mathf.Clamp(value, 0.49f, 2f);
float num2 = Mathf.Clamp(value2, 0.49f, 2f);
return (int)(0f * num * num2 * 420f);
}