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

TFS 1.2 ExpRate dont work

LastCry

New Member
Joined
Aug 1, 2017
Messages
22
Reaction score
2
Hello Together,

I have the problem that i can't change the EXP gain rate.. its all the time like RL tibia.


Config:
XML:
-- Rates
-- NOTE: rateExp is not used if you have enabled stages in data/XML/stages.xml
   
rateExp = 5
rateSkill = 3
rateLoot = 2
rateMagic = 3
rateSpawn = 1

Stages:
XML:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
   <config enabled="0" />
   <stage minlevel="1" maxlevel="8" multiplier="10" />
   <stage minlevel="9" maxlevel="20" multiplier="6" />
   <stage minlevel="21" maxlevel="50" multiplier="6" />
   <stage minlevel="51" maxlevel="100" multiplier="6" />
   <stage minlevel="101" multiplier="6" />
</stages>


Best regards LastCry
 
for example:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
   <config enabled="1" />
   <stage minlevel="1" multiplier="5" />
</stages>
 
Last edited:
okay i found the it... after 5 hours searching...

that was missing in the Player.xml:

HTML:
   -- Apply experience stage multiplier
   exp = exp * Game.getExperienceStage(self:getLevel())
 
Hello Together,

I have the problem that i can't change the EXP gain rate.. its all the time like RL tibia.


Config:
XML:
-- Rates
-- NOTE: rateExp is not used if you have enabled stages in data/XML/stages.xml
  
rateExp = 5
rateSkill = 3
rateLoot = 2
rateMagic = 3
rateSpawn = 1

Stages:
XML:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
   <config enabled="0" />
   <stage minlevel="1" maxlevel="8" multiplier="10" />
   <stage minlevel="9" maxlevel="20" multiplier="6" />
   <stage minlevel="21" maxlevel="50" multiplier="6" />
   <stage minlevel="51" maxlevel="100" multiplier="6" />
   <stage minlevel="101" multiplier="6" />
</stages>


Best regards LastCry
for example:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
   <config enabled="0" />
   <stage minlevel="1" multiplier="5" />
</stages>

-- NOTE: rateExp is not used if you have enabled stages in data/XML/stages.xml

Wait what, player.xml?? Did you try:
XML:
<config enabled="1"/>
 
Wait what, player.xml?? Did you try:
XML:
<config enabled="1"/>
yes i have tried this .. in every vaiation

now its working when i added this:

okay i found the it... after 5 hours searching...

that was missing in the Player.xml:

HTML:
   -- Apply experience stage multiplier
   exp = exp * Game.getExperienceStage(self:getLevel())
 
Back
Top