Just a few little question here!

Nameleszx

New member
Messages
108
Points
0
How to edit the reflect skill percent of palladin, I  want to make it 90% or 80% as possible but I don't know where to configure it. Please anyone, help me here.

 
@status.c

case SC_REFLECTSHIELD: val2=10+val1*3; // %Dmg reflected
default_ani_meow.gif


 
How can I edit them ?  I mean, how it was supposed to be ? The formula ?

 
Last edited by a moderator:
If the original formula is (10+3*SkillLV)% (source: the client), then:

val2 is the % of damage reflected;

val1 is the skill level of the skill;

So you can change the formula to your likings by using a fixed value plus the reflect % bonus with skill levels.

 
Back
Top