Jump to content
  • 0

50% edp on cross impact


Tempo

Question


  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  26
  • Reputation:   0
  • Joined:  11/19/11
  • Last Seen:  

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

  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

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

  • 0

  • Group:  Members
  • Topic Count:  12
  • Topics Per Day:  0.00
  • Content Count:  626
  • Reputation:   188
  • Joined:  11/19/11
  • Last Seen:  

How about explaining where to add? o.o

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  24
  • Topics Per Day:  0.01
  • Content Count:  189
  • Reputation:   16
  • Joined:  11/20/11
  • Last Seen:  

How about explaining where to add? o.o

Look for it at src/map/battle.c xD.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  2244
  • Reputation:   182
  • Joined:  11/19/11
  • Last Seen:  

Yep. Those will do

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