Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/13/15 in Posts

  1. FluxCP Site Design (3 months) Please suggest modifications and systems. ---> I'm working on custom shop donations. ---> Language Pack for index and custom modifications (Done) Please Rate (1/10) Full Site - Logged (Left Menu) + Ranking + Donate + Chars + ... Login Box (Left) Register - With Datepicker Char Info + Reset View + Reset Map + Unequip itens + Change Slot Char Screen Account + (Control Panel Logs + Game Logs + Trade Logs (TABS)) + Kafra + Change Sex + Change Email + transfer credits + change pass Freebies Addon Vending Addon Hall Of Fame + Vote 4 Points (no pic) + Support Tickets (no pic)
    1 point
  2. bonus += ((TBL_PC*)bl)->status.max_hp / 10;
    1 point
  3. Try this one. src/map/status.c Under: static int status_get_hpbonus(struct block_list *bl, enum e_status_bonus type) Find This: //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; if(sc->data[SC_LERADSDEW]) bonus += sc->data[SC_LERADSDEW]->val3; if(sc->data[SC_INSPIRATION]) bonus += (600 * sc->data[SC_INSPIRATION]->val1); if(sc->data[SC_SOLID_SKIN_OPTION]) bonus += 2000; if(sc->data[SC_MTF_MHP]) bonus += sc->data[SC_MTF_MHP]->val1; if(sc->data[SC_MARIONETTE]) bonus -= 1000; Add these lines: if(sc->data[SC_SPIRIT] && (sc->data[SC_SPIRIT]->val2 == SL_WIZARD || sc->data[SC_SPIRIT]->val2 == SL_SAGE)) bonus += ((TBL_PC*)bl)->status.max_hp * 2; PS: Haven't tested it yet. Just see if it works.
    1 point
×
×
  • Create New...