• 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 arent working

gbotti

New Member
Joined
May 2, 2011
Messages
6
Reaction score
2
@config.lua:

PHP:
	-- Rates
	-- NOTE: experienceStages configuration is located in data/XML/stages.xml.
	-- rateExperienceFromPlayers 0 to disable.
	experienceStages = yes
	rateExperience = 25
	rateExperienceFromPlayers = 0
	rateSkill = 50.0
	rateMagic = 40.0
	rateLoot = 2.5
	rateSpawn = 1


@stages.xml

PHP:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<world id="0">
	<config enabled="1"/>
		<stage minlevel="1" maxlevel="50" multiplier="50"/>
		<stage minlevel="51" maxlevel="100" multiplier="35"/>
		<stage minlevel="101" maxlevel="150" multiplier="20"/>
		<stage minlevel="151" maxlevel="200" multiplier="15"/>
		<stage minlevel="201" maxlevel="300" multiplier="10"/>
		<stage minlevel="301" multiplier="7"/>
	</world>
</stages>

it is counting as 25x multiplier for all lvls. the server seems to be completely ignoring the " experienceStages = yes"

any ideas on how can i fix it?
or any other info you need to know?
 
Back
Top