All Activity
Today
-
Best modded minecraft server hosting 2026
I've been using Apex Hosting for a modded 1.20.1 server with my friends recently, and the one-click modpack installer saves so much time. Bisect is also amazing if you need quick support when a modpack crashes on startup.
-
Forge Loader breaks instant health 125 potion (death potion)
Add the crash-report And which command do you use?
-
-
GeckoLib 5.0 model texture not loading in Forge 1.20.1 with GeckoLib 4.x
You hit the nail on the head GeckoLib 5.0 and 4.x use different geo JSON schemas, so using a v5 model directly in a 4.x environment will definitely break texture/layer mappings. To answer your questions: The easiest fix is to re-export the model from Blockbench specifically choosing the GeckoLib 4.0 format (or adjust the project setup in Blockbench settings before exporting). Yes, getTextureResource requires the full ResourceLocation including .png (e.g., new ResourceLocation("reignofnether", "textures/block/vilka.png")). The main difference is how bone hierarchies and texture UV mappings are structured inside the .geo.json file. Try re-exporting as 4.x from Blockbench and it should fix the missing texture issue!
-
How can I learn Forge modding?
Looking at open-source mods on GitHub helped me way more than any tutorial when I was starting out. Just search for 1.18.2 Forge mods and check their source code to see how they structure events and registry. Good luck with your server mod!
-
server crash on player death
Had a similar crash recently and couldn't figure out why a client-side function was causing a server drop. Disabling the bauble mod fixed it for me too.
-
I67Jasmin joined the community
-
toljaafanasevxi changed their profile photo
-
DragonHunter1202 joined the community
-
Forge Loader breaks instant health 125 potion (death potion)
On instances with forge installed, giving myself a potion of instant health with an amplifier of 125 no longer kills things Minecraft Version: 1.20.1 Forge Version: 47.4.23 I was trying to give myself the instant health 125 potion that kills everything, but Forge said no
-
Buffdude23 joined the community
Yesterday
-
polkadot joined the community
Last week
-
Ingo_the_great joined the community
-
Archer196 joined the community
-
dylanrogers changed their profile photo
-
Karloooo joined the community
-
Minecraft instance crashes when trying to join/create singleplayer world
Add the crash-report or latest.log (logs-folder) with sites like https://mclo.gs/ and paste the link to it here
-
Better MC wont download
Make a test with another Launcher like MultiMC or AT Launcher
-
Lillie joined the community
-
Better MC wont download
I did everything the forge support said to do and nothing will not work. It just keeps saying forge mod loader installation failed. I even attempted the last option of making its own profile and manually download but it wouldnt even make a profile still saying the same thing.
- mmm4
-
twemamansour joined the community
- mmm
-
srbmakevija joined the community
-
DhaniWin changed their profile photo
- -
-
Minecraft instance crashes when trying to join/create singleplayer world
I was creating a new instance on Modrinth and added standard mods like Sodium and Fabric. My game starts normally, and I can join multiplayer servers. However, the issue occurs with singleplayer worlds; whenever I try to join or create one, my game crashes. I would really appreciate it if someone could help me fix this.
- Matthew44e
Earlier
- bugs
-
bugs
hello i don't know how to repair this because when i try to start the game i have this message curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.4.10\fmlcore-1.20.1-47.4.10.jar is missing mods.toml file curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.4.10\javafmllanguage-1.20.1-47.4.10.jar is missing mods.toml file curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.4.10\lowcodelanguage-1.20.1-47.4.10.jar is missing mods.toml file curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.4.10\mclanguage-1.20.1-47.4.10.jar is missing mods.toml file
-
server crash on player death
Text2speech is a client-side-only function - not a mod But a mod is using it which is not working on a server
-
server crash on player death
is text2speech a mod? cause if so i don't have that mod, and if its from base minecraft then why is it causing the crash. also i think i found the cause, when i unequiped a bauble it crashed so i that might be the cause
-
server crash on player death
Same issue without this mod?
-
server crash on player death
this has occurred even when i have an empty inventory, and no equipment i have effects my death. i don't know what text2speech is doing or how it is being affected.
-
server crash on player death
This looks like a bug with trinketsandbaubles or an item you are wearing with it If you die, a client-side-only function will be fired (text2speech) which is causing the crash
-
Consistently Kicked Out of Server
Did anyone figure out a solution to this? I have a friend having this same issue. Running this on Apex hosting. Only person that is getting these errors is one player. everyone else is perfectly fine.
-
NotRainbowSteve started following [1.8.9] Why is my item not initializing?
-
[1.8.9] Why is my item not initializing?
So I'm new to mod development, and I'm following this tutorial, and I cant seem to figure out why the item isn't being initialized. I followed the code exactly as the video says, but the game just isnt initializing the item as far as i can tell. This is the contents of my ModItems.java file: package notrainbowsteve.mcap.init; import net.minecraft.item.Item; import net.minecraftforge.fml.common.registry.GameRegistry; public class ModItems { public static Item copper_ingot; public static void init() { copper_ingot = new Item().setUnlocalizedName("copper_ingot"); } public static void register() { registerItem(copper_ingot); } public static void registerItem(Item item) { GameRegistry.registerItem(item, item.getUnlocalizedName().substring(5)); System.out.println("Registered Item: " + item.getUnlocalizedName().substring(5)); } } it might be worth noting that I'm not entirely sure what the .substring(5) part under registerItem actually means, specifically the number being used. I think I understand what the substring part means, but I'm not entirely sure on what the 5 means. this is the contents of my main .java file (called MCAP.java): package notrainbowsteve.mcap; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.SidedProxy; import net.minecraftforge.fml.common.Mod.EventHandler; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; @Mod(modid = Reference.MODID, name = Reference.NAME, version = Reference.VERSION) public class MCAP { @SidedProxy(serverSide = Reference.SERVER_PROXY_CLASS, clientSide = Reference.CLIENT_PROXY_CLASS) public static CommonProxy proxy; @Mod.Instance("mcap") public static MCAP instance; @EventHandler() public static void preInit(FMLPreInitializationEvent event) { ModItems.init(); ModItems.register(); } @EventHandler public static void init(FMLInitializationEvent event) { proxy.registerRenders(); } @EventHandler public static void postInit(FMLPostInitializationEvent event) { } } if I need to give more info, im more than glad to do so if it means i can get this working.
-
server crash on player death
Modded minecraft server crashes when I die, the server does not seem to crash when others die. This has occurred both with myself as the only player online and with others online. Crash log linked below Server Crash report
-
How do I make my biped mob always spawn with a pumpkin head? [1.16.5]
Thanks, I was able to do it with this public PumpkinManEntity(EntityType<? extends PumpkinManEntity> type, World world) { super(type, world); this.setItemSlot(EquipmentSlotType.HEAD, new ItemStack(Items.CARVED_PUMPKIN)); }