Azeroth Posted January 12, 2017 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
0 Playtester Posted January 12, 2017 Posted January 12, 2017 You can set this in your skill_db, just read the explanation at the top. 1 Quote
0 Azeroth Posted January 15, 2017 Author 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
0 n0tttt Posted January 15, 2017 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
0 Azeroth Posted January 15, 2017 Author 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
0 Azeroth Posted January 15, 2017 Author Posted January 15, 2017 Tried this but the source u give ain't working Quote
0 n0tttt Posted January 15, 2017 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
0 Azeroth Posted January 15, 2017 Author 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
0 Playtester Posted January 17, 2017 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
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.
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.