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

Solved Stamina - Remove[!]

Restles

fallen human nature
Joined
Jan 30, 2014
Messages
68
Solutions
1
Reaction score
35
Location
Poland
Hi, I have a question how to remove the stamina completely from the engine. I looked in several files and watched the code I do not know if there is any transfer of a piece of code to the database.
Stamina spoils me very exp stage and I would like her to delete the source code.
 
You can disable the stamina system in your config.lua

TFS 1.0, config.lua
Code:
-- Stamina
staminaSystem = "no"
 
I have engine 0.3.6, in the config I have such a ruler responsible for stamina
Code:
    rateStaminaLoss = 1
    rateStaminaGain = 3
    rateStaminaThresholdGain = 12
    staminaRatingLimitTop = 41 * 60
    staminaRatingLimitBottom = 14 * 60
    rateStaminaAboveNormal = 1.5
    rateStaminaUnderNormal = 0.5
    staminaThresholdOnlyPremium = true
 
Code:
    rateStaminaLoss = 0
    rateStaminaGain = 3
    rateStaminaThresholdGain = 12
    staminaRatingLimitTop = 41 * 60
    staminaRatingLimitBottom = 14 * 60
    rateStaminaAboveNormal = 1.0
    rateStaminaUnderNormal = 1.0
    staminaThresholdOnlyPremium = true
 
Back
Top