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

Exp stage?

ybris

New Member
Joined
Jan 5, 2008
Messages
3
Reaction score
0
Is it possible to add an exp stage to my server and if I can how do I do it?
 
I dont have that in my stages.xml i have like this
Code:
<?xml version="1.0"?>
<stages>
    <!--stage minlevel="1" maxlevel="50" multiplier="50"></stage>
    <stage minlevel="51" maxlevel="70" multiplier="30"></stage>
    <stage minlevel="71" maxlevel="500" multiplier="20"></stage-->
</stages>
 
Last edited by a moderator:
Aa, so change this all to:
Code:
<?xml version="1.0"?>
<stages>
    <stage minlevel="1" maxlevel="50" multiplier="50"></stage>
    <stage minlevel="51" maxlevel="70" multiplier="30"></stage>
    <stage minlevel="71" maxlevel="500" multiplier="20"></stage>
</stages>
 
what do I have to change in config.lua? I have set it to rateEXP = stage

here is my stages.xml

Code:
<?xml version="1.0"?>
<stages>
    <config enabled="1"/>  
  
    <stage minlevel="1" maxlevel="60" multiplier="100"></stage>
    <stage minlevel="61" maxlevel="80" multiplier="90"></stage>
    <stage minlevel="81" maxlevel="90" multiplier="60"></stage>
    <stage minlevel="91" maxlevel="100" multiplier="40"></stage>
    <stage minlevel="101" maxlevel="110" multiplier="30"></stage>
    <stage minlevel="111" maxlevel="120" multiplier="20"></stage>
    <stage minlevel="121" maxlevel="155" multiplier="10"></stage>
    <stage minlevel="156" maxlevel="160" multiplier="60"></stage>
    <stage minlevel="161" maxlevel="180" multiplier="10"></stage>
    <stage minlevel="181" maxlevel="195" multiplier="5"></stage>
    <stage minlevel="196" maxlevel="200" multiplier="80"></stage>
    <stage minlevel="201" maxlevel="210" multiplier="4"></stage>
    <stage minlevel="211" maxlevel="300" multiplier="3"></stage>
</stages>
 
Back
Top