Better Animals Plus is a Minecraft mod created by Cybercat5555 and its_meow. It adds not only animals but a variety of content, from blocks to armor. Better Animals Plus seeks to bring new life and creatures to your worlds, all with a unique flair and aesthetic compared to other mods of the same category.
Visit our website for more information.
For planned features and development, join our Discord or check out our Trello.
- Download the relevant Minecraft Forge installer for your desired Minecraft version.
- Download the latest mod version for your desired Minecraft version (1.12.2-x, 1.14.4-x, etc.)
- Run the downloaded Minecraft Forge installer.
- Select
Install client
(if not already selected). - Select your
.minecraft
folder if it is not the default one. - Press OK.
- Wait for Forge to finish installing.
- Navigate to the selected
.minecraft
folder in your file explorer or terminal. On Windows, press WinKey+R and type in the box%appdata%/.minecraft
and press OK. - If there is not a
mods
folder, create one. - Place the downloaded mod version in the
mods
folder. - Open the Minecraft Launcher.
- Find the automatically created
forge
profile. (Menu to the left of play button)- If there is not one, go to Installations.
- Press
New
. - Name your new profile.
- Under
Version
, select the newly installed Forge (likely near the bottomrelease x.x.x-forgex.x.x-x.x.x
) - Press
Create
- Select the profile in
Play
.
- Press play!
Define betteranimalsplus_version
in gradle.properties
, or hardcode the version instead.
Only versions 9.0.1 and above are available on maven.
repositories {
maven {
url = "https://maven.itsmeow.dev/"
}
}
dependencies {
// ForgeGradle 3 (1.13+)
compileOnly fg.deobf("dev.itsmeow.betteranimalsplus:betteranimalsplus:${project.betteranimalsplus_version}")
// ForgeGradle 2.x (1.12)
deobfCompile "dev.itsmeow.betteranimalsplus:betteranimalsplus:${project.betteranimalsplus_version}"
}
- Clone the repository or download it as a zip and extract it to a folder
- Navigate to the folder using command prompt, powershell, or a terminal via
cd (destination folder)
- On command prompt:
gradlew build
. On a terminal or powershell:./gradlew build
. On linux distributions you may need to executesudo chmod 777 gradlew
in order to grant execution permissions ongradlew
. - Wait for the build to complete
- Outputs are placed in
build/libs
. Use the non sources jar and place it in your mods folder.