bellacalleb Posted October 4, 2018 Share Posted October 4, 2018 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 ! Quote Link to comment Share on other sites More sharing options...
Wickedknight2 Posted October 4, 2018 Share Posted October 4, 2018 Qual versão do rAthena? Quote Link to comment Share on other sites More sharing options...
bellacalleb Posted October 4, 2018 Author Share Posted October 4, 2018 1 hour ago, Wickedknight2 said: Qual versão do rAthena? 2017 maninho Quote Link to comment Share on other sites More sharing options...
Bringer Posted October 4, 2018 Share Posted October 4, 2018 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; 1 Quote Link to comment Share on other sites More sharing options...