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

pvp enforced

Adel

New Member
Joined
Apr 16, 2011
Messages
39
Reaction score
3
It works but when i kill with the high lvl (178) kill (162) i get exp,i want that if someone low lvl not so much like someone lvl 220 and someone lvl 160, i want lvl 160 get exp on 220 but lower than that he don't get so much exp.
but now it just works when i kill with higher lvl lower lvl idk why.i want it to be the both if higher kills lower lvls get exp and if lower kills higher also get exp
 
It works but when i kill with the high lvl (178) kill (162) i get exp,i want that if someone low lvl not so much like someone lvl 220 and someone lvl 160, i want lvl 160 get exp on 220 but lower than that he don't get so much exp.
but now it just works when i kill with higher lvl lower lvl idk why.i want it to be the both if higher kills lower lvls get exp and if lower kills higher also get exp

Have you changed the thresholds in your config.lua ?
 
i will try .
Code:
-- Experience from players
    -- NOTE: min~Threshold* set to 0 will disable the minimum threshold:
    -- player will gain experience from every lower leveled player.
    -- max~Threshold* set to 0 will disable the maximum threshold:
    -- player will gain experience from every higher leveled player.
    minLevelThresholdForKilledPlayer = 0.8
    maxLevelThresholdForKilledPlayer = 1.2

Code:
-- Rates
    -- NOTE: experienceStages configuration is located in data/XML/stages.xml.
    -- rateExperienceFromPlayers 0 to disable.
    experienceStages = true
    rateExperienceFromPlayers = 0
    rateSkill = 10.0
    rateMagic = 7.0
    rateLoot = 1
    rateSpawn = 1

try changing it to:
Code:
    minLevelThresholdForKilledPlayer = 0.4
    maxLevelThresholdForKilledPlayer = 1.6

and

Code:
rateExperienceFromPlayers = 5
 
Code:
-- Experience from players
    -- NOTE: min~Threshold* set to 0 will disable the minimum threshold:
    -- player will gain experience from every lower leveled player.
    -- max~Threshold* set to 0 will disable the maximum threshold:
    -- player will gain experience from every higher leveled player.
    minLevelThresholdForKilledPlayer = 0.8
    maxLevelThresholdForKilledPlayer = 1.2

Code:
-- Rates
    -- NOTE: experienceStages configuration is located in data/XML/stages.xml.
    -- rateExperienceFromPlayers 0 to disable.
    experienceStages = true
    rateExperienceFromPlayers = 0
    rateSkill = 10.0
    rateMagic = 7.0
    rateLoot = 1
    rateSpawn = 1

try changing it to:
Code:
    minLevelThresholdForKilledPlayer = 0.4
    maxLevelThresholdForKilledPlayer = 1.6

and

Code:
rateExperienceFromPlayers = 5
any way it works.Thank u
 
Back
Top