• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

How to edit the exp in your server

owner wille

New Member
Joined
Nov 30, 2014
Messages
12
Reaction score
0
I want to make it like this
8-80= 500x
80-150= 250x
150-200= 100x
201-250= 50x
251-300= 25x
301-400= 12.5x
401-500= 8x
501-750= 5x
751-800= 3x
801-999= 2x
1000+= 1x
 
Which tfs are you using? Since in tfs 1.x you are enable stages through the xml/stages.xml
 
I think like this
in config
Code:
experienceStages = true
    rateExperience = 500
    rateExperienceFromPlayers = 350
    rateSkill = 25
    rateMagic = 15
    rateLoot = 3
and in stages.xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
        <world id="0" multiplier="500">
            <stage minlevel="8" maxlevel="80" multiplier="500"/>
            <stage minlevel="81" maxlevel="150" multiplier="250"/>
            <stage minlevel="151" maxlevel="200" multiplier="100"/>
            <stage minlevel="201" maxlevel="250" multiplier="50"/>
            <stage minlevel="251" maxlevel="300" multiplier="25"/>
            <stage minlevel="301" maxlevel="400" multiplier="12.5"/>
            <stage minlevel="401" maxlevel="500" multiplier="8"/>
            <stage minlevel="501" maxlevel="750" multiplier="5"/>
            <stage minlevel="751" maxlevel="800" multiplier="3"/>
            <stage minlevel="801" maxlevel="999" multiplier="2"/>
            <stage minlevel="1000" multiplier="1"/>
        </world>
</stages>

(please correct me if iam wrong)
 
The multiplier is wrong, now you have configured 500 x stage exp. Edit it back to 1, you just need add true on config and
rateExperience in config.lua gets automatic disabled.
Code:
<world id="0" multiplier="500">
 
If you put true on the experienceStages in config.lua then it does not matter what number you put there. Since it will follow the stage.
 
Back
Top