2ee63ca5ff
Added a enter.
3.1 KiB
3.1 KiB
Welcome to Equivalent Exchange 3!
The Compilation part (Setup) was done mostly by Minalien, I just changed it a bit. Some credit goes to BuildCraft's README.md, which I based this README off of.
The Minecraft Forums page can be found [here] (www.minecraftforum.net/topic/1540010-equivalent-exchange-3).
Compiling Equivalent Exchange 3
IMPORTANT: This is not guaranteed to work as it has not been tested extensively (only done on Linux so far, partly on Windows).
Setup MCP
- Create an empty directory for EE3 development. This directory is referenced as
mcdev
from now on. - Download the latest version of MCP from [here] (http://mcp.ocean-labs.de/index.php/MCP_Releases) , e.g. mcp719.zip. Install MCP dependencies as listed on the website if neccessary.
- Install Apache Ant [here] (ant.apache.org.)
- Inside
mcdev
, create a directory namedmcp
and unzip the MCP ZIP file into it - To verify, check if a file name
CHANGELOG
exists inside the mcp directory. - Get a clean (unmodded!) copy of minecraft. Currently EE3 runs on 1.4.2 but that might have changed.
- From your .minecraft directory, copy the bin and the resources directory to the
jars
directory insidemcp
. - Get a clean (unmodded!) copy of minecraft_server.jar and also place it into
jars
. - Download the latest forge source for Minecraft 1.4.2 and unzip it into
mcp
so thatmcp/forge/install.sh
exists. You need at least Forge 6.0.1, best way is to get it from [here] (http://files.minecraftforge.net/): http://files.minecraftforge.net/ NOTE: 6.0.1.355 was the last version to support 1.4.2, do not get anything later than that for 1.4.2 versions of EE3! - Execute
mcdev/mcp/forge/install.sh
ormcp/forge/install.cmd
, depending on your platform. On Linux you might have tochmod +x
install.sh
before you can execute it. On some system configurations you need to executeinstall.sh
from within the forge directory whereas on others it doesn't matter. Just check the output for error messages to find out what you need to do.
Setup EE3
- Inside
mcdev
, create a directory namedsource
. Clone EE3 into this directory. - [FOR WINDOWS] Open up cmd. Type
cmd
in Run. - [FOR WINDOWS] Navigate to
mcdev\source
by executingcd [wherever your mcdev is located, just copy and paste the path in]
. - Inside
sources\Equivalent-Exchange-3
executeant build -Ddir.development=../../
. If you've done everything right, BUILD SUCCESSFUL is displayed. - Execute
ant recompile -Ddir.development=../../
. - Execute
ant reobfuscate -Ddir.development=../../
. - If you've done everything right AND the source code currently compiles, you can execute startclient.sh or startclient.bat inside the mcp directory now to start Minecraft with EE3.