Jump to content
bellacalleb

Reflete de Skills

Recommended Posts

Alguem Sabe me dizer se tem como eu tirar o Reflete do Choque do Carrinho e Desperado ? Não sei o motivo de ta refletindo o dano dessas Skills 
Obrigado !

Link to comment
Share on other sites

Battle.cpp

	if (flag & BF_SHORT) {//Bounces back part of the damage.
		if ( (skill_get_inf2(skill_id)&INF2_TRAP || !status_reflect) && sd && sd->bonus.short_weapon_damage_return ) {
			rdamage += damage * sd->bonus.short_weapon_damage_return / 100;
			rdamage = i64max(rdamage,1);


Change to

    if (flag & BF_SHORT) {//Bounces back part of the damage.
        if ( (skill_get_inf2(skill_id)&INF2_TRAP || !status_reflect) && sd && sd->bonus.short_weapon_damage_return && skill_id != WS_CARTTERMINATION && skill_id != GS_DESPERADO  ) {
            rdamage += damage * sd->bonus.short_weapon_damage_return / 100;


 

  • Love 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.