• 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.X+ No exp gain TFS 1.3

Beo

Three Magic
Joined
Aug 25, 2009
Messages
9,053
Solutions
1
Reaction score
844
When killing a monster, players gain no experience...

TFS 1.3 @Nekiro downgrade to 8.60

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

XML:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
    <config enabled="1" />
    <stage minlevel="1" maxlevel="50" multiplier="50" />
    <stage minlevel="51" maxlevel="70" multiplier="35" />
    <stage minlevel="71" maxlevel="100" multiplier="20" />
    <stage minlevel="101" maxlevel="120" multiplier="15" />
    <stage minlevel="121" maxlevel="140" multiplier="10" />
    <stage minlevel="141" maxlevel="160" multiplier="5" />
    <stage minlevel="161" maxlevel="200" multiplier="2" />
    <stage minlevel="201" multiplier="1" />
</stages>

Anywhere else I need to check?

Thanks
Post automatically merged:

Resolved - issues with config.lua, replaced with original, can be closed!
 
Last edited:
Solution
Sometimes when an account creator creates a player at a higher level than 1, it doesn't include all the experience necessary to be at that level, so lets say for example your account creator creates everyone at level 8

for me it was level 8
and when I log in, im level 8,
however when i kill, shows no experience gained,
it won't show experience gained, until I have reached the necessary experience to be at level 8, then it will start showing experience, this
could be your problem?

this can also happen with skills and magic level
Sorry, I did post it was fixed but couldn't mark it as solved.

It was setting stamina bonus to true in config.lua
This then caused an issue with checking premium status in player.lua which I removed...
Sometimes when an account creator creates a player at a higher level than 1, it doesn't include all the experience necessary to be at that level, so lets say for example your account creator creates everyone at level 8

for me it was level 8
and when I log in, im level 8,
however when i kill, shows no experience gained,
it won't show experience gained, until I have reached the necessary experience to be at level 8, then it will start showing experience, this
could be your problem?

this can also happen with skills and magic level
 
Sometimes when an account creator creates a player at a higher level than 1, it doesn't include all the experience necessary to be at that level, so lets say for example your account creator creates everyone at level 8

for me it was level 8
and when I log in, im level 8,
however when i kill, shows no experience gained,
it won't show experience gained, until I have reached the necessary experience to be at level 8, then it will start showing experience, this
could be your problem?

this can also happen with skills and magic level
Sorry, I did post it was fixed but couldn't mark it as solved.

It was setting stamina bonus to true in config.lua
This then caused an issue with checking premium status in player.lua which I removed since all players are premium.

Thanks for the response, though!
 
Solution
Back
Top