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

Solved Exp stages

nevix

Tunzodus.net
Joined
Mar 31, 2010
Messages
356
Reaction score
62
Location
Lithuanian
Stages not working:

I am using tfs 0.2.15 9.80-9.8

stages.xml

<?xml version="1.0"?>
<stages>
<stage minlevel="8" maxlevel="50" multiplier="200"></stage>
<stage minlevel="50" maxlevel="100" multiplier="50"></stage>
<stage minlevel="100" maxlevel="800" multiplier="20"></stage>
</stages>


but exp stages dont working please help
 
config.lua
you have
LUA:
experienceStages = false
why you need put in
LUA:
experienceStages = ture

and other option your have very bad config your stages.xml here you go your .xml fixed
LUA:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<config enabled="1"/>
	<stage minlevel="1" maxlevel="50" multiplier="200"/>
	<stage minlevel="51" maxlevel="100" multiplier="50"/>
	<stage minlevel="101" multiplier="20"/>
</stages>
 
Back
Top