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

Compiling [how do i change max level]?

Niioxce

Otland lurker
Joined
Jun 22, 2012
Messages
324
Reaction score
4
Location
Sweden
Hello, i need to compile to change max level? and can someone show me how? please D: im so in need of help.. D:
 
Just put 0x exp rate at a certain level on exp stages!

Lets say you want to have 150 as maximum level.

stages.xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<world id="0" multiplier="1">
		<stage minlevel="1" maxlevel="149" multiplier="3"/>
		<stage minlevel="150" multiplier="0"/>
	</world>
</stages>
 
Last edited:
Just put 0x exp rate at a certain level on exp stages!

Lets say you want to have 150 as maximum level.

stages.xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<world id="0" multiplier="1">
		<stage minlevel="1" maxlevel="149" multiplier="3"/>
		<stage minlevel="150" multiplier="0"/>
	</world>
</stages>
it didnt work.. and btw im using 8.6
 
Yeah exactly, in Config.lua you should search for
Code:
experienceStages

Change that to
Code:
experienceStages = true


or
Code:
experienceStages = yes
hey, they get levels by killing eachother but not from monsters? they get exp but not levels D:
 
Last edited:
Are you using a pvp-enforced server?
NEVER MIND! i know how to use stages.. i just changed
Code:
multiplier="what i want :DD"/>
And yes im using a pvpe server ^^

- - - Updated - - -

but does this work
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<world id="0" multiplier="1">
		<stage minlevel="100" maxlevel="40000" multiplier="50"/>
		<stage minlevel="100" multiplier="0"/>
	</world>
	<world id="0" multiplier="1">
		<stage minlevel="40001" maxlevel="80000" multiplier="40"/>
		<stage minlevel="40001" multiplier="0"/>
	</world>
	<world id="0" multiplier="1">
		<stage minlevel="80001" maxlevel="120000" multiplier="30"/>
		<stage minlevel="80001" multiplier="0"/>
	</world>
	<world id="0" multiplier="1">
		<stage minlevel="120001" maxlevel="160000" multiplier="20"/>
		<stage minlevel="120001" multiplier="0"/>
	</world>
	<world id="0" multiplier="1">
		<stage minlevel="160001" maxlevel="10000000" multiplier="10"/>
		<stage minlevel="160001" multiplier="0"/>
	</world>
</stages>
 
Replace it with this Code:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<world id="0" multiplier="1">
		<stage minlevel="100" maxlevel="40000" multiplier="50"/>
		<stage minlevel="40001" maxlevel="80000" multiplier="40"/>
		<stage minlevel="80001" maxlevel="120000" multiplier="30"/>
		<stage minlevel="120001" maxlevel="160000" multiplier="20"/>
		<stage minlevel="160001" maxlevel="9999999" multiplier="10"/>
                <stage minlevel="10000000" multiplier="0"/>
	</world>
</stages>
 
Replace it with this Code:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<world id="0" multiplier="1">
		<stage minlevel="100" maxlevel="40000" multiplier="50"/>
		<stage minlevel="40001" maxlevel="80000" multiplier="40"/>
		<stage minlevel="80001" maxlevel="120000" multiplier="30"/>
		<stage minlevel="120001" maxlevel="160000" multiplier="20"/>
		<stage minlevel="160001" maxlevel="9999999" multiplier="10"/>
                <stage minlevel="10000000" multiplier="0"/>
	</world>
</stages>
DONE! :D, now they can level higher than 717k?
 
No. Just use lower exp rate so your players dont get that high because nobody actually cares or it might work to change the experience formula so it requires less experience each level.
I still do not understand why experience would limit the player level.
 
Back
Top