Gotcha Posted December 31, 2016 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 14 Reputation: 1 Joined: 05/04/14 Last Seen: May 19, 2024 Share Posted December 31, 2016 Hello guys. KRO was updated a few weeks ago. -Some continuous hitting skills that are activated as passive will change to Critical when activated. Skill list : Double attack, Chain action, Kagemusha, Triple attack and Fear breeze. So I tried to apply them. Buy I don't know programming language. I ask for your help. Quote Link to comment Share on other sites More sharing options...
0 tepek Posted March 8, 2017 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 75 Reputation: 4 Joined: 06/14/16 Last Seen: January 9, 2018 Share Posted March 8, 2017 https://github.com/rathena/rathena/issues/1788 yea i have same problem. how to update this new mechanic on my server? Quote Link to comment Share on other sites More sharing options...
0 Playtester Posted March 10, 2017 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 897 Reputation: 248 Joined: 01/30/13 Last Seen: Yesterday at 09:07 AM Share Posted March 10, 2017 Requires packet capturing as the current packet data doesn't support to combine crit with skill. But of course you could just put that into the damage calculation like Focused Arrow Strike: if( !(wd.type&DMG_MULTI_HIT) && sstatus->cri && (!skill_id || skill_id == KN_AUTOCOUNTER || skill_id == SN_SHARPSHOOTING || skill_id == MA_SHARPSHOOTING || skill_id == NJ_KIRIKAGE)) Though this code also checks that it's not a multi hit, so I guess further modifications might be needed. Quote Link to comment Share on other sites More sharing options...
0 Meister Posted November 26, 2017 Group: Members Topic Count: 280 Topics Per Day: 0.06 Content Count: 841 Reputation: 17 Joined: 04/16/12 Last Seen: March 4, 2024 Share Posted November 26, 2017 On 3/10/2017 at 8:49 PM, Playtester said: Requires packet capturing as the current packet data doesn't support to combine crit with skill. But of course you could just put that into the damage calculation like Focused Arrow Strike: if( !(wd.type&DMG_MULTI_HIT) && sstatus->cri && (!skill_id || skill_id == KN_AUTOCOUNTER || skill_id == SN_SHARPSHOOTING || skill_id == MA_SHARPSHOOTING || skill_id == NJ_KIRIKAGE)) Though this code also checks that it's not a multi hit, so I guess further modifications might be needed. Should it be if ( wd.type&DMG_MULTI_HIT && Skill ID )? Quote Link to comment Share on other sites More sharing options...
0 Playtester Posted November 27, 2017 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 897 Reputation: 248 Joined: 01/30/13 Last Seen: Yesterday at 09:07 AM Share Posted November 27, 2017 No, just look how it's done with other skills if you want to add skills here. Or remove the check for multi hit if you want it to work with multi hit. Quote Link to comment Share on other sites More sharing options...
0 Meister Posted November 27, 2017 Group: Members Topic Count: 280 Topics Per Day: 0.06 Content Count: 841 Reputation: 17 Joined: 04/16/12 Last Seen: March 4, 2024 Share Posted November 27, 2017 6 hours ago, Playtester said: No, just look how it's done with other skills if you want to add skills here. Or remove the check for multi hit if you want it to work with multi hit. I tried to bypass the check for multi-hit with adding && !(skill_id == TF_DOUBLE) It works all double attack now are crit even with double attack but the problem is that it doesn't show the yellow damage. I don't know what does it call. Like when you attack double there's a yellow damage showing. Quote Link to comment Share on other sites More sharing options...
0 Playtester Posted November 28, 2017 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 897 Reputation: 248 Joined: 01/30/13 Last Seen: Yesterday at 09:07 AM Share Posted November 28, 2017 You can't show crit on multi-hits. The client doesn't support it. Quote Link to comment Share on other sites More sharing options...
0 Meister Posted November 29, 2017 Group: Members Topic Count: 280 Topics Per Day: 0.06 Content Count: 841 Reputation: 17 Joined: 04/16/12 Last Seen: March 4, 2024 Share Posted November 29, 2017 On 11/28/2017 at 6:13 PM, Playtester said: You can't show crit on multi-hits. The client doesn't support it. How come can't? kRO can show it from Ziu's video. Does it need newer client like 2017? or packet issue? Quote Link to comment Share on other sites More sharing options...
0 Playtester Posted November 29, 2017 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 897 Reputation: 248 Joined: 01/30/13 Last Seen: Yesterday at 09:07 AM Share Posted November 29, 2017 Well, if it's a new feature then you will need the client that supports it and capture all the packet data required. 1 Quote Link to comment Share on other sites More sharing options...
0 Foob Posted December 10, 2017 Group: Members Topic Count: 46 Topics Per Day: 0.02 Content Count: 267 Reputation: 40 Joined: 01/19/17 Last Seen: April 16 Share Posted December 10, 2017 This needs a new code indeed got it fully working! Somehow the triple attack skill is not having a crit but its all good. Quote Link to comment Share on other sites More sharing options...
0 noonbora Posted January 7, 2018 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 9 Reputation: 0 Joined: 04/16/16 Last Seen: October 23, 2024 Share Posted January 7, 2018 On 2017. 12. 10. at 3:25 PM, iAmGnome said: This needs a new code indeed got it fully working! Somehow the triple attack skill is not having a crit but its all good. can i ask what new codes needed? Quote Link to comment Share on other sites More sharing options...
0 Secrets Posted January 18, 2018 Group: Developer Topic Count: 36 Topics Per Day: 0.01 Content Count: 588 Reputation: 437 Joined: 01/26/16 Last Seen: Wednesday at 03:00 PM Share Posted January 18, 2018 From my testing on kRO, Triple Attack doesn't show critting red balloon. 1 Quote Link to comment Share on other sites More sharing options...
0 Haganezuka Posted February 1, 2019 Group: Members Topic Count: 23 Topics Per Day: 0.01 Content Count: 116 Reputation: 4 Joined: 08/14/16 Last Seen: April 2 Share Posted February 1, 2019 @iAmGnome can you share the code if possible? tyvm Quote Link to comment Share on other sites More sharing options...
0 Unkon Posted March 5, 2019 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 1 Reputation: 0 Joined: 03/05/19 Last Seen: May 4, 2019 Share Posted March 5, 2019 Hello did someone found it ou ? Quote Link to comment Share on other sites More sharing options...
Question
Gotcha
Hello guys.
KRO was updated a few weeks ago.
-Some continuous hitting skills that are activated as passive will change to Critical when activated.
Skill list : Double attack, Chain action, Kagemusha, Triple attack and Fear breeze.
I ask for your help.
Link to comment
Share on other sites
13 answers 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.