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

TFS 8.1 (Mystic Spirit 0.2.9)--->Experience Problem

Adrish

New Member
Joined
Jan 27, 2008
Messages
221
Reaction score
2
Location
Sweden
stages.xml:
Code:
<?xml version="1.0"?>
<stages>
    <stage minlevel="1" maxlevel="8" multiplier="15"></stage>
    <stage minlevel="8" maxlevel="20" multiplier="14"></stage>
    <stage minlevel="20" maxlevel="30" multiplier="13"></stage>
    <stage minlevel="30" maxlevel="50" multiplier="12"></stage>
    <stage minlevel="50" maxlevel="80" multiplier="11"></stage>
    <stage minlevel="80" maxlevel="110" multiplier="10"></stage>
    <stage minlevel="110" maxlevel="150" multiplier="9"></stage>
    <stage minlevel="150" maxlevel="999" multiplier="8"></stage>
</stages>


config.lua:
rateExp = stage
rateSkill = 25
rateLoot = 2
rateMagic = 12
rateSpawn = 1


HELP ME !!
 
Last edited by a moderator:
Add this <config enabled="0"/> above <stage minlvl...........>

and change rateExp = stage in config to some number.

Oh, and use code tags :confused:
 
Try it with this...maybe it's the problem ;)
Code:
<?xml version="1.0"?>
<stages>
<stage minlevel="1" maxlevel="8" multiplier="15"></stage>
<stage minlevel="9" maxlevel="20" multiplier="14"></stage>
<stage minlevel="21" maxlevel="30" multiplier="13"></stage>
<stage minlevel="31" maxlevel="50" multiplier="12"></stage>
<stage minlevel="51" maxlevel="80" multiplier="11"></stage>
<stage minlevel="81" maxlevel="110" multiplier="10"></stage>
<stage minlevel="111" maxlevel="150" multiplier="9"></stage>
<stage minlevel="151" maxlevel="999" multiplier="8"></stage>
</stages>
 
Code:
<?xml version="1.0"?>
<stages>
<config enabled="0"/>    
<stage minlevel="1" maxlevel="8" multiplier="15"></stage>
    <stage minlevel="9" maxlevel="20" multiplier="14"></stage>
    <stage minlevel="21" maxlevel="30" multiplier="13"></stage>
    <stage minlevel="31" maxlevel="50" multiplier="12"></stage>
    <stage minlevel="51" maxlevel="80" multiplier="11"></stage>
    <stage minlevel="81" maxlevel="110" multiplier="10"></stage>
    <stage minlevel="111" maxlevel="150" multiplier="9"></stage>
    <stage minlevel="151" maxlevel="999" multiplier="8"></stage>
</stages>

U messed up on the min level =p that should work
 
Why would it work if you have this:
<config enabled="0"/>

Change enabled to 1 and it should work.
 
Back
Top