Minecraft Forge ModLoader [Tutorial]

Discuss the game or visit our server!
User avatar
StarDream
Creature
Creature
Posts: 45
Joined: Tue Oct 18, 2011 6:34 pm
Age: 29

Minecraft Forge ModLoader [Tutorial]

Unread post by StarDream »

Cautions About Using Mods in Minecraft
-------

Before you decide to mod (modify) your copy of Minecraft, it is very important to understand what you are doing or you may end up messing up your copy. (If your copy of Minecraft is compromised, you can always backup your worlds and re-download Minecraft) Let me repeat that for you: If you mod Minecraft, you may break your copy of the game as well as any worlds that you play in. Because you are doing something that is wholly unsupported by Mojang, they won't be able to help you.
Due to how modding works, updating the Minecraft client will break your mods. That is, with each update of the Minecraft client, you will have to obtain updated mods and re-install them. However, the worlds you created will not be destroyed (although any mod items in your world will not be present).
Additionally, the authors of the mod make no guarantees as to whether or not the code works, much less any guarantees of support.
Nearly all mod packs have auto-installers that make adding mods to Minecraft extremely easy for the beginner Modder. You can search for mod packs on the Mods page.

Installing Mods prerequisites

Knowledge of Zipping/Unzipping files, and working with a good archive utility (such as WinRAR, 7zip, etc.).
Knowing how to submit proper bug reports.
Knowing how to actually install the mod and its prerequisites.
Knowing how to accurately read and follow instructions.
Knowing which mods conflict with each other and which do not.

You might be able to get away without knowing how to do a few of these things, but if your copy of Minecraft breaks, then you should seek help from somebody in the modding community (preferably the mod author). If you view this as a great opportunity to learn something new, then you're on the right path!

note: you can use MCPatcher to do some or all of this work for you !

How Mods Work

A file on your computer called "minecraft.jar" provides everything Minecraft needs to be able to run. For example: world generation, showing blocks, managing mobs, items, and recipes. When you add mods to Minecraft, you are taking Minecraft.jar and over-writing it with the changes needed. All of these files inside of minecraft.jar that make it run are run through a process called "obfuscation". Basically what that means is that it changes the word "recipe" to the word "bf" (for the technically minded, all class names, variable names and identifiers are turned into one or two letter nonsense names).

Further, each entity in the game (a Mob, Item, Block, etc.) has an ID so they can be described on the map. As new content is added to Minecraft, new IDs are used.

This has a few very important implications:

This is fundamentally changing the way Minecraft was meant to be played. So Mojang will not be able to help you in any way, and are not responsible for crashes, data loss, etc.
Some mods might claim to do something like add a cute puppy to your world, but could in fact have been authored with a malicious intent such as stealing your Minecraft username/password, or install a keylogger. This is only a concern if...
The mod that you download contains an executable and you run it.
The mod that you download informs you that you should modify the Minecraft launcher

(Minecraft.jar generally in the main application directory; not the 'minecraft.jar' described below. If the mod that you wish to install involves neither of these actions then you should feel quite secure. If not, a good measure of safety is to only install very popular mods. Risugami created the Modloader and other great, safe, and popular mods; and the new version made modding much more safe. Read comments on mod posts before downloading and installing)

