1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Changing Save location of the mym launcher

Discussion in 'Tutorials, Tips and Tricks' started by ExoNoctua, Aug 4, 2014.

  1. ExoNoctua

    ExoNoctua Active Member

    Messages:
    37
    Likes Received:
    6
    Local Time:
    4:05 PM
    Hi, i made this thread so you can change your save location of the mym launcher.
    The reason i use this is because the normal save location is
    C:\Users\[username]\AppData\Roaming\.mineyourmind
    This will put it on the C: drive, On this computer i don't have to much space on my C: drive to install all the packs, So i search and i found this solution to change the location.

    Step 1. Create a new text document.
    Step 2. Put the following lines in the document.
    Code:
    SET sPath=%appdata%
    SET AppData=[Location]
    MyM-Launcher.exe
    SETAppdata=%sPath%
    Step 3. Change to [Location] to your drive and maps (for me this was: D:\Games\MYM)
    Step 4. Save the document as: launcher.bat (make sure its in the same map as your launcher)
    Step 5. Run your launcher.bat to run the mym launcher and download your packs.
     
    MrRoooo likes this.
  2. Terrails

    Terrails Well-Known Member

    Messages:
    127
    Likes Received:
    8
    Local Time:
    4:05 PM
    Here are my methods (my favorite is method 2)

    Method 1 (Make launcher run in CMD file)
    1. Open text document.
    2. put this commands in it :
    Code:
    set APPDATA=[Location]
    start /d "path" file.exe
    [Location] is where your .mineyourmind folder will go e.g. D:\Minecraft
    Where says "path" replace path with folder where is your .exe e.g. "D:\Minecraft"
    Replace file.exe with .exe file e.g. MyM-Launcher.exe
    This is how our code looks like now
    Code:
    set APPDATA=D:\Minecraft
    start /d "D:\Minecraft" MyM-Launcher.exe
    Save that text document as example.bat
    Now just run it and have fun

    Method 2 (Make launcher run in EXE file, here you can place icon to file and hide window what cmd shows)
    1. Download Advanced Bat to Exe Converter
    2. Start Advanced Bat to Exe Converter
    3. Place same code like in method 1 (place it in text box if you have @echo off in that box remove @echo off and place your code)
    Code:
    set APPDATA=D:\Minecraft
    start /d "D:\Minecraft" MyM-Launcher.exe
    4. Click File and than click Build EXE...
    5. You don't need to do this but this will hide window what cmd shows :
    Start Invisible (NO CONSOLE window)
    5. Select your icon or your icon will look like .exe icon you don't need to do this but if you wanna your custom icon select that : Select Icon...
    6. Click Build EXE and that is it
     
    Last edited: Mar 16, 2015
    Slind likes this.

Share This Page