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

Windows Stages.xml struggle

Niioxce

Otland lurker
Joined
Jun 22, 2012
Messages
324
Reaction score
4
Location
Sweden
Hello, i've got a few questions i got 0.3.6 TFS Compiled on my computer and i just want to clear this out. What happends if i put the
Code:
    rateExperience = 0
Will it only listen to the stages.xml?
Here's the stages.xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
    <world id="0" multiplier="1">
        <stage minlevel="1" maxlevel="40000" multiplier="50"/>
        <stage minlevel="40001" maxlevel="80000" multiplier="40"/>
        <stage minlevel="80001" maxlevel="120000" multiplier="30"/>
        <stage minlevel="120001" maxlevel="160000" multiplier="20"/>
        <stage minlevel="160001" maxlevel="10000000" multiplier="10"/>
    </world>
</stages>
Like does it matter? Even if i set RateExperience = 100000000 Will it still give the exact same amout of exp?

Thanks
 
to make it 0 or any value
it doesn't matter if you will use stages
you need to make this in config.lua true
experienceStages = false <- change false to true

then the tfs will read stages rate and ignore rateExperience
 
Back
Top