Maharot Posted October 19, 2012 Group: Members Topic Count: 6 Topics Per Day: 0.00 Content Count: 11 Reputation: 0 Joined: 08/30/12 Last Seen: October 30, 2012 Share Posted October 19, 2012 How can i make my Sacrifice never miss against flee type? It misses on flee type characters T_T Quote Link to comment Share on other sites More sharing options...
1 Mystery Posted October 19, 2012 Group: Members Topic Count: 94 Topics Per Day: 0.02 Content Count: 2192 Reputation: 253 Joined: 11/11/11 Last Seen: June 24, 2020 Share Posted October 19, 2012 How can i make my Sacrifice never miss against flee type? It misses on flee type characters T_T Unless you mean "Flee" as in perfect dodge? If so, sacrifice does miss against players with a lot of Perfect dodge. If you want it to ignore perfect dodge, go to src/map/battle.c if ( (!skill_num || skill_num == PA_SACRIFICE) && tstatus->flee2 && rnd()%1000 < tstatus->flee2 ) { //Check for Lucky Dodge wd.type=0x0b; wd.dmg_lv=ATK_LUCKY; if (wd.div_ < 0) wd.div_*=-1; return wd; } Try changing if ( (!skill_num || skill_num == PA_SACRIFICE) && tstatus->flee2 && rnd()%1000 < tstatus->flee2 ) to if ( (!skill_num) && tstatus->flee2 && rand()%1000 < tstatus->flee2 ) 1 Quote Link to comment Share on other sites More sharing options...
goddameit Posted October 19, 2012 Group: Members Topic Count: 60 Topics Per Day: 0.01 Content Count: 562 Reputation: 219 Joined: 11/22/11 Last Seen: August 3, 2024 Share Posted October 19, 2012 ah? Quote Link to comment Share on other sites More sharing options...
Bin4ry Posted October 19, 2012 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 782 Reputation: 82 Joined: 01/01/12 Last Seen: September 21, 2015 Share Posted October 19, 2012 Sacrifice should never miss. Quote Link to comment Share on other sites More sharing options...
Question
Maharot
How can i make my Sacrifice never miss against flee type? It misses on flee type characters T_T
Link to comment
Share on other sites
3 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.