StreetkillnHD 0 Posted April 8, 2023 hello im trying to figure out how to edit the starting energy and water levels for new player spawns. Share this post Link to post Share on other sites
NoBeansForMe 14 Posted April 9, 2023 in init.c: override void StartingEquipSetup(PlayerBase player, bool clothesChosen) { // Default vanilla code here. // Set the energy and water level here to whatever you want. player.GetStatEnergy().Set(5000); player.GetStatWater().Set(5000); } 1 Share this post Link to post Share on other sites
StreetkillnHD 0 Posted April 9, 2023 4 hours ago, NoBeansForMe said: in init.c: override void StartingEquipSetup(PlayerBase player, bool clothesChosen) { // Default vanilla code here. // Set the energy and water level here to whatever you want. player.GetStatEnergy().Set(5000); player.GetStatWater().Set(5000); } will try this out Share this post Link to post Share on other sites