[Help] How to force users open Launcher.exe

Results 1 to 14 of 14
  1. #1
    Enthusiast marcmarccc is offline
    MemberRank
    Oct 2015 Join Date
    44Posts

    [Help] How to force users open Launcher.exe

    Hello, I would like to block main.exe to open directly, force user open Launcher.exe.



    My main:
    https://drive.google.com/open?id=1qU...KD0GZweir8S4rn


  2. #2
    Proficient Member muzic25 is offline
    MemberRank
    Aug 2008 Join Date
    HungaryLocation
    183Posts

    Re: [Help] How to force users open Launcher.exe

    Quote Originally Posted by marcmarccc View Post
    Hello, I would like to block main.exe to open directly, force user open Launcher.exe.



    My main:
    https://drive.google.com/open?id=1qU...KD0GZweir8S4rn
    Firstly: use a clean main... you posted a packed main, so you cant get the correct offset easily
    Secondary: If you have any dll source code like (zTeam or MuEmu) Comment mu.exe fix and then compile the dll (hook the dll to the main.exe (if you use clean main.exe)) and then rename the Launcher.exe to mu.exe, thats all. ^^

    Ps.: if don't work, the launcher need some command line options to start the client

  3. #3
    Enthusiast marcmarccc is offline
    MemberRank
    Oct 2015 Join Date
    44Posts

    Re: [Help] How to force users open Launcher.exe

    I don't have a unpacked main and i don't know how to code dll to do this function =/

  4. #4

    Re: [Help] How to force users open Launcher.exe

    @marcmarccc 'muzic25' is right, u have 2 options... ur main wont run on ollydbg etc, (atleast for me it takes ages or so) u have 2 options... 1 hook a .dll that has this fix to prompt main.exe to open mu.exe after run. OR check the settings in the folder u uploaded MainInfo.ini there is Launcher=0 make it 1 maybe it will then enable? i dont know cuz no experience with muemu files atm. good luck!

    i saw soemwhere the source code to make a .dll and hook that .dll to main.exe but cant find it anywhere now. please ask at muemu threads better!

  5. #5
    Novice C++ allexander is offline
    MemberRank
    Feb 2011 Join Date
    European UnionLocation
    580Posts

    Re: [Help] How to force users open Launcher.exe

    Quote Originally Posted by marcmarccc View Post
    I don't have a unpacked main and i don't know how to code dll to do this function =/
    Here read this:

    http://forum.ragezone.com/f197/relea...4/index49.html

  6. #6
    Enthusiast marcmarccc is offline
    MemberRank
    Oct 2015 Join Date
    44Posts

    Re: [Help] How to force users open Launcher.exe

    Quote Originally Posted by KarLi View Post
    @marcmarccc 'muzic25' is right, u have 2 options... ur main wont run on ollydbg etc, (atleast for me it takes ages or so) u have 2 options... 1 hook a .dll that has this fix to prompt main.exe to open mu.exe after run. OR check the settings in the folder u uploaded MainInfo.ini there is Launcher=0 make it 1 maybe it will then enable? i dont know cuz no experience with muemu files atm. good luck!

    i saw soemwhere the source code to make a .dll and hook that .dll to main.exe but cant find it anywhere now. please ask at muemu threads better!
    LauncherType=1 only work for x-team launcher and i'm able to find one here, now working thank you anyways.

  7. #7
    Proficient Member franlley is offline
    MemberRank
    Sep 2008 Join Date
    193Posts

    Re: [Help] How to force users open Launcher.exe

    hi @KarLi

    I need help for my main.exe too.
    maybe you can help me check it ? This main is S3 EP1.
    my launcher name is MULauncher.exe
    Last edited by franlley; 18-01-19 at 05:14 PM.

  8. #8

    Re: [Help] How to force users open Launcher.exe

    @franlley next time make a new thread instead ;)

    ur launcher must be named MU.EXE only in order to force from main.exe
    unless u using muadmins antihack or other antihack that forces custom named .exe after run main.exe

    to force u need to do this with ollydbg:


    or like @myheart said code this source code and make it .dll and hook it on ur main.exe
    Code:
    create dll to check mu.exe
    if(open)
    start main
    else
    close main
    search for text: mu.exe
    find the 3rd mu.exe
    click it and it will redirect u to offsets

    now check this post
    http://forum.ragezone.com/f82/push-m...5/#post6536045

    ollydbg download: http://www.ollydbg.de/odbg110.zip

  9. #9
    Proficient Member franlley is offline
    MemberRank
    Sep 2008 Join Date
    193Posts

    Re: [Help] How to force users open Launcher.exe

    Quote Originally Posted by KarLi View Post
    @franlley next time make a new thread instead ;)

    ur launcher must be named MU.EXE only in order to force from main.exe
    unless u using muadmins antihack or other antihack that forces custom named .exe after run main.exe

    to force u need to do this with ollydbg:


    or like @myheart said code this source code and make it .dll and hook it on ur main.exe
    Code:
    create dll to check mu.exe
    if(open)
    start main
    else
    close main
    search for text: mu.exe
    find the 3rd mu.exe
    click it and it will redirect u to offsets

    now check this post
    http://forum.ragezone.com/f82/push-m...5/#post6536045

    ollydbg download: http://www.ollydbg.de/odbg110.zip
    Thank you for reply. But i failed at ollydbg.
    I will try myheart code.

  10. #10
    Proficient Member franlley is offline
    MemberRank
    Sep 2008 Join Date
    193Posts

    Re: [Help] How to force users open Launcher.exe

    Quote Originally Posted by KarLi View Post
    @franlley next time make a new thread instead ;)

    ur launcher must be named MU.EXE only in order to force from main.exe
    unless u using muadmins antihack or other antihack that forces custom named .exe after run main.exe

    to force u need to do this with ollydbg:


    or like @myheart said code this source code and make it .dll and hook it on ur main.exe
    Code:
    create dll to check mu.exe
    if(open)
    start main
    else
    close main
    search for text: mu.exe
    find the 3rd mu.exe
    click it and it will redirect u to offsets

    now check this post
    http://forum.ragezone.com/f82/push-m...5/#post6536045

    ollydbg download: http://www.ollydbg.de/odbg110.zip
    finally, i managed to do this. but after press Start Game, main.exe didn't pop out.
    What seems the problem ?

  11. #11

    Re: [Help] How to force users open Launcher.exe

    Quote Originally Posted by franlley View Post
    finally, i managed to do this. but after press Start Game, main.exe didn't pop out.
    What seems the problem ?
    Is the launcher named mu.exe
    And it should open main.exe if u did it right

    Sent from my Redmi 5 using Tapatalk

  12. #12
    Proficient Member franlley is offline
    MemberRank
    Sep 2008 Join Date
    193Posts

    Re: [Help] How to force users open Launcher.exe

    Quote Originally Posted by KarLi View Post
    Is the launcher named mu.exe
    And it should open main.exe if u did it right

    Sent from my Redmi 5 using Tapatalk
    yes. I've changed the launcher named mu.exe
    i think the Launcher not suitable. im using GunzLauncher from this forum.

  13. #13

    Re: [Help] How to force users open Launcher.exe

    hmm ok..
    i recommend using the original webzen launcher

  14. #14
    Proficient Member franlley is offline
    MemberRank
    Sep 2008 Join Date
    193Posts

    Re: [Help] How to force users open Launcher.exe

    Quote Originally Posted by KarLi View Post
    hmm ok..
    i recommend using the original webzen launcher
    too bad server already published.
    its ok, i still can announce in-game for updates. Thnak you bro.



Advertisement