mauiboy Posted November 6, 2016 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 63 Reputation: 1 Joined: 07/06/16 Last Seen: February 1 Share Posted November 6, 2016 I got this one from here : https://rathena.org/board/topic/82740-soul-link-modification/?hl=%2Bsoul+%2Blink In src/map/status.c (Increase HP by BaseLvl*200 HP) if(sc->data[SC_SPIRIT] && (sc->data[SC_SPIRIT]->val2 == SL_WIZARD || sc->data[SC_SPIRIT]->val2 == SL_SAGE)) maxhp += ((TBL_PC*)bl)->status.base_level * 200; But cant locate where to put this source code in status.c This one is WORKING, I already compiled this. (Increase Vit will by Int/5) if(sc->data[SC_SPIRIT] && (sc->data[SC_SPIRIT]->val2 == SL_WIZARD || sc->data[SC_SPIRIT]->val2 == SL_SAGE)) vit += ((TBL_PC*)bl)->status.int_ / 5; Any idea guys? I really need the Increase HP thingy. Thank you! Quote Link to comment Share on other sites More sharing options...
0 Bringer Posted November 6, 2016 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 748 Reputation: 47 Joined: 03/12/14 Last Seen: Friday at 02:54 PM Share Posted November 6, 2016 (edited) Go to your trunk/src/map/status.c and look for: //Bonus by SC if (sc) { if(sc->data[SC_INCMHP]) bonus += sc->data[SC_INCMHP]->val1; if(sc->data[SC_EARTH_INSIGNIA] && sc->data[SC_EARTH_INSIGNIA]->val1 == 2) bonus += 500; //Bonus Effect for Wizard & Sage Link if(sc->data[SC_SPIRIT] && (sc->data[SC_SPIRIT]->val2 == SL_WIZARD || sc->data[SC_SPIRIT]->val2 == SL_SAGE)) bonus += ((TBL_PC*)bl)->status.base_level * 200; Edited November 6, 2016 by Bringer 1 Quote Link to comment Share on other sites More sharing options...
0 mauiboy Posted November 6, 2016 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 63 Reputation: 1 Joined: 07/06/16 Last Seen: February 1 Author Share Posted November 6, 2016 Go to your trunk/src/map/status.c and look for: //Bonus by SC if (sc) { if(sc->data[SC_INCMHP]) bonus += sc->data[SC_INCMHP]->val1; if(sc->data[SC_EARTH_INSIGNIA] && sc->data[SC_EARTH_INSIGNIA]->val1 == 2) bonus += 500; //Bonus Effect for Wizard & Sage Link if(sc->data[SC_SPIRIT] && (sc->data[SC_SPIRIT]->val2 == SL_WIZARD || sc->data[SC_SPIRIT]->val2 == SL_SAGE)) bonus += ((TBL_PC*)bl)->status.base_level * 200; 100% Working! You're a life saver man! Thanks Bringer! Quote Link to comment Share on other sites More sharing options...
Question
mauiboy
I got this one from here :
https://rathena.org/board/topic/82740-soul-link-modification/?hl=%2Bsoul+%2Blink
In src/map/status.c
(Increase HP by BaseLvl*200 HP)
But cant locate where to put this source code in status.c
This one is WORKING, I already compiled this.
(Increase Vit will by Int/5)
Any idea guys? I really need the Increase HP thingy. Thank you!
Link to comment
Share on other sites
2 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.