• 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

Rizzla

Donator / Photoshop
Joined
Sep 7, 2008
Messages
1,335
Reaction score
2
Location
Sweden -> Stockholm
How do I add full stamina to all players in my database?

and how do i make the stamina goes up faster?

Code:
rateStaminaLoss = 0
rateStaminaGain = 3
rateStaminaThresholdGain = 12
staminaRatingLimitTop = 41 * 60
staminaRatingLimitBottom = 14 * 60
rateStaminaAboveNormal = 1.5
rateStaminaUnderNormal = 0.5
staminaThresholdOnlyPremium = true
 
for making stamina full to all players in your data base ! go to your players table and run this in SQL

Code:
UPDATE `players` SET `stamina` = 151200000;
and for making stamina goes up fast edit this
Code:
rateStaminaGain = 3
Code:
rateStaminaAboveNormal = 1.5
edite ratestaminagain = Rates%
and ratestaminaabovenormal=%
i hope that i help you !
 
Last edited:
Back
Top