Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Dockercraft | 6,300 | 2 years ago | July 12, 2022 | 18 | apache-2.0 | Lua | ||||
Docker + Minecraft = Dockercraft | ||||||||||
Cuberite | 4,536 | a day ago | 546 | other | C++ | |||||
A lightweight, fast and extensible game server for Minecraft | ||||||||||
Pocketmine Mp | 3,024 | a day ago | 218 | September 24, 2022 | 363 | lgpl-3.0 | PHP | |||
A server software for Minecraft: Bedrock Edition in PHP | ||||||||||
Blockbench | 1,906 | 10 days ago | 328 | gpl-3.0 | JavaScript | |||||
Blockbench - A low poly 3D model editor | ||||||||||
Glowstone | 1,752 | 2 months ago | 62 | other | Java | |||||
A fast, customizable and compatible open source server for Minecraft: Java Edition | ||||||||||
Essentials | 1,583 | 2 days ago | 164 | gpl-3.0 | Java | |||||
The modern Essentials suite for Spigot and Paper. | ||||||||||
Minecraftdev | 1,153 | 3 days ago | 204 | mit | Kotlin | |||||
Plugin for IntelliJ IDEA that gives special support for Minecraft modding projects. | ||||||||||
Spongeapi | 1,117 | 25 days ago | 2 | May 19, 2022 | 160 | mit | Java | |||
A Minecraft plugin API | ||||||||||
Nukkit | 1,066 | 5 days ago | 171 | gpl-3.0 | Java | |||||
Cloudburst Nukkit - Nuclear-Powered Minecraft: Bedrock Edition Server Software | ||||||||||
Dragonproxy | 996 | 2 years ago | 25 | gpl-3.0 | Java | |||||
🐲 A proxy to allow Minecraft: Bedrock clients to connect to Minecraft: Java Edition servers. |
The master branch is for the latest version of minecraft.
Building Iris is fairly simple, though you will need to setup a few things if your system has never been used for java development.
Consider supporting our development by buying Iris on spigot! We work hard to make Iris the best it can be for everyone.
JAVA_HOME
as an environment variable.
env
and press EnterNew...
JAVA_HOME
C:\Program Files\Java\jdk-17.0.1
(verify this exists after installing java don't just copy
the example text)/usr/libexec/java_home -V
and look for Java 17sudo nano ~/.zshenv
export JAVA_HOME=$(/usr/libexec/java_home)
as a new lineCTRL + X
, then Press Y
, Then ENTER
echo $JAVA_HOME
. It should print a directorygradlew setup
inside the root Iris project folder.
Otherwise, skip this step. Grab a coffee, this may take up to 5 minutes depending on your cpu & internet connection.gradlew iris
Iris/build/Iris-XXX-XXX.jar
Enjoy! Consider supporting us by buying it on spigot!gradlew setup
any time you get dependency issues with craftbukkitEveryone needs a tool-belt.
package com.volmit.iris.core.tools;
// Get IrisDataManager from a world
IrisToolbelt.access(anyWorld).getCompound().getData();
// Get Default Engine from world
IrisToolbelt.access(anyWorld).getCompound().getDefaultEngine();
// Get the engine at the given height
IrisToolbelt.access(anyWorld).getCompound().getEngineForHeight(68);
// IS THIS THING ON?
boolean yes=IrisToolbelt.isIrisWorld(world);
// GTFO for worlds (moves players to any other world, just not this one)
IrisToolbelt.evacuate(world);
IrisAccess access=IrisToolbelt.createWorld() // If you like builders...
.name("myWorld") // The world name
.dimension("terrifyinghands")
.seed(69133742) // The world seed
.headless(true) // Headless make gen go fast
.pregen(PregenTask // Define a pregen job to run
.builder()
.center(new Position2(0,0)) // REGION coords (1 region = 32x32 chunks)
.radius(4) // Radius in REGIONS. Rad of 4 means a 9x9 Region map.
.build())
.create();