Jump to content
  • 0
Tempo

50% edp on cross impact

Question

can someone help me again for enchant deadly poison? I want to make 100% enchant deadly poison for sonic blow and 50% for cross impact. Please help me thanks!

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

try add this~

if(sc->data[sC_EDP] && skill_num == GC_CROSSIMPACT )
ATK_ADDRATE(50);

find this src/map/battle.c

case CR_SHIELDBOOMERANG:

if(sc && sc->data[sC_SPIRIT] && sc->data[sC_SPIRIT]->val2 == SL_CRUSADER)

ATK_ADDRATE(100); break;

add below

case GC_CROSSIMPACT:
if(sc->data[sC_EDP] && skill_num == GC_CROSSIMPACT )
ATK_ADDRATE(50);
break;

hope it work ~

Edited by Emistry
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
Answer this question...

×   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.