All Projects → AlmuraDev → Almura

AlmuraDev / Almura

Licence: other
The official mod of the Almura Client and Server.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Almura

Worldedit
🗺️ Minecraft map editor and mod
Stars: ✭ 2,288 (+16242.86%)
Mutual labels:  minecraft, forge, sponge
Minecraftdev
Plugin for IntelliJ IDEA that gives special support for Minecraft modding projects.
Stars: ✭ 645 (+4507.14%)
Mutual labels:  minecraft, forge, sponge
Gate
A high performant & paralleled Minecraft proxy server with scalability, flexibility & excellent server version support - ready for the cloud!
Stars: ✭ 102 (+628.57%)
Mutual labels:  minecraft, forge, sponge
Gdlauncher
GDLauncher is a simple, yet powerful Minecraft custom launcher with a strong focus on the user experience
Stars: ✭ 386 (+2657.14%)
Mutual labels:  minecraft, forge
Minecolonies
Minecolonies minecraft mod
Stars: ✭ 303 (+2064.29%)
Mutual labels:  minecraft, forge
Liquidbounce
A free mixin-based injection hacked client for Minecraft using Minecraft Forge
Stars: ✭ 321 (+2192.86%)
Mutual labels:  minecraft, forge
Spongevanilla
The SpongeAPI implementation for Vanilla Minecraft.
Stars: ✭ 254 (+1714.29%)
Mutual labels:  minecraft, sponge
Viaversion
Allows the connection of newer clients to older server versions for Minecraft servers.
Stars: ✭ 463 (+3207.14%)
Mutual labels:  minecraft, sponge
Justenoughitems
Item and Recipe viewing mod for Minecraft
Stars: ✭ 418 (+2885.71%)
Mutual labels:  minecraft, forge
Mohist
Minecraft Forge Hybrid server implementing the Paper/Spigot/Bukkit API, formerly known as Thermos/Cauldron/MCPC+
Stars: ✭ 489 (+3392.86%)
Mutual labels:  minecraft, forge
Minecraftdeveloperguide
📝Minecraft developer Chinese guide,我的世界开发者中文指南
Stars: ✭ 574 (+4000%)
Mutual labels:  minecraft, sponge
Equivalent Exchange 3
Stars: ✭ 727 (+5092.86%)
Mutual labels:  minecraft, forge
Magistics
Logistical magic!
Stars: ✭ 16 (+14.29%)
Mutual labels:  minecraft, forge
Magma
Minecraft Forge Hybrid server implementing the Spigot/Bukkit API (Cauldron for 1.12)
Stars: ✭ 272 (+1842.86%)
Mutual labels:  minecraft, forge
Cc Tweaked
Just another ComputerCraft fork
Stars: ✭ 331 (+2264.29%)
Mutual labels:  minecraft, forge
Arclight
A Bukkit(1.15/1.16) server implementation on Forge using Mixin. ⚡
Stars: ✭ 262 (+1771.43%)
Mutual labels:  minecraft, forge
Velocity
The modern, next-generation Minecraft server proxy.
Stars: ✭ 446 (+3085.71%)
Mutual labels:  minecraft, forge
Craftstudioapi
The official CraftStudio API for Minecraft
Stars: ✭ 12 (-14.29%)
Mutual labels:  minecraft, forge
pax
📦 The MC modpack manager for professionals.
Stars: ✭ 83 (+492.86%)
Mutual labels:  minecraft, forge
NT-RPG
A new rpg plugin for Sponge & Spigot
Stars: ✭ 21 (+50%)
Mutual labels:  minecraft, sponge

Almura

Prerequisites

Cloning

The following steps will ensure your project is cloned properly.

  1. git clone [email protected]:AlmuraDev/Almura.git
  2. cd Almura
  3. cp scripts/pre-commit .git/hooks

Setup

Note: If you do not have Gradle installed then use ./gradlew for Unix systems or Git Bash and gradlew.bat for Windows systems in place of any 'gradle' command.

For IntelliJ

  1. Run gradle setupDecompWorkspace --refresh-dependencies
  2. Run gradle generateDatabaseClasses
  3. Make sure you have the Gradle plugin enabled (File > Settings > Plugins).
  4. Click File > Import Module and select the build.gradle file for Almura.
  5. On the import screen, uncheck Create separate module per source set

Building

Note: If you do not have Gradle installed then use ./gradlew for Unix systems or Git Bash and gradlew.bat for Windows systems in place of any 'gradle' command.

In order to build Almura you simply need to run the gradle command. You can find the compiled JAR files in ./build/libs but in most cases you'll only need 'almura-x.x-xxxx-rx.x.jar'.

Running (Manual Configuration)

Note 1: The following is aimed to help you setup run configurations for Eclipse and IntelliJ. If you do not want to be able to run Almura directly from your IDE then you can skip this.
Note 2: For more information regarding VM options or program arguments for Mixin, visit https://github.com/SpongePowered/Mixin/wiki/Mixin-Java-System-Properties

For Eclipse

  1. Go to Run > Run Configurations.
  2. Right-click Java Application and select New.
  3. Set the current project.
  4. Set the name as Almura (Client) and apply the information for Client below.
  5. Repeat step 1 through 4, then set the name as Almura (Server) and apply the information for Server below.
    5a. When launching the server for the first time, it will shutdown by itself. You will need to modify the server.properties to set onlinemode=false and modify the eula.txt to set eula=true (this means you agree to the Mojang EULA, if you do not wish to do this then you cannot run the server).

For IntelliJ

  1. Go to Run > Edit Configurations.
  2. Click the green + button and select Application.
  3. Set the name as Almura (Client) and apply the information for Client below.
  4. Repeat step 2 and set the name as Almura (Server) and apply the information for Server below.
    4a. When launching the server for the first time, it will shutdown by itself. You will need to modify the server.properties to set onlinemode=false and modify the eula.txt to set eula=true (this means you agree to the Mojang EULA, if you do not wish to do this then you cannot run the server).

Client

Property Value
Main class GradleStart
VM options -Xincgc -Xms1024M -Xmx2048M -Dfml.coreMods.load=com.almuradev.almura.AlmuraLoadingPlugin,
Program arguments --noCoreSearch
Working directory ./run (Included in project)
Module classpath Almura (IntelliJ Only)

Server

Property Value
Main class GradleStartServer
VM options -Xincgc -Xms1024M -Xmx2048M -Dfml.coreMods.load=com.almuradev.almura.AlmuraLoadingPlugin,
Program arguments --noCoreSearch
Working directory ./run (Included in project)
Module classpath Almura (IntelliJ Only)

Advanced Logging -> Program Arguments: -Dlog4j.configurationFile=/path/to/log4j2.xml

Disable Stupid Gradle Daemon: [run this in cmd.exe] (if not exist "%USERPROFILE%/.gradle" mkdir "%USERPROFILE%/.gradle") && (echo. >> "%USERPROFILE%/.gradle/gradle.properties" && echo org.gradle.daemon=false >> "%USERPROFILE%/.gradle/gradle.properties")

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].