mcdelta-project / mcdelta-python

MCDelta client written in Python
GNU General Public License v3.0
3 stars 3 forks source link

Find out how to install base mods #9

Closed williambl closed 8 years ago

williambl commented 8 years ago

Argh this will be hard...

MMC-translator commented 8 years ago

What do you mean by base mods?

Also, wrong account...

williambl commented 8 years ago

Things which modify minecraft.jar itself.

peterix commented 8 years ago

There are almost none. At least for current versions.

williambl commented 8 years ago

check modlist.mcf.li. There aren't many, but more than you would think.

peterix commented 8 years ago

You need to merge the zip files.

Take the minecraft jar and a list of all other zip/jar stuff you want to add: [minecraft.jar, a.jar, b.jar, c.zip, ..., z.zip]

Create an empty final zip/jar file.

  1. Take the last file in the list and add all its files to the final jar file, excluding the META-INF folder and any files that are already in the final jar.
  2. Remove the file from the list.
  3. Continue with the previous file, until there are no more in the list.
williambl commented 8 years ago

This makes me remember installing modloader, back when I thought that forge would mess up my saves (no idea why i thought that) XD

thanks for explaining how I should do it in the program