• 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.4.2 Exp stage Issues

Mr Noxi

Noxus Otserver
Joined
May 13, 2010
Messages
272
Solutions
3
Reaction score
94
Location
Sweden
Yo!

So i'v hit a snag i think,

So i have set my stages to below.

Tried with a rat with 10 exp in rat.lua but character gains 3000 exp insted of 10*200 = 2000? Tried with diffrent multipliers and diffrent mobs, killing a rotworm with 200 exp gives character 60 000 (60k) exp insted of 40 000 (40k). I have no exp multiplier item/script or anything similar.

Any clues i can chase down?

Lua:
experienceStages = {
    { minlevel = 1, maxlevel = 100, multiplier = 200 },
    { minlevel = 101, maxlevel = 200, multiplier = 180 },
    { minlevel = 201, maxlevel = 400, multiplier = 170 },
    { minlevel = 401, maxlevel = 600, multiplier = 160 },
    { minlevel = 601, maxlevel = 700, multiplier = 150 },
    { minlevel = 701, maxlevel = 800, multiplier = 140 },
    { minlevel = 801, maxlevel = 900, multiplier = 130 },
    { minlevel = 901, maxlevel = 1000, multiplier = 120 },
    { minlevel = 1001, multiplier = 50 }
}
-- Rates
-- NOTE: rateExp is not used if you have enabled stages above
rateExp = 10
 
Back
Top