• 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!

Lua Stamina

Kernel

Tibera!
Joined
Apr 30, 2009
Messages
57
Reaction score
0
Wich line from these should I change so players would not get less exp after decent time of hunting?

Code:
	rateStaminaLoss = 1
	rateStaminaGain = 1000 / 3
	rateStaminaThresholdGain = 4
	staminaRatingLimitTop = 41 * 60
	staminaRatingLimitBottom = 14 * 60
	rateStaminaAboveNormal = 1.5
	rateStaminaUnderNormal = 0.5
	staminaThresholdOnlyPremium = "yes"

Or to disable stamina? :o
 
Change this:
rateStaminaUnderNormal = 0.5
to:
rateStaminaUnderNormal = 1.0
Then when Stamina will be under 14h player will get normal exp(1x) ;p.

OR

Change this:
staminaRatingLimitBottom = 14 * 60

to this:
staminaRatingLimitBottom = 0 * 60

Then Player will get 0.5 exp when stamina is 0h(I think...)

RRRep plx.
 
Back
Top