You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BabyMatureSpeedMultiplier=0.0 <<-- to hold dinos at a specific maturation for long durations
TamedDinoCharacterFoodDrainMultiplier=5.0
BabyFoodConsumptionSpeedMultiplier=3.0
In local tests:
A 99.999% daeodon consumed 160 food in 458 seconds. A rate of 0.349 f/s.
A 0% daeodon consumed 1000 food in ~23 seconds. A rate of ~43 f/s.
This would indicate that TamedDinoCharacterFoodDrainMultiplier and DinoCharacterFoodDrainMultiplier are used for min and max, and BabyFoodConsumptionSpeedMultiplier is only used in max:
5 * 7 * 0.01 = 0.35
3 * 5 * 7 * 40 * 0.01 = 42
I think the correct formula for minRate and maxRate should be:
var dinoMult = DinoCharacterFoodDrainMultiplier;
var tamedMult = TamedDinoCharacterFoodDrainMultiplier;
var babyMult= BabyFoodConsumptionSpeedMultiplier;
var minRate = species.taming.foodConsumptionBase * dinoMult * tamedMult;
var maxRate = species.taming.foodConsumptionBase * dinoMult * tamedMult * babyMult * species.taming.babyFoodConsumptionMult;
I'm pretty sure Crumplecorn's calculations for
minRate
andmaxRate
are wrong.ARKStatsExtractor/ARKBreedingStats/uiControls/Trough.cs
Lines 41 to 44 in 26619f6
Daeodon has the taming stats:
With Game.ini:
and GameUserSettings.ini
The current calculation for
minFoodRate
would be:In local tests:
A 99.999% daeodon consumed 160 food in 458 seconds. A rate of 0.349 f/s.
A 0% daeodon consumed 1000 food in ~23 seconds. A rate of ~43 f/s.
This would indicate that
TamedDinoCharacterFoodDrainMultiplier
andDinoCharacterFoodDrainMultiplier
are used for min and max, andBabyFoodConsumptionSpeedMultiplier
is only used in max:I think the correct formula for
minRate
andmaxRate
should be:A simple reduction could be:
for the 0%
for 99.999%
The text was updated successfully, but these errors were encountered: