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

EXP Stages just stoppd working

bncplix

www.MythiaRPG.com
Joined
Mar 30, 2008
Messages
41
Reaction score
0
Well i use TFS, I had exp stages working perfectly and today they just decided to stop working. They load without errors when the server starts but they do not work, the exp rate is as set in config.

Heres what my file is:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<config enabled="1"/>
	<stage minlevel="1" maxlevel="8" multiplier="8"/>
	<stage minlevel="9" maxlevel="50" multiplier="10"/>
	<stage minlevel="51" maxlevel="60" multiplier="9"/>
	<stage minlevel="61" maxlevel="70" multiplier="8"/>
<stage minlevel="71" maxlevel="80" multiplier="6"/>
<stage minlevel="81" maxlevel="90" multiplier="5"/>
<stage minlevel="91" maxlevel="145" multiplier="4"/>
<stage minlevel="146" multiplier="3"/>
</stages>

Also, whats config enabled? Having it 1 or 0 dosnt work them, though they worked the other day so i dont understand the problem :/
 
Test that:

<?xml version="1.0" encoding="UTF-8"?>
<stages>
<config enabled="0"/>
<stage minlevel="1" maxlevel="8" multiplier="8"/>
<stage minlevel="9" maxlevel="50" multiplier="10"/>
<stage minlevel="51" maxlevel="60" multiplier="9"/>
<stage minlevel="61" maxlevel="70" multiplier="8"/>
<stage minlevel="71" maxlevel="80" multiplier="6"/>
<stage minlevel="81" maxlevel="90" multiplier="5"/>
<stage minlevel="91" maxlevel="145" multiplier="4"/>
<stage minlevel="146" multiplier="3"/>
</stages>
 
Back
Top