Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/15/23 in all areas

  1. Did you reload your file for after you change your gm permission ?
    1 point
  2. battle.c case MO_EXTREMITYFIST: skillratio += 100*(7 + sstatus->sp/10); skillratio = min(500000,skillratio); //We stop at roughly 50k SP for overflow protection break; change skillratio += 100*(7 + sstatus->sp/10); to skillratio += 100*(7 + min(sstatus->sp,6000)/10); ref: http://www.cplusplus.com/reference/algorithm/min/
    1 point
×
×
  • Create New...