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

TFS 1.5 exp stage, how to off default rateExp?

vexler222

Active Member
Joined
Apr 22, 2012
Messages
714
Solutions
15
Reaction score
46
Hi, im add to config.lua stages

Code:
experienceStages = {
    { minlevel = 1, maxlevel = 100, multiplier = 1000 },
    { minlevel = 101, maxlevel = 200, multiplier = 750 },
    { minlevel = 201, maxlevel = 300, multiplier = 500 },
    { minlevel = 301, maxlevel = 400, multiplier = 250 },
    { minlevel = 401, maxlevel = 500, multiplier = 125 },
    { minlevel = 501, maxlevel = 600, multiplier = 65 },
    { minlevel = 601, maxlevel = 700, multiplier = 30 },
    { minlevel = 701, maxlevel = 800, multiplier = 12 },
    { minlevel = 801, maxlevel = 900, multiplier = 5 },
    { minlevel = 901, maxlevel = 1000, multiplier = 3.5 },
    { minlevel = 1001, maxlevel = 1200, multiplier = 1.25 },
    { minlevel = 1201, maxlevel = 1500, multiplier = 1 },
    { minlevel = 1501, multiplier = 0.5 }
}

But server still set rateExp value :/ How turn off default rateExp?
Post automatically merged:

Okey i don't know where is problem, but if i truned off stamina system, experienceStages working, but i want stamina system, so what to do?
It tfs 1.5 for 8.6 client
Maybe @Nekiro know what to do?
 
Last edited:
Okey i don't know where is problem, but if i truned off stamina system, experienceStages working, but i want stamina system, so what to do?
It tfs 1.5 for 8.6 client
Maybe @Nekiro know what to do?
 
You have to put this in stages XML. For me it's working without problem :p
XML:
    <config enabled="0" />
 
Back
Top