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

Exp rate doesn't effect in-game

bajsbajs

New Member
Joined
Apr 19, 2009
Messages
6
Solutions
1
Reaction score
4
Location
Sweden
In short: When I change the exp rate in Config.Lua and Stages.xml (I'm using stages, followed a guide just to get it to work) it doesn't have any effect in-game.

I have restarted the server after saving the new config.lua and stages.xml file.

I have added the "experienceStages = yes" over the rateExp column.

I have tried using "experienceStages = "yes"".

I have tried using "experienceStages = true".

Below this I just copy/paste the exact code so you can see what I have:

<?xml version="1.0" encoding="UTF-8"?>
<stages>
<world id="0" multiplier="1">
<stage minlevel="1" maxlevel="50" multiplier="500"/>
<stage minlevel="51" maxlevel="100" multiplier="450"/>
<stage minlevel="101" maxlevel="150" multiplier="350"/>
<stage minlevel="151" maxlevel="200" multiplier="250"/>
<stage minlevel="201" maxlevel="250" multiplier="200"/>
<stage minlevel="251" maxlevel="300" multiplier="150"/>
<stage minlevel="301" maxlevel="400" multiplier="100"/>
<stage minlevel="401" multiplier="50"/>
</world>
</stages>

----------------------------------------------------------------------------------------------------

experienceStages = yes
rateExp = 500.0
rateSkill = 45.0
rateLoot = 3.0
rateMagic = 25.0
rateSpawn = 2






What have I done wrong?
 
Solution
Hello everyone, thank you for trying to help me!

I found the solution for my problem, and it is:

In config.lua, there is a tab with "Stamina".

Turn the "staminaSystem = true" to "staminaSysten = false".

Thanks again for the support.
@bajsbajs default TFS 1.2 no have "experienceStages = yes"

Values will be like true or false.

Example of stages in tfs 1.2:
Lua:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
    <config enabled="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" />
</stages>


If is TFS 1.2, the problem is in /events/scripts/player.lua (onGainExperience).
And.. I guess the version of the server is 0.3.7 - 0.4 ...
 
Last edited:
Hello everyone, thank you for trying to help me!

I found the solution for my problem, and it is:

In config.lua, there is a tab with "Stamina".

Turn the "staminaSystem = true" to "staminaSysten = false".

Thanks again for the support.
 
Solution
Hello everyone, thank you for trying to help me!

I found the solution for my problem, and it is:

In config.lua, there is a tab with "Stamina".

Turn the "staminaSystem = true" to "staminaSysten = false".

Thanks again for the support.
This is not the solution to run stage
lol :D
 
Back
Top