• 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 Exp problem

sleepy

Banned User
Joined
Jul 5, 2007
Messages
90
Reaction score
0
Hello guys!

I got one more problem! with my exp.

I set at my config.lua stages true...

stages script:

<?xml version="1.0" encoding="UTF-8"?>
<stages>
<world id="0" multiplier="1">
<stage minlevel="1" maxlevel="8" multiplier="4"/>
<stage minlevel="9" maxlevel="20" multiplier="10"/>
<stage minlevel="21" maxlevel="50" multiplier="6"/>
<stage minlevel="51" maxlevel="100" multiplier="4"/>
</world>
</stages>

the world ID are right I know for sure.
but at lvl 1 I get 30 exp for an rat... an rat is 5 exp.
in my config my rate experience are 1.0

So where the hell he get that 30 exp (exp x6) from?

I hope anyone can help me with this problem. If this fixed my server can be online help me please..

Thanks!
 
<?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="5"/>
</world>
</stages>


Change the stages and look if it's right!
 
already did don't change anything, I dont even know where he get that x6 exp from? my stages are not even 6x.

and my expfrom monster in config are also not x6 and the monster file from the rat also have 5 exp.. so if I know why he gives exp x6 I know maybe what the problem is :S
 
experienceStages = true
rateExperience = 1.0
rateExperienceFromPlayers = 0
rateSkill = 5.0
rateMagic = 2.0
rateLoot = 1.0
rateSpawn = 1
 
Back
Top