MineColonies is an interactive Town building mod that allows you to create your own thriving Town within Minecraft. It depicts real-life scenarios by providing you with different craftable options to build your own Town and enhance your gaming experience. Featuring many NPC workers such as: Builders, Crafters, Farmers, Fishermen, Guards, Barracks, Miners, Smeltery, Baker, Cook/Restuarant, Deliveryman, Animal Herders and many more planned for development. As well as specialized buildings such as: Warehouse, Citizen Huts and a Townhall. Minecolonies gives you the ability to create a colony as rich and unique as every player.
IMPORTANT: Please report any issues you have, there might be some problems with the documentation! Also make sure you know EXACTLY what you're doing! It's not any of our faults if your OS crashes, becomes corrupted, etc.
The Java JDK is used to compile MineColonies
- Download and install the Java JDK 8.
- Windows. Choose OpenJDK 8 (LTS) version and HotSpot JVM, then click latest release button. After download is complete open file, accept licence agreement and in custom setup make sure that
Add to Path
andSet JAVA_HOME
is set toEntire feature will be installed on your local hard drive
. Then choose install and wait for instalation to finish. - Linux: Installation methods for certain popular flavors of Linux are listed below. If your distribution is not listed, follow the instructions specific to your package manager or install it manually here.
- Gentoo:
emerge dev-java/oracle-jdk-bin
- Archlinux:
pacman -S jdk8-openjdk
- Ubuntu/Debian:
apt-get install openjdk-8-jdk
- Fedora:
yum install java-1.8.0-openjdk
- Gentoo:
- Windows. Choose OpenJDK 8 (LTS) version and HotSpot JVM, then click latest release button. After download is complete open file, accept licence agreement and in custom setup make sure that
- Open up your command line and run
javac
. If it spews out a bunch of possible options and the usage, then you're good to go. If not, either try the steps again.
If javac
command does not work on Windows:
- Go to
Control Panel\System and Security\System
, and click onAdvanced System Settings
on the left-hand side. - Click on
Environment Variables
. - Under
System Variables
, clickNew
. - For
Variable Name
, inputJAVA_HOME
. - For
Variable Value
, input something similar toC:\Program Files\Java\jdk1.8.0_45
exactly as shown (or wherever your Java JDK installation is), and clickOK
. - Scroll down to a variable named
Path
, and double-click on it. - Append
;%JAVA_HOME%\bin
EXACTLY AS SHOWN and clickOK
. Make sure the location is correct; double-check just to make sure.
Gradle is used to execute the various build tasks when compiling MineColonies
- Download and install Gradle.
- Windows/Mac download link. You only need the binaries, but choose whatever flavor you want.
- Unzip the package and put it wherever you want, eg
C:\Gradle
.
- Unzip the package and put it wherever you want, eg
- Linux: Installation methods for certain popular flavors of Linux are listed below. If your distribution is not listed, follow the instructions specific to your package manager or install it manually here.
- Gentoo:
emerge dev-java/gradle-bin
- Archlinux: You'll have to install it from the AUR.
- Ubuntu/Debian:
apt-get install gradle
- Fedora: Install Gradle manually from its website (see above), as Fedora ships a "broken" version of Gradle. Use
yum install gradle
only if you know what you're doing.
- Gentoo:
- Windows/Mac download link. You only need the binaries, but choose whatever flavor you want.
- Windows: Set environment variables for Gradle.
- Go back to
Environment Variables
and then create a new system variable. - For
Variable Name
, inputGRADLE_HOME
. - For
Variable Value
, input something similar toC:\Gradle-3.0
exactly as shown (or wherever your Gradle installation is), and clickOk
. - Scroll down to
Path
again, and append;%GRADLE_HOME%\bin
EXACTLY AS SHOWN and clickOk
. Once again, double-check the location.
- Go back to
- Open up your command line and run
gradle
. If it says "Welcome to Gradle [version].", then you're good to go. If not, either try the steps again.
Git is used to clone MineColonies and update your local copy.
- Download and install Git here.
- Optional: Download and install a Git GUI client, such as Gitkraken, SourceTree, Github for Windows/Mac, SmartGitHg, TortoiseGit, etc. A nice list is available here.
This section assumes that you're using the command-line version of Git.
- Open up your command line.
- Navigate to a place where you want to download MineColonies source (eg
C:\Github\MineColonies\
) by executingcd [folder location]
. This location is known asbasefolder
from now on. - Execute
git clone https://github.com/Minecolonies/minecolonies.git
. This will download MineColonies' source intobasefolder
. - Right now, you should have a directory that looks something like:
basefolder
\-MineColonies
\-MineColonies' files (should have `build.gradle`)
If you decide to go with a GUI client like Gitkraken:
- Open Gitkraken
- Click
File → Clone Repo
- Select GitHub.com and choose a base folder to clone to.
- Write Minecolonies in the Repository to clone and select the one by ldtteam.
- Click Clone the repo.
- Navigate to the MineColonies folder, and run a
dir
to make sure thebuild.gradle
file is where you expect it to be. - Execute
gradlew build
. This first sets up Forge and downloads the necessary libraries to build MineColonies, be patient as this may take a while.- If you did everything right,
BUILD SUCCESSFUL
will be displayed after it finishes. - If you see
BUILD FAILED
, check the error output (it should be right aroundBUILD FAILED
), fix everything (if possible), and try again.
- If you did everything right,
- Go to
basefolder\MineColonies\build\libs
.- You should see a
.jar
file namedMineColonies-universal-null.jar
.
- You should see a
- Copy the jar into your Minecraft
mods
folder, and you are done! (~/.minecraft/mods
on Linux) - Alternatively, you can also run
./gradlew runClient
to start Minecraft with this jar.
- Right click the
build.gradle
file, or the background of the folder it's in, and selectOpen Folder as Intellij Project
. - Select auto import and make sure a valid gradle and jvm is selected.
- This will prepare some of the libraries used by Forge.
- Click
View → Tool Windows → Gradle
- In the Gradle View, expand the options to
Tasks → fg_runs
- Click the small refresh symbol in the upper left of the gradle view. This sets up Forge and downloads the necessary libraries to build MineColonies.
- Execute
genIntellijRuns
and restart intellij. - You will see a Minecraft Client and Server startup configuration in the top right, next to the green "start" button.
- Execute it with your username as a program argument to have always the same name ingame.
- If it doesn't start and throw a lot of errors, try another refresh, this often does wonders.
- If you want to produce a running jar, execute the
build
task. This will result in a runnable jar file inbasefolder\MineColonies\build\libs
.
If gradle synchronization fails make sure:
File → Project structure → Project → Project SDK
is set to your installed JDK version.File → Settings → Build, Execution, Deployment → Build Tools → Gradle → Gradle JVM
is set to your installed JDK version.
In order to get the most up-to-date builds, you'll have to periodically update your local repository.
- Open up your command line.
- Navigate to
basefolder
in the console. - Make sure you have not made any changes to the local repository, or else there might be issues with Git.
- If you have, try reverting them to the status that they were when you last updated your repository.
- Execute
git pull version/1.15
. This pulls all commits from the official repository that do not yet exist on your local repository and updates it (With Gitkraken just click the small pull arrow at the top).
- Sometimes gradle tasks fail because of missing memory, for that you can find system wide settings in the
.gradle
folder in yourHOME
directory (~/.gradle/gradle.properties
or on Windows inC:\Users\username\.gradle\gradle.properties
). - Sometimes, after a branch change if libraries can not be resolved, running another refresh in IntelliJ or the command line solves many issues.
So you found a bug in our code? Think you can make it more efficient? Want to help in general? Great!
- If you haven't already, create a Github account.
- Click the
Fork
icon located at the top-right. - Make the changes that you want to and commit them.
- If you're making changes locally, you'll have to do
git commit -a
andgit push
in your command line. (or with gitkraken stage the changes, commit them and then push them first)
- If you're making changes locally, you'll have to do
- Click
Pull Request
in the middle. - Click
Click 'new pull request' to create a pull request for this comparison
, enter your PR's title, and create a detailed description telling us what you changed. - Click
Create pull request
, and wait for feedback!
MineColonies crashes every time? Have a suggestion? Found a bug? Create an issue now!
-
Make sure your issue hasn't already been answered or fixed. Also think about whether your issue is a valid one before submitting it.
-
Go to the issues page.
-
Click
New Issue
-
Fill in the form:
Title
: Short summary of your issueDescription
: A description of what your problem is, with additional info. What have you tried to fix it etc.Assignee
: (Optional) Assign someone to the issue.Attachments
: Add thelatest.log
from%appdata%/.minecraft/logs
-
Click
Submit New Issue
, and wait for feedback!
All our versions can be found downloadable at curse:
https://minecraft.curseforge.com/projects/minecolonies
If you want to chat with the developers and join our amazing community.