Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/13/18 in all areas

  1. Yes because a horse can live between 25 and 30 years or your horse is immortal
    5 points
  2. M2 Download Center Download Here ( Internal ) Download Here ( GitHub )
    2 points
  3. #Update: Fixed offline/online problem(party.cpp->SendPartyJoinAllToOne, uiparty.py->AddPartyMember) Code improvement(party.cpp->P2PJoin)
    2 points
  4. I said, the error was lying on the uitooltip side. I had to rewrite one function (it took me about 2h), now everything works fine.
    1 point
  5. but have 1 error, i fix and work for me go to char.cpp search: case APPLY_MAX_HP: and replace with this case APPLY_MAX_HP: case APPLY_MAX_HP_PCT: { if(GetMaxHP() == 0) break; PointChange(aApplyInfo[bApplyType].bPointType, iVal); } break; case APPLY_MAX_SP: case APPLY_MAX_SP_PCT: { if(GetMaxSP() == 0) break; PointChange(aApplyInfo[bApplyType].bPointType, iVal); } break; [Hidden Content] next search: case POINT_MAX_HP: and case POINT_MAX_SP: (line3309) replace with this case POINT_MAX_HP: { SetPoint(type, GetPoint(type) + amount); int curMaxHP = GetMaxHP(); int hp = GetRealPoint(POINT_MAX_HP); int add_hp = MIN(3500, hp * GetPoint(POINT_MAX_HP_PCT) / 100); add_hp += GetPoint(POINT_MAX_HP); add_hp += GetPoint(POINT_PARTY_TANKER_BONUS); SetMaxHP(hp + add_hp); float fRatio = (float)GetMaxHP() / (float)curMaxHP; PointChange(POINT_HP, GetHP() * fRatio - GetHP()); val = GetMaxHP(); } break; case POINT_MAX_SP: { SetPoint(type, GetPoint(type) + amount); int curMaxSP = GetMaxSP(); int sp = GetRealPoint(POINT_MAX_SP); int add_sp = MIN(800, sp * GetPoint(POINT_MAX_SP_PCT) / 100); add_sp += GetPoint(POINT_MAX_SP); add_sp += GetPoint(POINT_PARTY_SKILL_MASTER_BONUS); SetMaxSP(sp + add_sp); float fRatio = (float)GetMaxSP() / (float)curMaxSP; PointChange(POINT_SP, GetSP() * fRatio - GetSP()); val = GetMaxSP(); } break; [Hidden Content] thats all.
    1 point
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.