• 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 (help)

lordbala

New Member
Joined
Dec 28, 2008
Messages
9
Reaction score
0
please, who can show me any tutorial, making Exp Stage i dont know how i can fix it for my server 8.70 real tibia.

help please
 
First, enable it in config.lua
Code:
experienceStages = true

Then, edit the data/xml/stages.xml

Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<world id="0" multiplier="1">
		<stage minlevel="1" maxlevel="100" multiplier="10"/>
                <stage minlevel="101" maxlevel="200" multiplier="5"/>
		<stage minlevel="201" multiplier="3"/>
	</world>
</stages>
It means:
From level 1 to 100 it is 10x;
From level 101 to 200 it its 5x;
From level 201 its 3x.

How to:
Code:
<stage minlevel="The start level of THIS exp stage" maxlevel="The end level of THIS exp stage" multiplier="The multiplier of THIS exp stage"/>

And the last stage should be:
Code:
<stage minlevel="The start level of THIS exp stage" multiplier="The multiplier of THIS exp stage"/>
 
Back
Top