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

Lua Simple stage tutorial

simkal

New Member
Joined
Jan 21, 2010
Messages
361
Reaction score
3
Hi, im am going to show you how to fix stages.

First goto data/xml/stages.xml
There you can edit your stages.
stages.png


If stages.xml doesnt exist, here is the code:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<world id="0" multiplier="1">
		<stage minlevel="1" maxlevel="8" multiplier="7"/>
		<stage minlevel="9" maxlevel="20" multiplier="6"/>
		<stage minlevel="21" maxlevel="50" multiplier="5"/>
		<stage minlevel="51" maxlevel="100" multiplier="4"/>
		<stage minlevel="101" multiplier="3"/>
	</world>
</stages>

After that, got to config.lua

And just simple write "true" on rates.
true.png


And now you got stages on your server!

++Rep if i helped!
 
Back
Top