Eross Posted May 31, 2022 Group: Members Topic Count: 166 Topics Per Day: 0.09 Content Count: 377 Reputation: 12 Joined: 04/05/20 Last Seen: Thursday at 08:11 AM Share Posted May 31, 2022 Good day ! I need help on activating the matk bonus on impositio magnus please to pre-renewal .. Last time I did it on my old server is I just change this line from the previous rathena status.cpp set_sc( KN_AUTOCOUNTER , SC_AUTOCOUNTER , EFST_AUTOCOUNTER , SCB_NONE ); set_sc( PR_IMPOSITIO , SC_IMPOSITIO , EFST_IMPOSITIO , SCB_WATK #ifdef RENEWAL |SCB_MATK ); #else |SCB_MATK ); but when I used the new repo those lines are gone .. can you help me please ? Quote Link to comment Share on other sites More sharing options...
1 _Terra Posted June 4, 2022 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 170 Reputation: 55 Joined: 07/15/13 Last Seen: 6 hours ago Share Posted June 4, 2022 On 6/2/2022 at 4:51 AM, Eross said: Hi I tried this but nothing happened You need implement the bonus in status.cpp go to src/map/status.cpp and find static unsigned short status_calc_matk(struct block_list *bl, struct status_change *sc, int matk) now put impositio bonus below: if (sc->data[SC_VOLCANO]) matk += sc->data[SC_VOLCANO]->val2; and add then: if (sc->data[SC_VOLCANO]) matk += sc->data[SC_VOLCANO]->val2; if (sc->data[SC_IMPOSITIO]) matk += sc->data[SC_IMPOSITIO]->val2; 1 Quote Link to comment Share on other sites More sharing options...
0 _Terra Posted June 1, 2022 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 170 Reputation: 55 Joined: 07/15/13 Last Seen: 6 hours ago Share Posted June 1, 2022 Go to db/pre-re/status.yml and search Impositio - Status: Impositio Icon: EFST_IMPOSITIO DurationLookup: PR_IMPOSITIO CalcFlags: Watk: true Flags: SuperNoviceAngel: true End: Impositio: true to - Status: Impositio Icon: EFST_IMPOSITIO DurationLookup: PR_IMPOSITIO CalcFlags: Watk: true Matk: true Flags: SuperNoviceAngel: true End: Impositio: true 1 Quote Link to comment Share on other sites More sharing options...
0 Eross Posted June 1, 2022 Group: Members Topic Count: 166 Topics Per Day: 0.09 Content Count: 377 Reputation: 12 Joined: 04/05/20 Last Seen: Thursday at 08:11 AM Author Share Posted June 1, 2022 9 hours ago, EIysium said: Go to db/pre-re/status.yml and search Impositio - Status: Impositio Icon: EFST_IMPOSITIO DurationLookup: PR_IMPOSITIO CalcFlags: Watk: true Flags: SuperNoviceAngel: true End: Impositio: true to - Status: Impositio Icon: EFST_IMPOSITIO DurationLookup: PR_IMPOSITIO CalcFlags: Watk: true Matk: true Flags: SuperNoviceAngel: true End: Impositio: true Thanks ! Ill try this when I get home .. Seems rathena make it more easier to adjust Quote Link to comment Share on other sites More sharing options...
0 Eross Posted June 2, 2022 Group: Members Topic Count: 166 Topics Per Day: 0.09 Content Count: 377 Reputation: 12 Joined: 04/05/20 Last Seen: Thursday at 08:11 AM Author Share Posted June 2, 2022 Hi I tried this but nothing happened Quote Link to comment Share on other sites More sharing options...
0 Playtester Posted June 3, 2022 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 897 Reputation: 248 Joined: 01/30/13 Last Seen: 16 hours ago Share Posted June 3, 2022 Calc flags only determines when your stats get recalculated, but you still need to implement the actual bonus you want to give it. Quote Link to comment Share on other sites More sharing options...
Question
Eross
Good day ! I need help on activating the matk bonus on impositio magnus please to pre-renewal .. Last time I did it on my old server is I just change this line from the previous rathena status.cpp
set_sc( KN_AUTOCOUNTER , SC_AUTOCOUNTER , EFST_AUTOCOUNTER , SCB_NONE ); set_sc( PR_IMPOSITIO , SC_IMPOSITIO , EFST_IMPOSITIO , SCB_WATK #ifdef RENEWAL |SCB_MATK ); #else |SCB_MATK );
but when I used the new repo those lines are gone .. can you help me please ?
Link to comment
Share on other sites
5 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.