Bringer Posted October 8, 2016 Posted October 8, 2016 (edited) Hello Rathena i'm using x4 Lord of Death Card Then Spam Pressure on Player COMA EFFECT active even using Skill? // Coma if (sd && sd->special_state.bonus_coma && (!md || !mob_is_gvg(md) || !mob_is_battleground(md))) { rate = 0; //! TODO: Filter the skills that shouldn't inflict coma bonus, to avoid some non-damage skills inflict coma. [Cydh] if (!skill_id || !(skill_get_nk(skill_id)&NK_NO_DAMAGE)) { rate += sd->coma_class[tstatus->class_] + sd->coma_class[CLASS_ALL]; rate += sd->coma_race[tstatus->race] + sd->coma_race[RC_ALL]; } if (attack_type&BF_WEAPON) { rate += sd->weapon_coma_ele[tstatus->def_ele] + sd->weapon_coma_ele[ELE_ALL]; rate += sd->weapon_coma_race[tstatus->race] + sd->weapon_coma_race[RC_ALL]; rate += sd->weapon_coma_class[tstatus->class_] + sd->weapon_coma_class[CLASS_ALL]; } if (rate > 0) status_change_start(src,bl, SC_COMA, rate, 0, 0, src->id, 0, 0, SCSTART_NONE); } how to change only Normal Attack or Melee Edited October 8, 2016 by Bringer Quote
Question
Bringer
Hello Rathena i'm using x4 Lord of Death Card Then Spam Pressure on Player COMA EFFECT active even using Skill?
how to change only Normal Attack or Melee
Edited by Bringer0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.