Jump to content
  • 0

Question

Posted (edited)

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

6 answers to this question

Recommended Posts

Posted

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

Posted

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!

Posted

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?

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...