-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how do I create a minecraft mod with this? #2
Comments
found something |
Dunno why github didn't notify me for this comment, sorry! I really do need to put some ready-to-use sample projects somewhere (the
It is somewhat based off the code in a very old version of Fabric Loom. But the projects have diverged significantly since the fork point wayyy back in 2020, and I don't think the core of Voldeloom has many similarities to Fabric Loom anymore. All code relating to the Fabric modloader has been removed. So it's kind of its own thing.
It "replaces ForgeGradle" in spirit - if you want to set up a mod for an older version of the game, you can use this instead of ForgeGradle. But it is not compatible with ForgeGradle. If you have an existing ForgeGradle project, changing it to use Voldeloom is more complicated than just swapping the plugin. So it's not a "replacement" in that sense. Here's a complete buildscript {
repositories {
mavenCentral()
maven { url "https://maven.fabricmc.net" }
maven { url "https://repo.sleeping.town" }
}
dependencies {
classpath "agency.highlysuspect:voldeloom:2.3"
}
}
apply plugin: "agency.highlysuspect.voldeloom"
java.toolchain.languageVersion = JavaLanguageVersion.of(11)
compileJava.options.release.set(6)
String minecraftVersion = "1.6.4"
String forgeVersion = "1.6.4-9.11.1.1345"
dependencies {
minecraft "com.mojang:minecraft:${minecraftVersion}"
forge "net.minecraftforge:forge:${forgeVersion}:universal"
mappings "net.minecraftforge:forge:${forgeVersion}:src@zip"
} |
So for clarity, since I need to do the same thing as OP, (Im new to ancient minecraft modding) this does make a forge mod that can be loaded with fml? Right? (Also kinda new to modding, just want to attempt to port an old childhood mod) (Apologies, extremely dumb question but I just see fabric in the in some places of the project so I just want to be sure but I wanna say yes to my question) (I only know about forge not fabric, not really familiar with fabric) |
Yes, Voldeloom emits standard Forge/FML mods loadable in a completely standard Forge environment. No tricks. The codebase is originally based on Fabric Loom, but has heavily diverged at this point. It's a genetic relation, not a functional one. |
There is no normal guide for this. I want to create a mc 1.6.4 mod with it, how do I do it? Is it fabric-loom for forge? Does it replace forgegradle?
The text was updated successfully, but these errors were encountered: