Jump to content

GetPoint: POINT_ERROR:


Recommended Posts

Spoiler

SYSERR: Jan 20 17:56:49 :: GetPoint: POINT_ERROR: AntiFi type 63 val 67 (max: 50)
SYSERR: Jan 20 17:56:49 :: GetPoint: POINT_ERROR: AntiFi type 63 val 67 (max: 50)
SYSERR: Jan 20 17:56:49 :: GetPoint: POINT_ERROR: AntiFi type 63 val 67 (max: 50)
SYSERR: Jan 20 17:56:49 :: GetPoint: POINT_ERROR: AntiFi type 63 val 67 (max: 50)
SYSERR: Jan 20 17:56:49 :: GetPoint: POINT_ERROR: AntiFi type 63 val 67 (max: 50)
SYSERR: Jan 20 17:56:49 :: GetPoint: POINT_ERROR: AntiFi type 63 val 67 (max: 50)
SYSERR: Jan 20 17:56:49 :: GetPoint: POINT_ERROR: AntiFi type 63 val 67 (max: 50)
SYSERR: Jan 20 17:56:49 :: GetPoint: POINT_ERROR: AntiFi type 63 val 67 (max: 50)
SYSERR: Jan 20 17:56:49 :: GetPoint: POINT_ERROR: AntiFi type 63 val 67 (max: 50)
SYSERR: Jan 20 17:56:49 :: GetPoint: POINT_ERROR: AntiFi type 63 val 67 (max: 50)
SYSERR: Jan 20 17:56:50 :: GetPoint: POINT_ERROR: AntiFi type 63 val 67 (max: 50)
SYSERR: Jan 20 17:57:17 :: GetPoint: POINT_ERROR: AntiFi type 63 val 67 (max: 50)
SYSERR: Jan 20 17:57:17 :: GetPoint: POINT_ERROR: AntiFi type 63 val 67 (max: 50)

Hello people :) 

How can I fix this error?

 

 

 

 

Source GAME :

Spoiler

Char_Battle.cpp   

     // 칠 때마다 P회복
            int iAbsoHP_ptr = pAttacker->GetPoint(POINT_HIT_HP_RECOVERY);
            if (iAbsoHP_ptr)
            {
                if (number(1, 100) <= iAbsoHP_ptr) {
                    int iHPAbso = MIN(dam, GetHP()) * pAttacker->GetPoint(POINT_HIT_HP_RECOVERY) / 100;


                    if ((pAttacker->GetHP() > 0) && (pAttacker->GetHP() + iHPAbso < pAttacker->GetMaxHP()) && (GetHP() > 0) && (iHPAbso > 0))
                    {
                        CreateFly(FLY_HP_BIG, pAttacker);
                        pAttacker->PointChange(POINT_HP, iHPAbso);
                    }
                }
            }


            // A¥ ¶§¸¶´U SPE¸º¹
            int iAbsoSP_ptr = pAttacker->GetPoint(POINT_HIT_SP_RECOVERY);
            if (iAbsoSP_ptr)
            {
            if (number(1, 100) <= iAbsoSP_ptr) {
                int iSPAbso = MIN(dam, GetSP()) * pAttacker->GetPoint(POINT_HIT_SP_RECOVERY) / 100;


                    if ((pAttacker->GetSP() > 0) && (pAttacker->GetSP() + iSPAbso < pAttacker->GetMaxSP()) && (GetSP() > 0) && (iSPAbso > 0))
                    {
                        CreateFly(FLY_SP_BIG, pAttacker);
                        pAttacker->PointChange(POINT_SP, iSPAbso);
                    }
                }
            }

            // 상대방의 마나를 없앤다.
            if (pAttacker->GetPoint(POINT_MANA_BURN_PCT))
            {
                if (number(1, 100) <= pAttacker->GetPoint(POINT_MANA_BURN_PCT))
                    PointChange(POINT_SP, -50);
            }
        }
    }
 

 

 

char.cpp

sys_err("POINT_ERROR: %s type %d val %d (max: %d)", GetName(), type, val, max_val);

sys_err("POINT_ERROR: %s type %d val %d (max: %d)", GetName(), type, val, max_val);

 

Link to comment
Share on other sites

  • Replies 1
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • 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.