When Minecraft is updated, all mods need to be re-updated by their authors and sometimes need to be re-downloaded and placed into the folder, you may also need to download the latest version of mod loader, because Mojang obfuscates the source of the mod when minecraft updates. If a mod uses an ID number that Mojang chooses to use in the update, this will cause further issues, and your world will look weird, or potentially be completely broken and unusable. Mod authors do this of their own free will, and it can take weeks for them to update. However, this doesn't mean you should harass the author about it.
If two mods do similar things, they will likely be incompatible, because they both will try to change the "bf" (or "recipe") file. (This can be fixed, nowadays mods also come with a properties file to change block and item ID's to fix conflicts.)
You may be adding new entities to your worlds, so if you ever have to remove the mods (say because of a Minecraft update), that world will no longer be compatible.

Downloading Mods

The best place for a list to download mods is on the Wiki's mods page. It is a reliable place to find mods and it is updated frequently. Alternatively, mods can be found on the Minecraft Forum's Mods section. Note that this section has in excess of almost 600 pages so it can be tedious to find a mod that you're looking for or good mods. Wiki's mods page=http://minecraft.gamepedia.com/Mods#Client_Mods Minecraft Forum's Mods section=http://www.minecraftforum.net/forum/51-minecraft-mods/

If getting mods that are copies of big mods, such as a TooManyItems copy, they might have malware in them, so it is best to get the mod you want from the original topic. If any of the files you download are not class, png, or any audio files, or folders with those items, and are not an installer, DO NOT OPEN THEM. Make sure to run the zip file or folder through your computer's antivirus program before putting the mod into your jar.

Making Backups

If you simply want to test a mod without any risk, simply backup .minecraft in its entirety. Restoring it will revert everything to a pre-modded state (including your worlds).

If you are going to mod in a more persistent and complex fashion then you should keep the following recommendations in mind:

Back up your worlds in .minecraft/saves
If you have had previous mods installed, back up the minecraft.jar too, so as not accidentally uninstall mods.
If you wish to potentially keep your stats and achievements safe, backup the directory .minecraft/stats
Do not put custom mod only items in chests if you wish to access that world again from an unmodified version of Minecraft. It is possible that if you do so, when you remove the mod and then try to open or smash the chest, Minecraft might crash.

Backing up your worlds should be done every time you install a new mod.

ModLoader, Spawnlist and friends

There are many mods that absolutely require other mods to work, because they use some of the commands these other mods give. These are also known as utility mods. These mods include ModLoader (for adding mods in general), and Minecraft Forge, which is a more advanced version of modloader. These mods that are required by some mods will need to be installed with the mod before Minecraft is run. Without them, the mod will not work and can even lead to Minecraft crashing.

Mod authors may give a configuration file to change item ID's. Find the conflicting ID, and change it. Just remember that when an update for minecraft or for the mod comes out, you must use the same item ID's, or suffer the crashes. Here is a video tutorial showing you how to install Forge Mod Loader for Minecraft:
[yt]1-yLJH-VmcE[/yt]

Dealing with your first crash crash=http://minecraft.gamepedia.com/Crash

Running minecraft in command line mode to get a stack trace.
Posting this stack trace as an error report on the mod authors website/forum/thread.
If you cannot fix the crashing, refer to the next section to restore your Minecraft and worlds.
Just restart minecraft and then it is gone.

Deleting Mods, fixing crashes, and restoring Minecraft

There are 3 ways to delete a mod.

1. (only if mod is installed this way) Go into the mods folder in the .minecraft folder and remove the mod from the folder. (Later versions of Modloader only)
2. Restore your version of Minecraft, making sure to keep your worlds.
3. Force update. You can do this by clicking the button above 'login'.

To restore Minecraft, go to the AppData folder. Go into Roaming. Move your .minecraft folder onto the desktop. (or wherever you wish) Open the Minecraft Launcher, making sure your username and password are correct and log in. The Minecraft Launcher will then download a new, fresh .minecraft folder into the Roaming folder. Once it is done, open your modded .minecraft folder. Go into the Saves folder. Do the same for the fresh, no mods .minecraft folder. Take your worlds from the modded .minecraft folder and put them into the saves folder in the fresh .minecraft folder. Your worlds should be fine, but any mod items in your world will disappear.

To fix a crash, consult the following problem solving list:
- Did you delete the META-INF folder in minecraft.jar? http://minecraft.gamepedia.com/Minecraft.jar
- Forgot ModLoader?
- Do your mods have conflicting item or block IDs? If so, most mods have a properties file to change the block and item IDs.
- Look in modloader.txt to see what block ID(s) are conflicted.
- Is the mod made for your current version of Minecraft?
- Did you install any/all dependencies for the mod? For example, TurboModelThingy is required for the Planes Mod to work, and ModLoaderMP is required with Modloader for SDK's Guns Mod.
- Do you have the right version of Modloader?
- Do you have the right version of the mod?
- Are you SURE you installed the mod correctly? (consult any README file in the mod)
There are also utilities to restore the game automatically such as BlackScreenFix http://dl.dropbox.com/u/62819837/BlackScreenFix.exe

How to effectively get help

Delete the META-INF folder.
Check to make sure there are no conflicting mods.
If using a Modloader mod, make sure the correct version of Modloader is installed.
Check the version of your mod.
Search a YouTube tutorial for the mod you are trying to install (make sure you watch a video with the correct OS and version of the mod).

-------
How to Install Mods
-------

Installation for the old launcher

Windows ME/95/98/XP:
1. Click start.
2. Click Run....
3. Type %appdata%/.minecraft/bin
4. Open minecraft.jar (It may appear only as minecraft).
5. Open the folder using an archive software (the most popular are 7zip and WinRAR). To do this, right-click minecraft.jar and hover to the Open With menu.
6. Delete the META-INF folder
7. Copy the class files into this folder. Exit the folder once you have copied the class files.
8. Certain mods will require you to copy files into other directories. Examples include:
- Resources folder (found in the main .minecraft directory)
- Config folder (found in main .minecraft directory)
- The .minecraft folder
Follow the instructions on your download for clarification on where to copy files to.

Windows Vista/7:
Method 1:
1. Click the Start Icon.
2. Go to C:/Users/(username)/Appdata/roaming/.minecraft
3. Open bin and you will see minecraft.jar (It may appear only as minecraft).
4. Open the folder using an archive software (the most popular are 7zip and WinRAR). To do this, right-click on minecraft.jar and hover to the Open With menu.
5. Copy the class files into this folder. Exit the folder once you have copied the class files.
6. Certain mods will require you to copy files into other directories. Examples include:

- Resources folder (found in the main .minecraft directory)
- Config folder (found in main .minecraft directory)
- The .minecraft folder
Follow the instructions on your download for clarification on where to copy files to.
Linux:
You will find minecraft.jar located in ~/.minecraft/bin/. From Nautilus (or most other file browsers), press Ctrl+H to see hidden folders the navigate to .minecraft. If in the console, type, ls -a ~/ and you will find the .minecraft directory. Navigate to the bin folder. Open the minecraft jar using archive manager or similar. Extract the mods that you want to put in the jar from their zip or rar. Close the window for archive manager. Start playing!

Mac:

This is a way to install mods using the terminal
1. Go to Applications > Utilities and open terminal.
2. Type in the following, line by line:
cd ~
mkdir mctmp
cd mctmp
jar xf ~/Library/Application\ Support/minecraft/bin/minecraft.jar
3. Outside of terminal, copy all the files and folders into the mctmp directory.
4. Back inside terminal, type in the following:
rm META-INF/MOJANG_C.*
jar uf ~/Library/Application\ Support/minecraft/bin/minecraft.jar ./
cd ..
rm -rf mctmp

Any OS:

On most operating systems you can select the texture packs button on minecraft's main menu which will open the minecraft folder. Click 'up' from there and you will be in the .minecraft directory.

Installation for the new launcher

1. Open the new launcher and make sure the version of Minecraft the mod requires is already installed. launcher=http://minecraft.gamepedia.com/Minecraft_launcher
2. Click "Edit Profile" in the launcher, then open the game directory.
3. Go into the subfolder "versions".
4. Rename the folder for the version you require to something else. In this example, rename "1.6.4" to "1.6.4_Modded".
5. Open the 1.6.4_Modded folder.
6. Rename "1.6.4.jar" to "1.6.4_Modded.jar".
7. Rename "1.6.4.json" to "1.6.4_Modded.json".
8. Open "1.6.4_Modded.json" with a text editor and replace "id":"1.6.4" with "id":"1.6.4_Modded", save the file and close it.
9. Open the class files from the mod with an archiver such as WinRAR or 7-Zip and copy-paste the files into 1.6.4_Modded.jar. Do not close the archiver yet.
10. Delete META-INF and close the archiver.
11. Start the new launcher.
12. Click "Edit Profile"
13. In "Use Version", select "1.6.4_Modded".
14. Click Save Profile.
15. Login and play as normal.

-------
Installing your second Mod, testing for compatibility.
-------

Open your "minecraft.jar" folder (See above) with an archiving utility such as WinRAR or 7-Zip, and drag the mod files from the folder you downloaded, to the minecraft.jar folder. Most mods require the folder "META-INF" inside of minecraft.jar be removed before the mod can work.

Dealing with crashes

Your mod may be conflicting with block or item IDs. Check the place you got the mod to see if anyone else is having the same errors, and see if there is a solution.
You may have forgotten to delete your "META-INF" folder. Most mods require that this folder be removed before loading the mod will work.
Risugami's Modloader and other mods such as Audio Mod will really help if the mods keep crashing(or if minecraft is muted without your own will)

-------
Automatic installers
-------

Several programs have been made that automatically install mods, eliminating the need to manually copy files into minecraft.jar . Some of these programs, such as MCManager and MCPatcher, can be found at Programs and editors/Modding. Programs and editors/Modding=http://minecraft.gamepedia.com/Programs ... rs/Modding

-------
Video Tutorials
-------

Click here for a general guide on how to install Minecraft mods on Windows & Mac OS X. Click here=http://www.youtube.com/watch?v=3TW3jsnR41g


Forge ModLoader here: http://files.minecraftforge.net/


User avatar
emd
Admin
Admin
Posts: 619
Joined: Sun Dec 09, 2012 6:21 am

Re: Minecraft Forge ModLoader [Tutorial]

Unread post by emd »

Very good tutorial.
Spore Modding Tools:
[list]
[*] SporeModder FX
[*] SporeModder Blender Addons
[*] Spore ModAPI SDK[/list]
Post Reply Previous topicNext topic

Return to “Minecraft”