• 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 Problem with experience gained

fredde3436

Member
Joined
Jul 6, 2009
Messages
226
Reaction score
7
Hi, was thinking of starting up a OT for friends and probably for the Community later on.

I got problem with EXP gain, whatever i do the exp gain is 30x. I made a monster wich gives 1 xp on kill for reference.

When this monster is killed, i gain 30 exp. wich i did not type anywhere :O
When i reach level 66 the exp gain is 18.

config.lua
Code:
experienceStages = true
rateExperience = 1.0

stages.xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
<world id="0" multiplier="1">
<stage minlevel="1" maxlevel="65" multiplier="20"/>
<stage minlevel="66" multiplier="12"/>
</world>
</stages>

monster.xml
Code:
<monster name="Test" nameDescription="a test thingy" race="blood" experience="1" speed="220" manacost="600">
 
First two hours of stamina gives 50 percent extra experience (premium bonus)
Code:
rateStaminaAboveNormal = 1.5
 
Last edited:
Back
Top