Jump to content
  • 0

Zenkai effect


Cold

Question


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  77
  • Reputation:   11
  • Joined:  08/19/12
  • Last Seen:  

The skill Zenkai of Kagerou and Oburo is Sleeping the player even if he is using Nightmare card and similars and the percent of status is 5% per orb, it needs to be 0.5%. 

 

:(

 

Someone can fix?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  2
  • Reputation:   0
  • Joined:  04/17/13
  • Last Seen:  

I have the same problem with my server.

But now it's fixed.

The problem is with the status effect.

Open skill.c file and find

 

case UNT_ZENKAI_WIND:
                        sc_start(ss, bl, SC_SILENCE, sg->val1*5, sg->skill_lv, skill_get_time2(sg->skill_id, sg->skill_lv));
                        sc_start(ss,bl, SC_SLEEP, sg->val1*5, sg->skill_lv, skill_get_time2(sg->skill_id, sg->skill_lv));
                        sc_start(ss, bl, SC_DEEPSLEEP, sg->val1*5, sg->skill_lv, skill_get_time2(sg->skill_id, sg->skill_lv));
                        break;

 

Zenkai also cast Deepsleep status which nightmare card only gain immunity to Sleep Status. Not Deepsleep

So just delete the last line and it will looks like below

 

case UNT_ZENKAI_WIND:
                        sc_start(ss, bl, SC_SILENCE, sg->val1*5, sg->skill_lv, skill_get_time2(sg->skill_id, sg->skill_lv));
                        sc_start(ss,bl, SC_SLEEP, sg->val1*5, sg->skill_lv, skill_get_time2(sg->skill_id, sg->skill_lv));
 

And recompile.

So Zenkai will cast Silence and Sleep status which player can use Nightmare card to gain immunity to sleep and use Green Potions to Cure the Silence status.

 

Just for share. Thanks a lot.

Edited by angelcomputer
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...