Jump to content
  • 0

Formulas


Question

Posted (edited)

yo guys, whats wrong with these formulas?

MCAtk1 = attacker.calcStat(Stats.MAGICAL_CRITICAL_DAMAGE, 1,  target,  skill);
MCAtk2 = attacker.calcStat(Stats.MCRITICAL_DAMAGE_ADD, 0, target, skill);
MCVul = target.calcStat(Stats.MCRIT_VULN, 1, target, skill);
damage = damage * 4 * MCAtk1 + MCAtk2;
damage *= MCVul;

before adding them simple hit was 450, mc was 1802, now the mc does the same dmg as a simple hit when im using MCAtkAdd, and with MCAtk the mc is like 2500, while the simple is 1650

else if (mcrit){
damage *= 4;
Edited by ElTyto

12 answers to this question

Recommended Posts

  • 0
Posted (edited)

 

Maybe because you coded it that way...?

damage = damage * 4

isnt damage *= 4 the same?

 

damage *= 4;
damage *= MCAtk1;
damage += MCAtk2;
damage *= MCVul;

is this better?

Edited by ElTyto
  • 0
Posted (edited)

That wasn't what I meant, I meant you coded regular way the same way than critical, therefore it's normal you don't have any changes between normal and critical.

Edited by Tryskell
  • 0
Posted

I'm gonna bump this topic everyday till someone helps ^^

 
 
I have written so
        damage += attacker.calcStat(Stats.CRITICAL_DAMAGE, (damage + power), target, skill);
        damage += attacker.calcStat(Stats.CRITICAL_DAMAGE_ADD, 0, target, skill) * 6.5;
        damage *= target.calcStat(Stats.CRIT_VULN, 1, target, skill);
 
  • 0
Posted (edited)

Log every variable and every calculation step, you will know what happen.

 

Tbh I don't even understand your question.  If formulas are wrong it's because you wrote them bad. I don't even understand what you expect as result. How do you want any help ?

Edited by Tryskell
  • 0
Posted

my expectations for what i am doing is: 
a variable MCAtkAdd similar to CAtkAdd, flat value like 200 bonus for a magic critical hit

a variable MCAtk similar to CAtk, % value to use like <mul 0x30 1.3 MCAtk>

a variable MCritVuln similar to CritVuln, % value to use like <mul 0x30 0.7 MCritVuln>

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

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