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

Premium have more experience?

picachu

Member
Joined
Dec 2, 2007
Messages
970
Reaction score
11
hello dear otlanders.
i need one script to do this:

players will have more exp than free players
someone have this script please?
thanks!

i'm using TFS 0.3.6!!!
 
LUA:
	-- Stamina
	-- NOTE: Stamina is stored in miliseconds, so seconds are multiplied by 1000.
	-- rateStaminaHits multiplies every hit done a creature, which are later
	-- multiplied by player attack speed.
	-- rateStaminaGain is divider of every logged out second, eg:
	-- 60000  3 20000 milliseconds, what gives 20 stamina seconds for 1 minute being logged off.
	-- rateStaminaThresholdGain is divider for the premium stamina.
	-- staminaRatingLimit* is in minutes.
	rateStaminaLoss = 1
	rateStaminaGain = 3
	rateStaminaThresholdGain = 12
	staminaRatingLimitTop = 41 * 60
	staminaRatingLimitBottom = 14 * 60
	rateStaminaAboveNormal = 1.5
	rateStaminaUnderNormal = 0.5
	staminaThresholdOnlyPremium = true

i don't understend nothing of this.
where can I change the bonus exp of premium players? :(
ty
 
To extend duration of happy hour:
Code:
	staminaRatingLimitTop = 14 * 60
To increase rate over normal expgain:
Code:
	rateStaminaAboveNormal = 2.0
 
Back
Top