Jump to content
  • 0

EDP Asura edit


Zeiyan

Question


  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  275
  • Reputation:   23
  • Joined:  01/06/13
  • Last Seen:  

Please read carefully its kind of complicated

 

I am running a 255/120 high rate server with the effect of Assassin cross card giving chance to buff Enchant Deadly Poison on self.

I am fine with EDP affecting the damage of asura strike. What i want to do is nerf the bonus damage of EDP ONLY TO ASURA STRIKE but will not affect the bonus damage of edp to others skills and attacks. i was thinking of something like this in battle.c

 

Original code

case MO_EXTREMITYFIST:
					skillratio += 100*(7 + sstatus->sp/10);
					skillratio = min(500000,skillratio); //We stop at roughly 50k SP for overflow protection
					break;

The sort of code im thinking of (not that good at src but i think i can understand very little and an idea of it)

case MO_EXTREMITYFIST:
					skillratio += 100*(7 + sstatus->sp/10);
// here's the part im thinking of.
                                        if (SC_EDP) skillratio += 200%; ( im using lvl 3 edp for my sinxc which i think is 300% so i want asura strike to only get 200%.
					skillratio = min(500000,skillratio); //We stop at roughly 50k SP for overflow protection
					break;

 

i know that's not a code that will work :) but its just an idea of that im trying to say.



bump Edited by ZeiyanRO
Link to comment
Share on other sites

6 answers to this question

Recommended Posts


  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

if has get EDP buff from card, the damage effect only for Ashura skill?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  275
  • Reputation:   23
  • Joined:  01/06/13
  • Last Seen:  

ok my goal is everything (normal hits and skills) recieve the normal level 3 edp buff from my custom card that gives chance to cast  EDP which is Assassin cross card

EXCEPT for asura strike skill. Im trying to nerf the buff/damage bonus of edp ONLY to asura strike



bump



bmp

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  275
  • Reputation:   23
  • Joined:  01/06/13
  • Last Seen:  

solved it by myself finally -__-.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  32
  • Topics Per Day:  0.01
  • Content Count:  178
  • Reputation:   16
  • Joined:  06/25/12
  • Last Seen:  

you can also change it in item script, if job = champ, autocast EDP LVL 2

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  275
  • Reputation:   23
  • Joined:  01/06/13
  • Last Seen:  

That will affect champion's other skills like Finger offensive and his normal attacks too. Anyway it's already fixed. Fixed it my self by editing battle.c /heh Thanks!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  46
  • Reputation:   1
  • Joined:  07/15/13
  • Last Seen:  

That will affect champion's other skills like Finger offensive and his normal attacks too. Anyway it's already fixed. Fixed it my self by editing battle.c /heh Thanks!

can you post it how you fix it?

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