• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Monster dont give exp after 451 level

Saint Spear

Veteran OT User
Joined
Jun 22, 2016
Messages
1,547
Solutions
18
Reaction score
379
Hello everyone, I have huge bug in my OT , Player cant get exp from killing any monster after he reach 451 level, I'm using TFS 1.2 Tibia 8.60, I dont receive any bugs or errors in console, I tested my OT through pc and seems working, after level 451 u can normal get exp just on Hosting cant. Here is my stages.xml :
Code:
<?xml version="1.0" encoding="UTF-8"?>
<stages>
    <config enabled="1" />
        <stage minlevel="1" maxlevel="100" multiplier="200"/>
        <stage minlevel="101" maxlevel="150" multiplier="120"/>
        <stage minlevel="151" maxlevel="200" multiplier="70"/>
        <stage minlevel="201" maxlevel="250" multiplier="40"/>
        <stage minlevel="251" maxlevel="280" multiplier="20"/>
        <stage minlevel="281" maxlevel="300" multiplier="16"/>
        <stage minlevel="301" maxlevel="350" multiplier="10"/>
        <stage minlevel="351" maxlevel="380" multiplier="8"/>
        <stage minlevel="381" maxlevel="450" multiplier="4"/>
        <stage minlevel="451" maxlevel="500" multiplier="3"/>
                <stage minlevel="501" maxlevel="1500" multiplier="2"/>
</stages>
 
Try adding a new step from 501 to 550 (for example) with the same multipliyer and see if it works.

If Im not mistaken the last step should look like this?

Code:
<stage minlevel="501" multiplier="2" />
 
Last edited:
Also is there any limit on stages ? Maybe it can only count total 10 stages and more cant? because one from 451 is 10.
 
Back
Top