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

Experience Stages

atyll

Member
Joined
Dec 30, 2008
Messages
380
Reaction score
16
Hello Guys

I have currently moved from Avesta 0.6.1 to 0.6.3 (7.6) and I have realised, that my experience stages doesn't work.
When I run the server, it says that stages.xml have been loaded, but they are not applied.

My stages.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<stages>

<stage minlevel="1" maxlevel="29" multiplier="120"></stage>
<stage minlevel="30" maxlevel="49" multiplier="100"></stage>
<stage minlevel="50" maxlevel="74" multiplier="80"></stage>
<stage minlevel="75" maxlevel="94" multiplier="60"></stage>
<stage minlevel="95" maxlevel="119" multiplier="40"></stage>
<stage minlevel="120" maxlevel="149" multiplier="25"></stage>
<stage minlevel="150" maxlevel="9999" multiplier="15"></stage>

</stages>

I tried adding <config enabled="1"/>, but yet still, doesnt work. Help please?
 
Code:
-<stages> -<world multiplier="1" id="0"> <stage multiplier="500" maxlevel="50" minlevel="1"/>
 <stage multiplier="450" maxlevel="100" minlevel="51"/> <stage multiplier="400" maxlevel="150" minlevel="101"/>
 <stage multiplier="350" maxlevel="200" minlevel="151"/> <stage multiplier="250" maxlevel="250" minlevel="201"/> 
<stage multiplier="200" maxlevel="300" minlevel="251"/> <stage multiplier="100" maxlevel="350" minlevel="301"/> 
<stage multiplier="40" maxlevel="400" minlevel="351"/> <stage multiplier="10" maxlevel="451" minlevel="401"/> 
<stage multiplier="4" maxlevel="501" minlevel="451"/> <stage multiplier="2" minlevel="501"/> 
</world> 
</stages>

This is the end of my exp stage, I think you need to have this in the end
Code:
<stage minlevel="150" maxlevel="9998" multiplier="15"></stage>
<stage multiplier="2" minlevel="9999"/> 
</world> 
</stages>
 
I believe stages aren't coded in the distro. If you would like I can walk you through how to put them in.
 
i might be talking nonsense, but try this

Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
<world multiplier="1" id="0">
<stage minlevel="1" maxlevel="29" multiplier="120"></stage>
<stage minlevel="30" maxlevel="49" multiplier="100"></stage>
<stage minlevel="50" maxlevel="74" multiplier="80"></stage>
<stage minlevel="75" maxlevel="94" multiplier="60"></stage>
<stage minlevel="95" maxlevel="119" multiplier="40"></stage>
<stage minlevel="120" maxlevel="149" multiplier="25"></stage>
<stage minlevel="150" maxlevel="9999" multiplier="15"></stage>

</world>
</stages>
 
Back
Top