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

Server with level limit

coalim1991

New Member
Joined
Mar 23, 2011
Messages
7
Reaction score
0
I have seen some servers where you can reach levels in the 100,00's and i want my server to do that since it is a high exp server but it only goes to lvl 3,637. and also i want it to be fast attack can someone please tell me how to fix this problem? Thank you for your time! REP ++
 
you can i think do exp stages.. and at the end of the exp stage you put it to 0

Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<world id="0" multiplier="1">
		<stage minlevel="1" maxlevel="8" multiplier="2000"/>
		<stage minlevel="9" maxlevel="20" multiplier="500"/>
		<stage minlevel="21" maxlevel="50" multiplier="250"/>
		<stage minlevel="51" maxlevel="100" multiplier="100"/>
		<stage minlevel="101" maxlevel="200" multiplier="50"/>
		<stage minlevel="201" maxlevel="589" multiplier="10"/>
		<stage minlevel="590" multiplier="0"/>
	</world>
</stages>
 
Back
Top