Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Launcher forced to main.exe

Newbie Spellweaver
Joined
Aug 16, 2016
Messages
76
Reaction score
3
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:
Experienced Elementalist
Joined
Apr 15, 2012
Messages
203
Reaction score
25
Check the parameter requeired for the main to start, and check if the launcher send it correctly.
 
Upvote 0
Junior Spellweaver
Joined
Nov 26, 2016
Messages
140
Reaction score
28
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;
    }
 
Upvote 0
Back
Top