A female gender mod created for Minecraft

Overview

Mod Banner

Wildfire's Female Gender Mod

Description

The mod's primary purpose is to add breasts to your Minecraft player to give it a more unique appearance than the generic model, It works on client-side without issues but if you wish to add syncing support then this mod must be present on the server aswell.

Default Controls

G - Open Wildfire's Gender Menu

License

Wildfire's Female Gender Mod is licensed under GNU GPLv3, a free and open-source license. For more information, please see the license file.

Comments
  • Port for Fabric 1.19

    Port for Fabric 1.19

    Let me know if you want anything changed specifically, Just made enough changes to get it working on Fabric 1.19 without loosing any functionality. Bumped version to 2.9.2 from 2.9.1 as it's technically an update.

    opened by IzzyBizzy45 10
  • Add an API to allow mods to adjust breast behavior when armor is worn

    Add an API to allow mods to adjust breast behavior when armor is worn

    Exposed an API to allow mods to tweak various settings when their armor is being worn. See IGenderArmor javadocs for details

    Changes:

    • Made breathing take armor's physics resistance into account
    • Made breast bounce intensity take armor's physics resistance into account

    Additionally this PR also does a little minor cleanup to GenderLayer:

    • Inlining one small method
    • Removing a method I forgot to remove previously when I inlined it.
    • Moving the armor check for breathingAnimation to before any calculation of it is done (to avoid having to calculate that stuff) and also making it so that the check for being able to breathe under water using mojang's util method to check effects to avoid having to update it if they add more and also making it so that if the player's head is in a bubble column it counts as them being able to breathe (as that increases a player's breath)
    • Removing not instanceof ElytraItem check as a class cannot be both an instanceof ArmorItem and an instanceof ElytraItem
    • Fixed rendering that I accidentally broke in a previous PR when batching things in relation to rendering of the left breast when it can actually be seen under armor
    opened by pupnewfster 9
  • Rare concurrency crash due to playing sounds

    Rare concurrency crash due to playing sounds

    Sometimes the game crash when getting hurt with female voice on due to ConcurrentModificationException in the subtitle renderer if subtitles are on or the sound system otherwise.

    How to reproduce

    Due to being concurrency issue, this crash isn't reliably reproducible, but with some luck (or misfortune) testing it is straightforward: suffocate in single player with a stack full of normal golden apples (enchanted gapples can't be used) and eat periodically. The crash should happen within under 100 hurts.

    Some stack traces

    The cause wasn't obvious from the crashes, but I concluded this mod caused it after the crash consistently happen when getting hurt. Afterwards, testing it isolated from other mods pretty much confirmed it.

    • subtitle on
    Time: 7/17/22, 7:27 AM
    Description: Unexpected error
    
    java.util.ConcurrentModificationException
    	at Not Enough Crashes deobfuscated stack trace.(1.19+build.4)
    	at java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1013)
    	at java.util.ArrayList$Itr.next(ArrayList.java:967)
    	at net.minecraft.client.gui.hud.SubtitlesHud.render(SubtitlesHud:64)
    	at net.minecraft.client.gui.hud.InGameHud.render(InGameHud:371)
    	at net.minecraft.client.render.GameRenderer.render(GameRenderer:862)
    	at net.minecraft.client.MinecraftClient.render(MinecraftClient:1143)
    	at net.minecraft.client.MinecraftClient.run(MinecraftClient:734)
    	at net.minecraft.client.main.Main.main(Main:237)
    	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
    	at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    	at java.lang.reflect.Method.invoke(Method.java:568)
    	at org.quiltmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:423)
    	at org.quiltmc.loader.impl.launch.knot.Knot.launch(Knot.java:76)
    	at org.quiltmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:24)
    	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
    	at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    	at java.lang.reflect.Method.invoke(Method.java:568)
    	at org.multimc.impl.OneSixLauncher.invokeMain(OneSixLauncher.java:104)
    	at org.multimc.impl.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:175)
    	at org.multimc.impl.OneSixLauncher.launch(OneSixLauncher.java:185)
    	at org.multimc.EntryPoint.listen(EntryPoint.java:127)
    	at org.multimc.EntryPoint.main(EntryPoint.java:57)
    
    • subtitle off
    Time: 7/17/22, 11:02 AM
    Description: Unexpected error
    
    java.util.ConcurrentModificationException
    	at Not Enough Crashes deobfuscated stack trace.(1.19+build.4)
    	at java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1013)
    	at java.util.ArrayList$Itr.next(ArrayList.java:967)
    	at net.minecraft.client.sound.SoundSystem.tick(SoundSystem:250)
    	at net.minecraft.client.sound.SoundSystem.tick(SoundSystem:238)
    	at net.minecraft.client.sound.SoundManager.tick(SoundManager:249)
    	at net.minecraft.client.MinecraftClient.tick(MinecraftClient:1823)
    	at net.minecraft.client.MinecraftClient.render(MinecraftClient:1101)
    	at net.minecraft.client.MinecraftClient.run(MinecraftClient:734)
    	at net.minecraft.client.main.Main.main(Main:237)
    	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
    	at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    	at java.lang.reflect.Method.invoke(Method.java:568)
    	at org.quiltmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:423)
    	at org.quiltmc.loader.impl.launch.knot.Knot.launch(Knot.java:76)
    	at org.quiltmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:24)
    	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
    	at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    	at java.lang.reflect.Method.invoke(Method.java:568)
    	at org.multimc.impl.OneSixLauncher.invokeMain(OneSixLauncher.java:104)
    	at org.multimc.impl.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:175)
    	at org.multimc.impl.OneSixLauncher.launch(OneSixLauncher.java:185)
    	at org.multimc.EntryPoint.listen(EntryPoint.java:127)
    	at org.multimc.EntryPoint.main(EntryPoint.java:57)
    
    opened by spiralhalo 6
  • 1.19.2 Crash on Female Hurt Sound

    1.19.2 Crash on Female Hurt Sound

    Was making a new modpack and decided to throw hands with a spider. Here's the code bit: I am playing with other mods, so this may just be a compat issue.

    [21:53:18] [Netty Local Client IO #0/ERROR]: Encountered exception while handling in channel with name "wildfire_gender:hurt" java.lang.NoSuchMethodError: 'net.minecraft.class_1297 net.minecraft.class_1657.method_44329()' at Not Enough Crashes deobfuscated stack trace.(1.19.2+build.28) ~[?:?] at com.wildfire.main.WildfireEventHandler.lambda$registerClientEvents$2(WildfireEventHandler.java:131) ~[Female-Gender-Mod-fabric-1.19-3.0.0.jar:?] at net.fabricmc.fabric.impl.networking.client.ClientPlayNetworkAddon.receive(ClientPlayNetworkAddon.java:97) ~[fabric-networking-api-v1-1.2.5+c6af733c90-5612b0fd8966152f.jar:?] at net.fabricmc.fabric.impl.networking.client.ClientPlayNetworkAddon.receive(ClientPlayNetworkAddon.java:39) ~[fabric-networking-api-v1-1.2.5+c6af733c90-5612b0fd8966152f.jar:?] at net.fabricmc.fabric.impl.networking.AbstractChanneledNetworkAddon.handle(AbstractChanneledNetworkAddon.java:101) ~[fabric-networking-api-v1-1.2.5+c6af733c90-5612b0fd8966152f.jar:?] at net.fabricmc.fabric.impl.networking.client.ClientPlayNetworkAddon.handle(ClientPlayNetworkAddon.java:89) ~[fabric-networking-api-v1-1.2.5+c6af733c90-5612b0fd8966152f.jar:?] at net.minecraft.client.network.ClientPlayNetworkHandler.handler$bnj000$handleCustomPayload(ClientPlayNetworkHandler:2522) ~[?:?] at net.minecraft.client.network.ClientPlayNetworkHandler.onCustomPayload(ClientPlayNetworkHandler) ~[?:?] at net.minecraft.network.packet.s2c.play.CustomPayloadS2CPacket.apply(CustomPayloadS2CPacket:60) ~[?:?] at net.minecraft.network.packet.s2c.play.CustomPayloadS2CPacket.apply(CustomPayloadS2CPacket:8) ~[?:?] at net.minecraft.network.ClientConnection.handlePacket(ClientConnection:167) ~[?:?] at net.minecraft.network.ClientConnection.channelRead0(ClientConnection:152) ~[?:?] at net.minecraft.network.ClientConnection.channelRead0(ClientConnection:50) ~[?:?] at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:99) [netty-transport-4.1.77.Final.jar:?] at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) [netty-transport-4.1.77.Final.jar:?] at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) [netty-transport-4.1.77.Final.jar:?] at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357) [netty-transport-4.1.77.Final.jar:?] at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410) [netty-transport-4.1.77.Final.jar:?] at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379) [netty-transport-4.1.77.Final.jar:?] at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365) [netty-transport-4.1.77.Final.jar:?] at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919) [netty-transport-4.1.77.Final.jar:?] at io.netty.channel.local.LocalChannel.readInbound(LocalChannel.java:299) [netty-transport-4.1.77.Final.jar:?] at io.netty.channel.local.LocalChannel.finishPeerRead0(LocalChannel.java:445) [netty-transport-4.1.77.Final.jar:?] at io.netty.channel.local.LocalChannel.access$400(LocalChannel.java:50) [netty-transport-4.1.77.Final.jar:?] at io.netty.channel.local.LocalChannel$5.run(LocalChannel.java:403) [netty-transport-4.1.77.Final.jar:?] at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) [netty-common-4.1.77.Final.jar:?] at io.netty.channel.DefaultEventLoop.run(DefaultEventLoop.java:54) [netty-transport-4.1.77.Final.jar:?] at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:995) [netty-common-4.1.77.Final.jar:?] at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) [netty-common-4.1.77.Final.jar:?] at java.lang.Thread.run(Thread.java:833) [?:?] [21:53:19] [Server thread/INFO]: Aojae lost connection: Internal Exception: java.nio.channels.ClosedChannelException

    opened by AzureMonument 5
  • [1.18.2] Crash when interacting with Immersive Engineering tanks

    [1.18.2] Crash when interacting with Immersive Engineering tanks

    Forge: 40.1.31 Wildfire: 2.9 Immersive Engineering: 8.0.1-147

    Crash log: https://gist.github.com/Shedao-Shai/67a14ce26027bedbfec54b18ee251a95

    What happened: Filling a bucket from an Immersive Engineering tank causes a crash and wildfire is mentioned in the crash log, leading me to believe that wildfire is having an odd interaction. I believe this is originating from a sound event somehow

    opened by Shedao-Shai 5
  • Suggestion to use

    Suggestion to use "less gendered" terminology in-game.

    While it's clear the intent of this mod is to allow individuals to better express themselves, I noticed the usage of "Female" & "Male" terms being used over somewhat "less gendered" terms like "Fem" & "Masc" (or potentially other more suitable terms).

    This might cause discomfort for individuals who identify in other ways, or not at all. (Eg: Non-binary), especially considering the "default gender" in-game is set to "Male". & is also something that's not very apparent in modpacks.

    opened by Lylythii 5
  • German (forge only) translation.

    German (forge only) translation.

    German translation. I skimmed the fabric one and noticed a bit of online translator use. I have no opinion on it but this translation was based on grammatical books and german literature I had laying around.

    opened by 3x1t-5tyl3 4
  • how to fix this problem?it just crash after i open the game

    how to fix this problem?it just crash after i open the game

    Mod resolution encountered an incompatible mod set! A potential solution has been determined: Install fabric, version 0.47.9 or later. Unmet dependency listing:

    Mod 'Wildfire's Female Gender
    Mod' (wildfire_gender) 1.19-3.0.0 requires version 0.47.9 or later of fabric, which is missing!
    opened by MyD1Man 3
  • Sliders not saving or adjusting properly

    Sliders not saving or adjusting properly

    Hey, I saw this issue get brought up before but couldn't find the fix anywhere or the version that was talked about. This is on forge version 40.1.0.

    The issue is that the sliders are not adjusting values as they should, nor are they saving values correctly either. This could be an issue with one of the other mods within the pack I'm running but I don't think any of them really mess with player model besides adjusting the size of the model.

    opened by InkyLily 3
  • Character settings configuration is frozen in-game.

    Character settings configuration is frozen in-game.

    When interacting with the buttons via character settings in-game; the client will not pick up upon it except the config will still apply as it is meant to, The appearance settings however do sync with the config properly as it was resolved in the config-fix commit.

    opened by Kichura 3
  • Initial Port of Forge version to Fabric 1.18.2

    Initial Port of Forge version to Fabric 1.18.2

    This port is incomplete, there are still some stuff that I need to fix before I make the update live.

    • PacketHurt stuff --- check to see if I can do what Forge is doing for female hurt sounds.
    • Fix inconsistient indents/typos.
    • Check to make everything is working properly.
    opened by WildfireRomeo 3
  • Breast position

    Breast position

    Add compatibility for mods that can change the size of the body and allows the player to lay on its back. So when you lay on your back that the breasts do not disappear into the body and the same for when the player grows as for when the player becomes small they will hang in the air.

    So you probably have to check the body angle and body size and put the breasts on a fixed point of the body and make them grow depending on the body size.

    I am not sure if the breast grows with the body, it is something that i thought it won't. as for the laying part, i saw in a roleplay server that when i used a lay command that it did not showed the breast.

    getWhiteOverlayProgress is not being applied to the breasts

    opened by JesseHelmes 0
  • Error on version 1.19.3, while starting the game

    Error on version 1.19.3, while starting the game

    After updating to version 1.19.3, it started giving an error. Perhaps this is due to changing the positions/names of the necessary classes. The same vec3f changed the position of the class and its variables.

    Minecraft: 1.19.3 Fabric: 0.14.11 Fabric API: 0.68.1

    ---- Minecraft Crash Report ----
    // Why did you do that?
    
    Time: 2022-12-12 20:48:43
    Description: Initializing game
    
    java.lang.RuntimeException: Could not execute entrypoint stage 'client' due to errors, provided by 'wildfire_gender'!
    	at net.fabricmc.loader.impl.entrypoint.EntrypointUtils.lambda$invoke0$0(EntrypointUtils.java:51)
    	at net.fabricmc.loader.impl.util.ExceptionUtil.gatherExceptions(ExceptionUtil.java:33)
    	at net.fabricmc.loader.impl.entrypoint.EntrypointUtils.invoke0(EntrypointUtils.java:49)
    	at net.fabricmc.loader.impl.entrypoint.EntrypointUtils.invoke(EntrypointUtils.java:35)
    	at net.fabricmc.loader.impl.game.minecraft.Hooks.startClient(Hooks.java:53)
    	at net.minecraft.class_310.<init>(class_310.java:465)
    	at net.minecraft.client.main.Main.method_44604(Main.java:205)
    	at net.minecraft.client.main.Main.main(Main.java:51)
    	at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:461)
    	at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74)
    	at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23)
    	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
    	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    	at java.base/java.lang.reflect.Method.invoke(Method.java:568)
    	at org.prismlauncher.impl.OneSixLauncher.invokeMain(OneSixLauncher.java:104)
    	at org.prismlauncher.impl.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:176)
    	at org.prismlauncher.impl.OneSixLauncher.launch(OneSixLauncher.java:186)
    	at org.prismlauncher.EntryPoint.listen(EntryPoint.java:144)
    	at org.prismlauncher.EntryPoint.main(EntryPoint.java:74)
    Caused by: java.lang.NoSuchMethodError: 'void net.minecraft.class_3414.<init>(net.minecraft.class_2960)'
    	at com.wildfire.main.WildfireSounds.<clinit>(WildfireSounds.java:27)
    	at com.wildfire.main.WildfireGender.onInitializeClient(WildfireGender.java:47)
    	at net.fabricmc.loader.impl.entrypoint.EntrypointUtils.invoke0(EntrypointUtils.java:47)
    	... 17 more
    
    
    A detailed walkthrough of the error, its code path and all known details is as follows:
    ---------------------------------------------------------------------------------------
    
    -- Head --
    Thread: Render thread
    Stacktrace:
    	at net.fabricmc.loader.impl.entrypoint.EntrypointUtils.lambda$invoke0$0(EntrypointUtils.java:51)
    	at net.fabricmc.loader.impl.util.ExceptionUtil.gatherExceptions(ExceptionUtil.java:33)
    	at net.fabricmc.loader.impl.entrypoint.EntrypointUtils.invoke0(EntrypointUtils.java:49)
    	at net.fabricmc.loader.impl.entrypoint.EntrypointUtils.invoke(EntrypointUtils.java:35)
    	at net.fabricmc.loader.impl.game.minecraft.Hooks.startClient(Hooks.java:53)
    	at net.minecraft.class_310.<init>(class_310.java:465)
    
    opened by simply-kel 1
  • Lag Spikes and Log Spam

    Lag Spikes and Log Spam

    So, using this on a modded fabric server with multiple armor types. I have seen that there's an error with missing textures that's been reported, however this is a different types of error. If someone has armor equipped that has multiple layers, my minecraft log is spammed with a message that contains "net.minecraft.class_151: Non [a-z0-9_.-] character in namespace of location:" I can provide the complete mod list if necessary, but here are the pastebins for the errors that repeat with different armor sets. https://pastebin.com/pD9tMrNz - Quantum armor from TechReborn https://pastebin.com/vHhEiu8U - Netherite-Diamond armor from Advanced Netherite

    Fabric version: 0.14.10 MC version: 1.19.2 Mod version: 3.0.1

    Extra info: I can wear armor myself and not get the error except in F5 mode. It doesn't matter what settings the person has, as long as the textures from the GenderMod (the breasts obviously) are rendered (>0% on sliders and actually toggled). I am using MultiMC launcher, as referenced in the logs. GPU, CPU, and RAM memory are seemingly unaffected. A similar issue is https://pastebin.com/3dqDN0FT - Jet Suit from Ad Astra! but it doesn't seem to cause random lag spikes and leads to the missing texture (pink material) bug.

    opened by DocWhoSonicDrive 0
  • Fabric 1.18.2 2.9.1 version missing from curseforge

    Fabric 1.18.2 2.9.1 version missing from curseforge

    I was reading the issue thread for cosmetic armor and I found the link to the supposed 2.9.1 version that fixed the issue, but it appears the page does not exist anymore. Is there anyway I can get a link to the download? Thank you for your time and hard work! 💗

    opened by starlesskye 0
  • female hurt sound v3.0.1 not working

    female hurt sound v3.0.1 not working

    on my first time the sound worked, after next time i started the game it wont work anymore, i even reinstalled the mod. nothing happend, i gonna miss the sound, it was perfect :)

    opened by KominoStyle 2
Releases(v2.9)
Exeter client. A client created by Friendly, for Minecraft version 1.8

Exeter client. A client created by Friendly, for Minecraft version 1.8. It has been released or leaked on that version.

null 25 Dec 31, 2022
An elegant Minecraft mod template for the Fabric mod loader

Fabric Example Mod Lorem ipsum dolor sit amet Example is a Minecraft mod that lorem ipsum dolor sit amet. Ut mi lectus, egestas a justo nec, hendrerit

Axieum 24 Dec 25, 2022
Addon to the Minecraft Forge/Fabric mod InvMove that adds mod compatibilities

Addon to the Minecraft Forge/Fabric mod InvMove that adds mod compatibilities

David M. 3 Oct 21, 2022
Minecraft Utility Mod for the latest release of Minecraft developed by Cypphi.

Minecraft Utility Mod for the latest release of Minecraft developed by Cypphi.

Haze 18 Jan 1, 2023
🚀Small java eventing library created to developer familiar with Bukkit,Nukkit and PowerNukkit...

FestivalKit ???? Small event library for developers familiar with Bukkit,PowerNukkit and Nukkit ???? Pequena libraria de eventos para desenvolvedores

Rick M. 2 Jan 2, 2022
Othello PvP (2-Player) Game Application created in Java using Swing and AWT, for playing the Othello game

Othello PvP (2-Player) Game Application created in Java using Swing and AWT, for playing the Othello game, a simple game that played on an 8 by 8 checkered board with 64 double-sided black and white discs. The game is easy to learn, but it takes time to master and develop winning strategies.

Soumyadeep Pal 1 Feb 28, 2022
Kingdoms Wars - a turn-based strategy game created with Java.

Kingdoms Wars is a turn-based strategy game created with Java. The game is loosely based on the Punic Wars.

Sharvai Patil 4 Feb 7, 2022
Makes fire created by natural lightning cosmetic, meaning no blocks are destroyed from bad weather

Lightning Podoboo Makes fire created by natural lightning cosmetic, meaning no blocks are destroyed from bad weather. Keep the doFireTick gamerule ena

Lilly Rose Berner 10 Dec 15, 2022
Kasino a game created without any perspective

Kasino What is Kasino? Kasino is a game created without any perspective. How far along are you? Kasino only has basic elements like ~multiplayer and o

Gustavo Girardon 5 Aug 3, 2022
A Java Game Engine created in Java with LWJGL!

?? Suffler Engine Suffler Game Engine is an engine created in java using OpenGL to Graphics. Currently being developed at Eclipse, and Visual Studio C

Suffler Engine 2 Jul 23, 2022
Nuclear-Mines-Mod - A mod adding radiation-related items to Mindustry (radioactive materials, new guns, etc.)

Nuclear Mines (VERY EARLY BUILD) A Mindustry mod adding more radiation-based items to the game. THIS IS A VERY EARLY VERSION. NOT EVERYTHING IS FINISH

null 6 Sep 3, 2022
The Minecraft Mod API

Bukkit A Minecraft Server API. Website: http://bukkit.org Bugs/Suggestions: http://leaky.bukkit.org Contributing Guidelines: CONTRIBUTING.md Compilati

The Bukkit Project 2.2k Dec 31, 2022
🗺️ Minecraft map editor and mod

A Minecraft Map Editor... that runs in-game! With selections, schematics, copy and paste, brushes, and scripting! Use it in creative, survival in sing

EngineHub 2.7k Jan 1, 2023
Essentials - Minecraft server command mod - Adds over 100 commands for use in-game to help manage a server

Essentials Development Readme The official repository is at: https://github.com/essentials/Essentials We use NetBeans 7.3 for development. Recommended

Essentials 811 Jan 7, 2023
A minecraft mod that allows additional windows to be opened alongside the game

Breakout API BreakoutAPI is a Minecraft mod which allows developers to create new windows that run alongside Minecraft. All the windows run on the sam

Raph Hennessy 11 Jan 3, 2023
A Minecraft Mod for Fabric which aims to make Block Entity rendering faster and more customizable with almost no compromises.

Enhanced Block Entities EBE is a 100% client side mod for Minecraft on the Fabric mod loader which aims to increase the performance of block entity re

null 151 Dec 30, 2022
A Fabric mod designed to improve the chunk performance of Minecraft.

C^2M-Engine A Fabric mod designed to improve the chunk performance of Minecraft. So what is C2ME? C^2M-Engine, or C2ME for short, is a Fabric mod desi

null 411 Jan 5, 2023
A minecraft utility mod for 1.12.2.

Teddyware Utility Mod Teddyware is a utility mod for minecraft anarchy servers for 1.12.2. It is like optifine, and should only be used on servers tha

null 24 Dec 2, 2022
A minecraft mod that allows using minecrafts structure block based test system

MC Tester Mod This mod allows using the automated structure based test system Mojang created for minecraft. The test system is only partially included

2No2Name 21 Nov 11, 2022