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

Why doesn't my EXP work?

Skylinx

Game Programmer
Joined
Nov 26, 2008
Messages
399
Reaction score
14
Location
TORONTO, CANADA
My exp doesnt work! No one can gain exp!
Does anyone know why?
Stages are disabled, it doesnt work, and if there enabled still doesnt work.
I put my exp at 100, it doesnt work.
I tried every monster and 5 different accounts.
Does anyone know why no one can gain exp?

PS : The AOL's on my server don't work either :(
Can someone tell me why?!
 
My exp doesnt work! No one can gain exp!
Does anyone know why?
Stages are disabled, it doesnt work, and if there enabled still doesnt work.
I put my exp at 100, it doesnt work.
I tried every monster and 5 different accounts.
Does anyone know why no one can gain exp?

PS : The AOL's on my server don't work either :(
Can someone tell me why?!

In config.lua there's a line like this

Code:
	experienceStages = "yes"

and in stages.xml fix this:

a example from a server:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
	<stage minlevel="1" maxlevel="39" multiplier="180"/>
	<stage minlevel="40" maxlevel="79" multiplier="100"/>
	<stage minlevel="80" maxlevel="119" multiplier="60"/>
	<stage minlevel="120" maxlevel="149" multiplier="30"/>
	<stage minlevel="150" maxlevel="199" multiplier="15"/>
	<stage minlevel="200" multiplier="10"/>
</stages>
 
PS : The AOL's on my server don't work either :(
Can someone tell me why?!

In items.xml, add the following (bolded) line to Amulet of Loss (ID 2173):
Code:
<item id="2173" name="amulet of loss">
[B]<attribute key="preventLoss" value="1"/>[/B]
<attribute key="weight" value="420"/>
<attribute key="slotType" value="necklace"/>
</item>
 
Back
Top