• 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 from killing lower level players then you 0.3.6 8.54

Benny

Member
Joined
Jul 19, 2008
Messages
560
Reaction score
6
So I am slowly making a noob war server, but I can happily get exp from higher level kills but when I kill lower level plays they dont give any exp for example if a lvl 11 kills a 10, the 11 games no exp
these are the current settings I have


minLevelThresholdForKilledPlayer = 0.9
maxLevelThresholdForKilledPlayer = 1.2

I have tried a number of combinations with these values but no dice, anyone got a clue?
 
lower minLevel~ to 0.5 or smth.

Players only get exp like this:
if level of killed player is higher than ownlevel*0.9 and level of killed is lower than ownlevel * 1.2
 
maybe the formula doesn't allow you to gain experience?
[cpp] /*
Formula
a = attackers level * 0.9
b = victims level
c = victims experience

result = (1 - (a / b)) * 0.05 * c
Not affected by special multipliers(!)
*/[/cpp]
 
Back
Top