Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Minecraftforge | 6,442 | 20 hours ago | 144 | other | Java | |||||
Modifications to the Minecraft base files to assist in compatibility between mods. New Discord: https://discord.minecraftforge.net/ | ||||||||||
Worldedit | 2,908 | 4 days ago | 162 | other | Java | |||||
🗺️ Minecraft map editor and mod | ||||||||||
Iris | 2,902 | 2 days ago | 222 | lgpl-3.0 | Java | |||||
A modern shaders mod for Minecraft compatible with existing OptiFine shader packs | ||||||||||
Create | 2,327 | 10 days ago | 2,116 | mit | Java | |||||
[Forge Mod] Building Tools and Aesthetic Technology | ||||||||||
Dynmap | 1,919 | a month ago | 86 | apache-2.0 | Java | |||||
A set of Minecraft mods that provide a real time web-based map system for various Minecraft server implementations. | ||||||||||
Catserver | 1,844 | 11 days ago | 80 | lgpl-3.0 | Java | |||||
高性能和高兼容性的1.12.2/1.16.5/1.18.2版本Forge+Bukkit+Spigot服务端 (A high performance and high compatibility 1.12.2/1.16.5/1.18.2 version Forge+Bukkit+Spigot server) | ||||||||||
Meteor Client | 1,633 | 11 hours ago | 617 | gpl-3.0 | Java | |||||
Based Minecraft utility mod. | ||||||||||
Fabric Carpet | 1,541 | 2 days ago | 292 | mit | Java | |||||
Fabric Carpet | ||||||||||
Opencomputers | 1,497 | 25 days ago | 123 | other | Scala | |||||
Home of the OpenComputers mod for Minecraft. | ||||||||||
Scriptcraft | 1,473 | 3 years ago | 72 | mit | JavaScript | |||||
Write Minecraft Plugins in JavaScript. |
Requiem is a Minecraft (Java Edition) mod aiming at removing the continuity break resulting from death, as well as adding new mechanics centered around soul dissociation and body possession.
More information is available on the Ladysnake Website: https://ladysnake.org/wiki/requiem.
Running the mod will require Quilt and Quilted Fabric API. For more information on how to use Quilt, please visit the official website. To download Quilted Fabric API, please visit the official CurseForge or Modrinth page.
If Quilt is installed on your Minecraft Java copy, you can download Requiem from CurseForge, Github Releases, or Modrinth. After that, copy the jar file obtained, as well as the Quilted Fabric API jar file in the mods folder located in you Minecraft installation or your Server's Mods folder. Please make sure to have the latest version, as we will not accept issues regarding older versions.
Once the previous steps have been completed, boot up your game, and upon your first death, Requiem will ask you whether you'd like to enable the modified death system or not through an interactive dialogue. Be careful, because after choosing, the dialogue won't be prompted a second time, and you will have to use a special item to change that.
If you wish to develop compatibility features for Requiem, binaries are available both on the Ladysnake Maven. You can get it in your workspace with just a few lines in your Gradle buildscript (build.gradle
file) :
repositories {
maven {
name = 'Ladysnake Mods'
url = 'https://maven.ladysnake.org/releases'
content {
includeGroup 'io.github.ladysnake'
includeGroupByRegex '(dev|io\\.github)\\.onyxstudios.*'
includeGroupByRegex 'dev\\.emi.*'
}
}
maven {
name = 'Nexus OSS Repository'
url = 'https://oss.sonatype.org/content/repositories/snapshots'
}
maven {
url = 'https://maven.jamieswhiteshirt.com/libs-release/'
content {
includeGroup 'com.jamieswhiteshirt'
}
}
}
dependencies {
modImplementation "io.github.ladysnake:requiem-api:${requiem_version}"
modRuntimeOnly "io.github.ladysnake:requiem-core:${requiem_version}"
modRuntimeOnly "io.github.ladysnake:requiem:${requiem_version}"
}
You can then add the mod version to your gradle.properties
file :
# Requiem mod
requiem_version = 2.x.y