help c++ please

Results 1 to 2 of 2
  1. #1
    Novice fakewar is offline
    MemberRank
    May 2014 Join Date
    São Paulo, BraLocation
    2Posts

    ! help c++ please

    Hello Guys, I'm putting a check system md5 to check if the system was edited more time to compile the source is giving error:
    Code:
    1>Main.cpp(1426): error C2059: syntax error : ')'
    
    
    the check md5 I'm using is:
    Code:
    void
     ForHack()
    
    {
    
    Log(
    "Proteção - Iniciando.\n\n");
    
    if
    (CheckUpdates() = true)
    
        {
    
        MessageBoxTimeoutA( NULL, 
    "MRS Edit Detected!", "Stroyer GunZ", MB_ICONHAND, NULL, 3000 );
    
        Log(
    "Mrs Edited Detected!");
    
        ExitProcess(0);
    
        
    return;
    
        }
    
    if
    (FileCount("./",false) != 3) {
    
    Log(
    "[System Files] - Algum Arquivo .SGZ a mais Na pasta.");
    
    ExitProcess(0); 
    
    }    
    
    if
    (stricmp(md5.getHashFromFile("system.SGZ").c_str(), "97E054DAE5CECB1541B5FD2FBB"))
    
    {
    
    Log(
    "[System Files] - Uma edição ilegal foi detectada: 'System.SGZ'.");
    
    ExitProcess(0); 
    
    }
    
    if
    (stricmp(md5.getHashFromFile("msvcp71.dll").c_str(), "561FA2ABB3181667C2"))
    
    {
    
    Log(
    "[System Files] - Uma edição ilegal foi detectada: 'msvcp71.dll'.");
    
    ExitProcess(0); 
    
    }
    
    Please help me :(
    Last edited by fakewar; 03-03-15 at 05:29 PM.


  2. #2
    Wait wut PenguinGuy is offline
    MemberRank
    Apr 2010 Join Date
    United StatesLocation
    765Posts

    Re: help c++ please

    Go to line 1426 in Main.cpp (or before even) and find the missing ')'. (Parenthesis)



Advertisement