Skip to content
Benjamin Hoffmeyer edited this page Aug 22, 2015 · 27 revisions

Minecraft not launching

There are many issues possible for this, here are some issues and solutions.

Mods are a different version

Makes sure that all the mods for the instance you are launching are for the version of Minecraft you're launching -- eg. 1.6.4 mods for Minecraft 1.6.4, 1.7.10 mods for Minecraft 1.7.10 and so on.

Putting forge/LiteLoader mods in jar mods instead of loader mods

Whether you're loading forge mods or LiteLoader mods, they all need to be added via. loader mods. Jar mods are added to the Minecraft jar, and that is a rare occurrence with most recent mods.

Graphics issues

Hybrid laptop graphics (optimus and similar)

If you get slow rendering and Minecraft using the integrated graphics card instead of the dedicated one, there are some ways to fix that:

Windows

In general, the graphics drivers look for the binary name in order to enable the dedicated GPU. Rename MultiMC.exe to Minecraft.exe. This fools them into enabling it.

The same applies to many other situations where graphics are an issue on Windows:

Rename the .exe and it might just work better.

Linux

You can use the Wrapper command option in the Java settings together with optirun or similar wrappers.

Can't log in

Minecraft login can be blocked by several issues:

You changed your account name recently

In MultiMC, remove your Mojang account and add it again.

Network blocking or Mojang servers being down

Generally, you can detect this by looking at the status icons on the lower right of the MultiMC window. Clicking them leads to The Mojang help page.. If the auth and session servers are having issues, you just have to wait. If you can access the page, but the status icons show as offline, or if both are offline, your network access might be broken or filtered. We can't help you with that.

Secure access problems

If the access to the Mojang auth servers is compromised or impossible, you will get a scary error message. Please report these as bugs, along with uploading the MultiMC log file (MultiMC-0.log).

Folders

Copy contents of x folder

There may come a time when you have many files all over, or have an ssd and want to save as much space as possible. Instead of giving you the ablility to copy over/keep updated a second folder for you, we'll walk you through how to use features already in you OS to do so.

Windows

Just like Linux, you just have to type one command,

mklink /j "c:\users\Will\Desktop\multimc\mods" c:\users\Will\.minecraft\mods

The following command makes a linked folder or symlink from .minecraft\mods to multimc\mods

Linux

The linux command is a little easier,

ln -s /home/Will/.minecraft/mods /home/Will/multimc/mods

Clone this wiki locally