bool HookDuelCheck1(LPOBJ lpObj) { bool bResult = false; // ---- if(lpObj->Type == OBJECT_USER) { if(g_DuelSystem.DuelCheck(lpObj)) bResult = true; else bResult = goBjHoookLoad1(lpObj); } return bResult; }
bool HookDuelCheck1(LPOBJ lpObj) { bool bResult = false; if(lpObj->Type == OBJECT_USER) { if(DuelSystem.DuelCheck(lpObj)) { bResult = true; } else { bResult = goBjHoookLoad1(lpObj); } } return bResult; }