3.1 KiB
Hbm-s-Nuclear-Tech-GIT
For a 1.12 fork, check this link: https://github.com/Drillgon200/Hbm-s-Nuclear-Tech-GIT/releases
Installation Instructions
Tired of waiting until the next version comes out? Here is a tutorial on how to compile the very newest version yourself:
- Download minecraft forge 1.7.10 src
- Unpack it somewhere
- Download the source and insert it into the same folder. This will overwrite a couple of files, for example build.gradle
- Run
gradlew setupDecompWorkspaceon windows or./gradlew setupDecompWorkspaceon linux (remember: do not take the name of root in vain). Running this command on a blank forge workspace will yield errors, so it's important you insert the mod's source in step 3. The source has corrected versions of guild.gradle and the gradle wrapper, if done correctly it should run just fine. - The
build.gradlefile will reference these following files:
compile files('lib/CodeChickenCore-1.7.10-1.0.4.29-dev.jar')
compile files('lib/CodeChickenLib-1.7.10-1.1.3.140-dev.jar')
compile files('lib/NotEnoughItems-1.7.10-1.0.3.74-dev.jar')
which means you need to do one of the following things:
- Find these exact versions of the dependencies, download them and put them into a folder called
libsin your project's root folder. You can download a zip containing all files here: https://bit.ly/3fBxMq0 - Find other versions, change the
build.gradlefile to reflect this difference and fix any potential errors this could cause (unlikely but not impossible) - Remove these dependencies from
build.gradlealong with all the API code. Note that this will break NEI-integration.
- Open up the CMD in the root directory and run
gradlew buildon windows or./gradlew buildon linux - Head over to
build/libsand get the jar (named modid.jar) - Open the jar file with an archieve manager of your choice and insert the mod's asset folder into the jar's main directory
If you want to do some changes in the code yourself, start here after 6. and continue with 7. once you are done:
- Get the IDE of your choice and prepare the workspace (for eclipse, it's
gradlew eclipseor./gradlew eclipse, then use the eclipse folder as workspace directory in eclipse) - Meddle with the code, you can always test the code in the IDE (eclipse has a convenient green play button)
- Save changes, close the IDE and continue with 7. of the previous list
Installation Instructions for a non-standard Workspace
I cannot offer any help on compiling the mod in a GregTech-workspace as I never managed to get it to work myself, here's a rough guide on how it might be possible:
- Prepare the workspace
- Slap this mod's
srcinto the project's root directory - Pray
License
This software is licensed under the GNU Public License version 3. In short: This software is free, you may run the software freely, create modified versions, distribute this software and distribute modified versions, as long as the modified software too has a free software license. You win this round, Stallman. The full license can be found in the LICENSE file.