Azeroth Posted January 12, 2017 Group: Members Topic Count: 36 Topics Per Day: 0.01 Content Count: 383 Reputation: 121 Joined: 03/31/12 Last Seen: January 29, 2023 Share Posted January 12, 2017 (edited) Hi, i was wondering if how can i make the PA_SACRIFICE skill never miss? I tried one of those 4 years ago snippets but one of them none working. This is the official behavior, the opponent is build with high FLEE and high AGI Is there way to ignore it? Thank you in Advance. Edited January 12, 2017 by Azeroth Quote Link to comment Share on other sites More sharing options...
0 Playtester Posted January 12, 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 January 12, 2017 You can set this in your skill_db, just read the explanation at the top. 1 Quote Link to comment Share on other sites More sharing options...
0 Azeroth Posted January 15, 2017 Group: Members Topic Count: 36 Topics Per Day: 0.01 Content Count: 383 Reputation: 121 Joined: 03/31/12 Last Seen: January 29, 2023 Author Share Posted January 15, 2017 On 1/12/2017 at 1:49 PM, Playtester said: You can set this in your skill_db, just read the explanation at the top. i tried but still miss, i think it requires SRC. nk|=NK_IGNORE_FLEE; Ain't working. Quote Link to comment Share on other sites More sharing options...
0 n0tttt Posted January 15, 2017 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 303 Reputation: 118 Joined: 12/10/16 Last Seen: Friday at 02:39 AM Share Posted January 15, 2017 battle.c Change: if (skill_id == PA_PRESSURE || skill_id == HW_GRAVITATION) return damage; //These skills bypass everything else. To: if (skill_id == PA_PRESSURE || skill_id == HW_GRAVITATION || skill_id == PA_SACRIFICE) return damage; //These skills bypass everything else. Quote Link to comment Share on other sites More sharing options...
0 Azeroth Posted January 15, 2017 Group: Members Topic Count: 36 Topics Per Day: 0.01 Content Count: 383 Reputation: 121 Joined: 03/31/12 Last Seen: January 29, 2023 Author Share Posted January 15, 2017 (edited) 21 minutes ago, n0tttt said: battle.c Change: if (skill_id == PA_PRESSURE || skill_id == HW_GRAVITATION) return damage; //These skills bypass everything else. To: if (skill_id == PA_PRESSURE || skill_id == HW_GRAVITATION || skill_id == PA_SACRIFICE) return damage; //These skills bypass everything else. Let me try this, i appreciate for ur help! Edited January 15, 2017 by Azeroth Adding PS. Quote Link to comment Share on other sites More sharing options...
0 Azeroth Posted January 15, 2017 Group: Members Topic Count: 36 Topics Per Day: 0.01 Content Count: 383 Reputation: 121 Joined: 03/31/12 Last Seen: January 29, 2023 Author Share Posted January 15, 2017 Tried this but the source u give ain't working Quote Link to comment Share on other sites More sharing options...
0 n0tttt Posted January 15, 2017 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 303 Reputation: 118 Joined: 12/10/16 Last Seen: Friday at 02:39 AM Share Posted January 15, 2017 Really weird. The first change would have work, the second one is a bit more extreme. Did you recompile? Sorry if that's sound like asking you a novice question, but I don't really know what else happens then. Quote Link to comment Share on other sites More sharing options...
0 Azeroth Posted January 15, 2017 Group: Members Topic Count: 36 Topics Per Day: 0.01 Content Count: 383 Reputation: 121 Joined: 03/31/12 Last Seen: January 29, 2023 Author Share Posted January 15, 2017 56 minutes ago, n0tttt said: Really weird. The first change would have work, the second one is a bit more extreme. Did you recompile? Sorry if that's sound like asking you a novice question, but I don't really know what else happens then. I always recompile after i made some changes Quote Link to comment Share on other sites More sharing options...
0 Playtester Posted January 17, 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 January 17, 2017 I just checked again and when I compile current rAthena on pre-renewal setting without any changes, Sacrifice already never misses. Quote Link to comment Share on other sites More sharing options...
Question
Azeroth
Hi, i was wondering if how can i make the PA_SACRIFICE skill never miss? I tried one of those 4 years ago snippets but one of them none working.
This is the official behavior, the opponent is build with high FLEE and high AGI
Is there way to ignore it?
Thank you in Advance.
Link to comment
Share on other sites
8 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.