Launcher forced to main.exe

Results 1 to 4 of 4
  1. #1
    Member darkmuonline is offline
    MemberRank
    Aug 2016 Join Date
    76Posts

    Launcher forced to main.exe

    My launcher ( ST Mu Launcher ) is forced to main.exe JMP to JNZ changed.But when i click on START GAME the launcher send me again to the launcher. Can i use the ST MU Launcher or one other or i need to use the GMO (Global MU Launcher) ? I need launcher with crc check and memory check.

    Thanks!
    Last edited by darkmuonline; 03-05-17 at 10:44 PM.


  2. #2
    Account Upgraded | Title Enabled! thevjfla is offline
    MemberRank
    Apr 2012 Join Date
    203Posts

    Re: Launcher forced to main.exe

    Check the parameter requeired for the main to start, and check if the launcher send it correctly.

  3. #3
    Valued Member 0xCCCCCC is offline
    MemberRank
    Nov 2016 Join Date
    NoriaLocation
    140Posts

    Re: Launcher forced to main.exe

    Code:
        HWND hWnd = FindWindow(NULL,"MU"); //Launcher title
        if(hWnd == 0)
        {
             // additional information
        STARTUPINFOA si;
        PROCESS_INFORMATION pi;
    
    
        // set the size of the structures
        ZeroMemory(&si, sizeof(si));
        si.cb = sizeof(si);
        ZeroMemory(&pi, sizeof(pi));
    
    
        // start the program up
        CreateProcessA
        (
            "mu.exe",   // the path
            NULL,                // Command line
            NULL,                   // Process handle not inheritable
            NULL,                   // Thread handle not inheritable
            FALSE,                  // Set handle inheritance to FALSE
            CREATE_NEW_CONSOLE,     // Opens file in a separate console
            NULL,           // Use parent's environment block
            NULL,           // Use parent's starting directory 
            &si,            // Pointer to STARTUPINFO structure
            &pi           // Pointer to PROCESS_INFORMATION structure
        );
            // Close process and thread handles. 
            CloseHandle(pi.hProcess);
            CloseHandle(pi.hThread);
    
    
            ExitProcess(0);
            return;
        }

  4. #4
    Member darkmuonline is offline
    MemberRank
    Aug 2016 Join Date
    76Posts

    Re: Launcher forced to main.exe

    Thanks!!



Advertisement