Jump to content

Caiba

Members
  • Content Count

    12
  • Joined

  • Last visited


Reputation Activity

  1. Like
    Caiba reacted to Nermesan in making GM Account   
    thanks mate found it.
  2. Like
    Caiba reacted to 4144 in Upcoming hercules feature   
    Already merged into hercules
     
    New feature: Items preview in cash shop
     
    Can be enabled by:
    1. defining ENABLE_CASHSHOP_PREVIEW_PATCH in core.h or by configure flag --enable-cashshop-preview-patch
    2. Then need apply this nemo patch http://nemo.herc.ws/patches/ExtendCashShopPreview/
     
    Feature can works only if option in server side enabled and enabled patch in client side. In other case cash shop will be corrupted
     

     
  3. Upvote
    Caiba reacted to Huitzilopotchli in Show 1 Regen HP/SP, how to remove it?   
    Finaly find it, it come from this:
    In status.c, status_calc_regen, minimum value is 1, means all job whatever if they have skill or sitting regen bonus, will display this "1" heal regen
    if (regen->skill != NULL) { regen->skill->hp = cap_value(regen->skill->hp, 1, INT16_MAX); regen->skill->sp = cap_value(regen->skill->sp, 1, INT16_MAX); } if (regen->sitting != NULL) { regen->sitting->hp = cap_value(regen->sitting->hp, 1, INT16_MAX); regen->sitting->sp = cap_value(regen->sitting->sp, 1, INT16_MAX); } We've change for this and it's work fine
    if (regen->skill != NULL) { regen->skill->hp = cap_value(regen->skill->hp, 0, INT16_MAX); regen->skill->sp = cap_value(regen->skill->sp, 0, INT16_MAX); } if (regen->sitting != NULL) { regen->sitting->hp = cap_value(regen->sitting->hp, 0, INT16_MAX); regen->sitting->sp = cap_value(regen->sitting->sp, 0, INT16_MAX); }  
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.