Jump to content
  • 0

Mandragora Howling Chance


Dvrstle

Question


  • Group:  Members
  • Topic Count:  125
  • Topics Per Day:  0.03
  • Content Count:  361
  • Reputation:   10
  • Joined:  12/30/11
  • Last Seen:  

how can i reduce the chance of Mandragora's Howling. . . tnx for the reply

anyone?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  737
  • Reputation:   216
  • Joined:  11/29/11
  • Last Seen:  

search : GN_MANDRAGORA in skill.c then change the rate when applying status :

sc_start(bl, type, 25 + 10 * skilllv, skilllv, skill_get_time(skillid, skilllv))) // this is originaly 25+10*skilllv in rate for the status; adjust it as you wish.

sc_start(bl, type, 15 + 10 * skilllv, skilllv, skill_get_time(skillid, skilllv))) //now it's 15+10*skilllv for base chance.

If you want to increase status resistance then go in status_get_sc_def :

sc_def = (status->vit+status->luk)/5;

This mean : rate -= rate*(target vit + luk)/500; (sc_def is used with other status to increade status defense..)

With this you should have enough info to alter it the way you like.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  125
  • Topics Per Day:  0.03
  • Content Count:  361
  • Reputation:   10
  • Joined:  12/30/11
  • Last Seen:  

what if i want mandragora howling chance i just 30%

btw. . . . i can't understand how can i improve the resistance. . . =) please help me

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  737
  • Reputation:   216
  • Joined:  11/29/11
  • Last Seen:  

sc_start(bl, type, 30, skilllv, skill_get_time(skillid, skilllv)));

That would be a 30% base chance to get mandragora.

base chance is being reduce in status_get_sc_def by some stats like luk, or skill like siegfred and such (usually).

I can't be more explicit about this sorry.

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