• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Stamina problem

Dumeko

New Member
Joined
Apr 7, 2012
Messages
55
Reaction score
0
when players have green stamina and logs out, stamina goes up correctly, but when their stamina goes to orange, stamina stops increases. what would cause this? would it be a source problem?

thanks for replies xD
 
you have this in your config.lua?
PHP:
	rateStaminaLoss = 1
	rateStaminaGain = 1
	rateStaminaThresholdGain = 5
	staminaRatingLimitTop = 40 * 60
	staminaRatingLimitBottom = 14 * 60
	rateStaminaAboveNormal = 1.5
	rateStaminaUnderNormal = 0.5
	staminaThresholdOnlyPremium = true
 
i have this in my lua



LUA:
rateStaminaLoss = 1
	rateStaminaGain = 4000 / 3
	rateStaminaThresholdGain = 4
	staminaRatingLimitTop = 41 * 60
	staminaRatingLimitBottom = 14 * 60
	rateStaminaAboveNormal = 1.5
	rateStaminaUnderNormal = 1.0
	staminaThresholdOnlyPremium = "yes"
 
Back
Top