Jump to content
  • 0

ask about shadow chaser skill "FEINT BOMB"


Question

11 answers to this question

Recommended Posts

Posted

I'm not sure about the formula, but in Rathena, i found this:

   case SC_FEINTBOMB:
 skillratio += 100 + 100 * skill_lv;
 break;

I don't see anyting saying about DEX here.

Anyways, if you wan't change the damage of this formula above, just add the command where you wan't:

sstatus->vit
sstatus->dex
sstatus->str

Change str, vit, dex by what you wan't,

Posted

I'm not sure about the formula, but in Rathena, i found this:

case SC_FEINTBOMB:
 skillratio += 100 + 100 * skill_lv;
 break;

I don't see anyting saying about DEX here.

Anyways, if you wan't change the damage of this formula above, just add the command where you wan't:

sstatus->vit
sstatus->dex
sstatus->str

Change str, vit, dex by what you wan't,

where i found that script?

Posted

src/map/battle.c

src/map/battle.c

case SC_FEINTBOMB:

skillratio += 4000 + 4000 * skill_lv + sstatus->str + sstatus->dex; //orginal :skillratio += 100 + 100 * skill_lv;

break;

i change but, it doesn't effect ... any suggestion?

Posted

did you recompile??

 4000 + 4000 * skill_lv + sstatus->str + sstatus->dex

and are you sure about this?? 24000%?? /hmm

i just test it.. but after i reboot my server , i doesn't effect on my feint bomb..the bomb still same with the last. any suggestion?

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