• 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 Not Working! FAST HELP!

Zonet

Web Developer
Joined
Sep 1, 2008
Messages
4,393
Reaction score
52
Location
Tibia VS RL-life, guess whos back?
My exp stage is not working i dont know why heres my script.



PHP:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<stage minlevel="1" maxlevel="8" multiplier="150"/>
	<stage minlevel="9" maxlevel="60" multiplier="100"/>
	<stage minlevel="61" maxlevel="100" multiplier="60"/>
	<stage minlevel="101" maxlevel="130" multiplier="40"/>
	<stage minlevel="131" maxlevel="150" multiplier="20"/>
	<stage minlevel="151" maxlevel="170" multiplier="15"/>
	<stage minlevel="171" maxlevel="200" multiplier="10"/>
	<stage minlevel="200" multiplier="6"/>
</stages>

Heres my config.

PHP:
	-- Rates
	-- NOTE: experienceStages configuration is located in data/XML/stages.xml.
	rateExp = 60
	rateSkill = 55
	rateLoot = 3
	rateMagic = 13
	rateSpawn = 1
	extraPartyExpLimit = 20
	extraPartyExpPercent = 5
	experienceStages = "no"

My problem is when i choose yes in exp stages they dont get exp.. tell me what to do ?
 
PHP:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
    <stage minlevel="1" maxlevel="8" multiplier="150"/>
    <stage minlevel="9" maxlevel="60" multiplier="100"/>
    <stage minlevel="61" maxlevel="100" multiplier="60"/>
    <stage minlevel="101" maxlevel="130" multiplier="40"/>
    <stage minlevel="131" maxlevel="150" multiplier="20"/>
    <stage minlevel="151" maxlevel="170" multiplier="15"/>
    <stage minlevel="171" maxlevel="200" multiplier="10"/>
    <stage minlevel="201" multiplier="6"/>
</st

try using that maybe will work, you've writen 200lvl twice :D

and also try Morak's idea I think it will work ;]
 
Try to add:

<config enabled="1"/>

<?xml version="1.0" encoding="UTF-8"?>
<stages>
<config enabled="1"/>
<stage minlevel="1" maxlevel="8" multiplier="150"/>
<stage minlevel="9" maxlevel="60" multiplier="100"/>
<stage minlevel="61" maxlevel="100" multiplier="60"/>
<stage minlevel="101" maxlevel="130" multiplier="40"/>
<stage minlevel="131" maxlevel="150" multiplier="20"/>
<stage minlevel="151" maxlevel="170" multiplier="15"/>
<stage minlevel="171" maxlevel="200" multiplier="10"/>
<stage minlevel="200" multiplier="6"/>
</stages>
 
Try that:
PHP:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
<config enabled="1"/>
<stage minlevel="1" maxlevel="8" multiplier="150"/>
<stage minlevel="9" maxlevel="60" multiplier="100"/>
<stage minlevel="61" maxlevel="100" multiplier="60"/>
<stage minlevel="101" maxlevel="130" multiplier="40"/>
<stage minlevel="131" maxlevel="150" multiplier="20"/>
<stage minlevel="151" maxlevel="170" multiplier="15"/>
<stage minlevel="171" maxlevel="200" multiplier="10"/>
<stage minlevel="201" multiplier="6"/>
</stages>
 
experienceStages = "yes" o.0

PHP:
   -- Rates
    -- NOTE: experienceStages configuration is located in data/XML/stages.xml.
    rateExp = 60
    rateSkill = 55
    rateLoot = 3
    rateMagic = 13
    rateSpawn = 1
    extraPartyExpLimit = 20
    extraPartyExpPercent = 5
    experienceStages = "yes"
 
Back
Top