Penalty exp level source

05/05/2015 17:21 bluedrago#1
hello
where i can find penalty to get exp
when you player is 10 level more to mob.

i found drop item penalty but i need too exp and yang.
05/05/2015 17:39 Avulsed#2
In constants.h (for both, gold and exp):

Code:
#define MAX_EXP_DELTA_OF_LEV	31
#define PERCENT_LVDELTA(me, victim) aiPercentByDeltaLev[MINMAX(0, (victim + 15) - me, MAX_EXP_DELTA_OF_LEV - 1)]
#define PERCENT_LVDELTA_BOSS(me, victim) aiPercentByDeltaLevForBoss[MINMAX(0, (victim + 15) - me, MAX_EXP_DELTA_OF_LEV - 1)]
#define CALCULATE_VALUE_LVDELTA(me, victim, val) ((val * PERCENT_LVDELTA(me, victim)) / 100)