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

how to make xp stage ?

Alright well first of all go to your config file.
Open it and change
experienceStages = false
To
experienceStages = true

Then go to the folder XML it should be in "data\XML" Open it and then open the file that says "stages.xml"

There you can change the stages
here is an example.
PHP:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<world id="0" multiplier="1">
		<stage minlevel="1" maxlevel="50" multiplier="100"/>
		<stage minlevel="51" maxlevel="70" multiplier="65"/>
		<stage minlevel="71" multiplier="4"/>
	</world>
</stages>
This means from level 1-50 the exp rate is x100
Then from 51-70 the exp rate is x65
Then from lvl 71+ the exp rate is x4
 
what does the World ID mean and multiplier on that one?
Me for example, I have an pvp enforced map, and I want from certain lvls get more or less exp from players..
 
Back
Top