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

2.1 mystic spirit exp stages REP++

Not working check it out


-- Rates
rateExp = 1
rateSkill = 25
rateLoot = 2
rateMagic = 10
rateSpawn = 1

<?xml version="1.0" encoding="UTF-8"?>
<stages>
<config enabled="1"/>
<stage minlevel="1" maxlevel="50" multiplier="53"/>
<stage minlevel="50" maxlevel="60" multiplier="45"/>
<stage minlevel="60" maxlevel="80" multiplier="35"/>
<stage minlevel="80" maxlevel="121" multiplier="24"/>
<stage minlevel="121" maxlevel="140" multiplier="9"/>
<stage minlevel="140" max level ="160" multiplier="5"/>
<stage minlevel="160" max level = "170" multiplier ="3"/>
</stages>
 
Change:
Code:
rateExp = 1
To:
Code:
rateExp = stages

And stages.xml should look like this:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<config enabled="1"/>
	<stage minlevel="1" maxlevel="50" multiplier="53"/>
	<stage minlevel="51" maxlevel="60" multiplier="45"/>
	<stage minlevel="61" maxlevel="80" multiplier="35"/>
	<stage minlevel="81" maxlevel="121" multiplier="24"/>
	<stage minlevel="122" maxlevel="140" multiplier="9"/>
	<stage minlevel="141" maxlevel="160" multiplier="5"/>
	<stage minlevel="161" multiplier="3"/>
</stages>
//Notice that you added 50 two times, 60 two times, 80 two times etc.
//and that you didn't end it without max level. As from 171 on they won't receive experience.
//So replace your current one with this one.
 
Back
Top