Cold Posted September 12, 2013 Group: Members Topic Count: 23 Topics Per Day: 0.00 Content Count: 77 Reputation: 11 Joined: 08/19/12 Last Seen: June 29, 2024 Share Posted September 12, 2013 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? Quote Link to comment Share on other sites More sharing options...
angelcomputer Posted March 22, 2014 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 2 Reputation: 0 Joined: 04/17/13 Last Seen: December 12, 2014 Share Posted March 22, 2014 (edited) 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 March 22, 2014 by angelcomputer Quote Link to comment Share on other sites More sharing options...
Question
Cold
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.