ty for the update! you guys rock!
Are you sure about the calculation for the paladin exorcism damage? (20k crit in t9 without glyphe/t8 bonus)
For hunter's attack stats are you sure you use the ranged attack stats? Because those stats are quite higher in the wowhead profile linked.
The paladin module could certainly use some review. Check out sc_paladin.cpp in the "engine" dir.
For exorcism, It seems that you use 2x the attack power coeff and not the spell power coeff.
direct_power_mod = 1.0;
base_attack_power_multiplier = 0.15; base_attack_power_multiplier = 0.15;
should be :
base_spell_power_multiplier = 0.15; base_attack_power_multiplier = 0.15;
For hunter well I don't play hunter so I will let Hunters check
ty for the update! you guys rock!
Are you sure about the calculation for the paladin exorcism damage? (20k crit in t9 without glyphe/t8 bonus)
For hunter's attack stats are you sure you use the ranged attack stats? Because those stats are quite higher in the wowhead profile linked.
The paladin module could certainly use some review. Check out sc_paladin.cpp in the "engine" dir.
For exorcism, It seems that you use 2x the attack power coeff and not the spell power coeff.
direct_power_mod = 1.0;
should be :
direct_power_mod = 1.0;
For hunter well I don't play hunter so I will let Hunters check