Jump to content

Search the Community

Showing results for tags '1.7.10'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Minecraft Forge
    • Releases
    • Support & Bug Reports
    • Suggestions
    • General Discussion
  • Mod Developer Central
    • Modder Support
    • User Submitted Tutorials
  • Non-Forge
    • Site News (non-forge)
    • Minecraft General
    • Off-topic
  • Forge Mods
    • Mods

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


XMPP/GTalk


Gender


URL


Location


ICQ


AIM


Yahoo IM


MSN Messenger


Personal Text

Found 18 results

  1. Hello everyone, My minecraft stopped working recently. I have possibly lost months of building . I came back to the game early this year after not playing for a very long time. So I'm not as sharp as I was with all the modding. I think it may be linked to an update in the launcher ? Security wise? I use the LOTR mod (LOTRMod+v36.12) with DrZharks MoCreatures Mod v6.3.1 //Exotic+Birds+1.7.10-1.4.6 //Fossils Archeology Revival-7.3.2. There is also this file in my mod folder and I don't really know what it does: llibrary-1.5.1-1.7.10 Can anyone help me solve this and save my realm ? I shall be eternally grateful! Thank you! Here is my full Crash Report: https://pastebin.com/u8VHMSWx The game crashed whilst there was a severe problem during mod loading that has caused the game to fail Error: cpw.mods.fml.common.LoaderException: java.lang.ExceptionInInitializerError Exit Code: -1
  2. So I've read the EULA, and lets be straight... If I split my modpack(of my mods, yeah I'm nuts) into several(many) individual mods(like just one boss) with minor additions(plus not working together), then have a complete/modpack version on patreon/onlyfans having each addon work together... Would people buy my idea?
  3. So I saw that mixin is shipped as a library with forge, but is it available for 1.7.10 ?
  4. When I play Minecraft with mod 1 or 4, I play normally but today it changed, I just played the first one with 4 mods and normally I create a world with a name and when I enter it says "Shutting down internal server" and after that I am in the launcher with this: The game crashed whilst unexpected error Error: java.lang.IndexOutOfBoundsException The error code is: -1 I played on version 17.10 Please reply quickly!
  5. I was trying to run a Dragon block C modpack on my server but when ever I try starting the server the modpack keeps crashing and I have no idea what's causing it.. https://pastebin.com/j61dyid6
  6. Hey I'm really stuck with an issue and I can't get help anywhere. I'm trying to render new armors to the game, everything is working correctly until I add one additionnal armor to the game although I use the same code for every armor. The game does not crash but the console get an error when I switch to 3rd person view. Here's my code, I got the issue for the Onyx armor package com.shoana.mod; import com.shoana.mod.items.*; import cpw.mods.fml.common.registry.GameRegistry; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.init.Items; import net.minecraft.item.Item; import net.minecraft.item.ItemArmor; import net.minecraft.item.ItemFood; import net.minecraftforge.common.util.EnumHelper; import com.shoana.mod.items.ItemArmorTopaze; import com.shoana.mod.items.ItemArmorAzurite; import com.shoana.mod.items.ItemArmorAmethyst; import com.shoana.mod.items.ItemArmorVoracium; public class ModItem { public static ItemArmor.ArmorMaterial topaze_armor = EnumHelper.addArmorMaterial("topaze_armor", 34, new int[]{3, 7, 6, 9}, 30); public static ItemArmor.ArmorMaterial azurite_armor = EnumHelper.addArmorMaterial("azurite_armor", 35, new int[]{3, 8, 7, 3}, 30); public static ItemArmor.ArmorMaterial amethyst_armor = EnumHelper.addArmorMaterial("amethyst_armor", 36, new int[]{3, 9, 7, 3}, 30); public static ItemArmor.ArmorMaterial onyx_armor = EnumHelper.addArmorMaterial("onyx_armor", 40, new int[]{5, 10, 9, 5}, 30); public static ItemArmor.ArmorMaterial voracium_armor = EnumHelper.addArmorMaterial("voracium_armor", 40, new int[]{5, 10, 9, 5}, 30); public static final Item.ToolMaterial topaze_toolMaterial = EnumHelper.addToolMaterial("topaze_toolMaterial", 3, 1700, 9.0F, 3.8F, 30); public static final Item.ToolMaterial azurite_toolMaterial = EnumHelper.addToolMaterial("azurite_toolMaterial", 3, 1800, 9.0F, 4.1F, 30); public static final Item.ToolMaterial amethyst_toolMaterial = EnumHelper.addToolMaterial("amethyst_toolMaterial", 3, 2050, 10.0F, 4.8F, 30); public static final Item.ToolMaterial onyx_toolMaterial = EnumHelper.addToolMaterial("onyx_toolMaterial", 3, 2600, 10.0F, 5.4F, 30); public static final Item.ToolMaterial voracium_toolMaterial = EnumHelper.addToolMaterial("voracium_toolMaterial", 3, 3000, 10.0F, 5.8F, 30); public static Item topaze_helmet, topaze_chestplate, topaze_leggings, topaze_boots; public static Item azurite_helmet, azurite_chestplate, azurite_leggings, azurite_boots; public static Item amethyst_helmet, amethyst_chestplate, amethyst_leggings, amethyst_boots; public static Item voracium_helmet, voracium_chestplate, voracium_leggings, voracium_boots; public static Item onyx_helmet, onyx_chestplate, onyx_leggings, onyx_boots; public static Item topaze_pickaxe, topaze_axe, topaze_shovel, topaze_hoe, topaze_sword; public static Item azurite_pickaxe, azurite_axe, azurite_shovel, azurite_hoe, azurite_sword; public static Item amethyst_pickaxe, amethyst_axe, amethyst_shovel, amethyst_hoe, amethyst_sword; public static Item onyx_pickaxe, onyx_axe, onyx_shovel, onyx_hoe, onyx_sword; public static Item voracium_sword; public static Item pinnapleItem, pineapple_seed; public static Item chaud_ananas; public static Item weedItem; public static void init() { topaze_helmet = new ItemArmorTopaze(topaze_armor, 1, 0).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":topaze_helmet").setUnlocalizedName("topaze_helmet"); topaze_chestplate = new ItemArmorTopaze(topaze_armor, 1, 1).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":topaze_chestplate").setUnlocalizedName("topaze_chestplate"); topaze_leggings = new ItemArmorTopaze(topaze_armor, 1, 2).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":topaze_leggings").setUnlocalizedName("topaze_leggings"); topaze_boots = new ItemArmorTopaze(topaze_armor, 1, 3).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":topaze_boots").setUnlocalizedName("topaze_boots"); azurite_helmet = new ItemArmorAzurite(azurite_armor, 2, 0).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":azurite_helmet").setUnlocalizedName("azurite_helmet"); azurite_chestplate = new ItemArmorAzurite(azurite_armor, 2, 1).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":azurite_chestplate").setUnlocalizedName("azurite_chestplate"); azurite_leggings = new ItemArmorAzurite(azurite_armor, 2, 2).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":azurite_leggings").setUnlocalizedName("azurite_leggings"); azurite_boots = new ItemArmorAzurite(azurite_armor, 2, 3).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":azurite_boots").setUnlocalizedName("azurite_boots"); amethyst_helmet = new ItemArmorAmethyst(amethyst_armor, 3, 0).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":amethyst_helmet").setUnlocalizedName("amethyst_helmet"); amethyst_chestplate = new ItemArmorAmethyst(amethyst_armor, 3, 1).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":amethyst_chestplate").setUnlocalizedName("amethyst_chestplate"); amethyst_leggings = new ItemArmorAmethyst(amethyst_armor, 3, 2).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":amethyst_leggings").setUnlocalizedName("amethyst_leggings"); amethyst_boots = new ItemArmorAmethyst(amethyst_armor, 3, 3).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":amethyst_boots").setUnlocalizedName("amethyst_boots"); voracium_helmet = new ItemArmorVoracium(voracium_armor, 4, 0).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":voracium_helmet").setUnlocalizedName("voracium_helmet"); voracium_chestplate = new ItemArmorVoracium(voracium_armor, 4, 1).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":voracium_chestplate").setUnlocalizedName("voracium_chestplate"); voracium_leggings = new ItemArmorVoracium(voracium_armor, 4, 2).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":voracium_leggings").setUnlocalizedName("voracium_leggings"); voracium_boots = new ItemArmorVoracium(voracium_armor, 4, 3).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":voracium_boots").setUnlocalizedName("voracium_boots"); onyx_helmet = new ItemArmorVoracium(onyx_armor, 5, 0).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":onyx_helmet").setUnlocalizedName("onyx_helmet"); onyx_chestplate = new ItemArmorVoracium(onyx_armor, 5, 1).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":onyx_chestplate").setUnlocalizedName("onyx_chestplate"); onyx_leggings = new ItemArmorVoracium(onyx_armor, 5, 2).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":onyx_leggings").setUnlocalizedName("onyx_leggings"); onyx_boots = new ItemArmorVoracium(onyx_armor, 5, 3).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":onyx_boots").setUnlocalizedName("onyx_boots"); topaze_pickaxe = new ItemTopazePickaxe(topaze_toolMaterial).setCreativeTab(CreativeTabs.tabTools).setTextureName(Reference.MODID + ":topaze_pickaxe").setUnlocalizedName("topaze_pickaxe"); topaze_axe = new ItemTopazeAxe(topaze_toolMaterial).setCreativeTab(CreativeTabs.tabTools).setTextureName(Reference.MODID + ":topaze_axe").setUnlocalizedName("topaze_axe"); topaze_shovel = new ItemTopazeShovel(topaze_toolMaterial).setCreativeTab(CreativeTabs.tabTools).setTextureName(Reference.MODID + ":topaze_shovel").setUnlocalizedName("topaze_shovel"); topaze_hoe = new ItemTopazeHoe(topaze_toolMaterial).setCreativeTab(CreativeTabs.tabTools).setTextureName(Reference.MODID + ":topaze_hoe").setUnlocalizedName("topaze_hoe"); topaze_sword = new ItemTopazeSword(topaze_toolMaterial).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":topaze_sword").setUnlocalizedName("topaze_sword"); azurite_pickaxe = new ItemAzuritePickaxe(azurite_toolMaterial).setCreativeTab(CreativeTabs.tabTools).setTextureName(Reference.MODID + ":azurite_pickaxe").setUnlocalizedName("azurite_pickaxe"); azurite_axe = new ItemAzuriteAxe(azurite_toolMaterial).setCreativeTab(CreativeTabs.tabTools).setTextureName(Reference.MODID + ":azurite_axe").setUnlocalizedName("azurite_axe"); azurite_shovel = new ItemAzuriteShovel(azurite_toolMaterial).setCreativeTab(CreativeTabs.tabTools).setTextureName(Reference.MODID + ":azurite_shovel").setUnlocalizedName("azurite_shovel"); azurite_hoe = new ItemAzuriteHoe(azurite_toolMaterial).setCreativeTab(CreativeTabs.tabTools).setTextureName(Reference.MODID + ":azurite_hoe").setUnlocalizedName("azurite_hoe"); azurite_sword = new ItemAzuriteSword(azurite_toolMaterial).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":azurite_sword").setUnlocalizedName("azurite_sword"); amethyst_pickaxe = new ItemAmethystPickaxe(amethyst_toolMaterial).setCreativeTab(CreativeTabs.tabTools).setTextureName(Reference.MODID + ":amethyst_pickaxe").setUnlocalizedName("amethyst_pickaxe"); amethyst_axe = new ItemAmethystAxe(amethyst_toolMaterial).setCreativeTab(CreativeTabs.tabTools).setTextureName(Reference.MODID + ":amethyst_axe").setUnlocalizedName("amethyst_axe"); amethyst_shovel = new ItemAmethystShovel(amethyst_toolMaterial).setCreativeTab(CreativeTabs.tabTools).setTextureName(Reference.MODID + ":amethyst_shovel").setUnlocalizedName("amethyst_shovel"); amethyst_hoe = new ItemAmethystHoe(amethyst_toolMaterial).setCreativeTab(CreativeTabs.tabTools).setTextureName(Reference.MODID + ":amethyst_hoe").setUnlocalizedName("amethyst_hoe"); amethyst_sword = new ItemAmethystSword(amethyst_toolMaterial).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":amethyst_sword").setUnlocalizedName("amethyst_sword"); onyx_pickaxe = new ItemOnyxPickaxe(onyx_toolMaterial).setCreativeTab(CreativeTabs.tabTools).setTextureName(Reference.MODID + ":onyx_pickaxe").setUnlocalizedName("onyx_pickaxe"); onyx_axe = new ItemOnyxAxe(onyx_toolMaterial).setCreativeTab(CreativeTabs.tabTools).setTextureName(Reference.MODID + ":onyx_axe").setUnlocalizedName("onyx_axe"); onyx_shovel = new ItemOnyxShovel(onyx_toolMaterial).setCreativeTab(CreativeTabs.tabTools).setTextureName(Reference.MODID + ":onyx_shovel").setUnlocalizedName("onyx_shovel"); onyx_hoe = new ItemOnyxHoe(onyx_toolMaterial).setCreativeTab(CreativeTabs.tabTools).setTextureName(Reference.MODID + ":onyx_hoe").setUnlocalizedName("onyx_hoe"); onyx_sword = new ItemOnyxSword(onyx_toolMaterial).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":onyx_sword").setUnlocalizedName("onyx_sword"); voracium_sword = new ItemVoraciumSword(voracium_toolMaterial).setCreativeTab(CreativeTabs.tabCombat).setTextureName(Reference.MODID + ":voracium_sword").setUnlocalizedName("voracium_sword"); pinnapleItem = new itemPinnaple(4, 0.3F, false).setTextureName(Reference.MODID + ":apple_golden"); pineapple_seed = new itemSeedPineapple(); chaud_ananas = new itemShoananas(4, 0.3F, false).setTextureName(Reference.MODID + ":chaud_ananas"); weedItem = new itemWeed((ModBlocks.weed_block)).setUnlocalizedName("weedItem").setCreativeTab(CreativeTabs.tabFood).setTextureName(Reference.MODID + ":weed_item"); } public static void register() { GameRegistry.registerItem(topaze_helmet, "topaze_helmet"); GameRegistry.registerItem(topaze_chestplate, "topaze_chestplate"); GameRegistry.registerItem(topaze_leggings, "topaze_leggings"); GameRegistry.registerItem(topaze_boots, "topaze_boots"); GameRegistry.registerItem(azurite_helmet, "azurite_helmet"); GameRegistry.registerItem(azurite_chestplate, "azurite_chestplate"); GameRegistry.registerItem(azurite_leggings, "azurite_leggings"); GameRegistry.registerItem(azurite_boots, "azurite_boots"); GameRegistry.registerItem(amethyst_helmet, "amethyst_helmet"); GameRegistry.registerItem(amethyst_chestplate, "amethyst_chestplate"); GameRegistry.registerItem(amethyst_leggings, "amethyst_leggings"); GameRegistry.registerItem(amethyst_boots, "amethyst_boots"); GameRegistry.registerItem(voracium_helmet, "voracium_helmet"); GameRegistry.registerItem(voracium_chestplate, "voracium_chestplate"); GameRegistry.registerItem(voracium_leggings, "voracium_leggings"); GameRegistry.registerItem(voracium_boots, "voracium_boots"); GameRegistry.registerItem(onyx_helmet, "onyx_helmet"); GameRegistry.registerItem(onyx_chestplate, "onyx_chestplate"); GameRegistry.registerItem(onyx_leggings, "onyx_leggings"); GameRegistry.registerItem(onyx_boots, "onyx_boots"); GameRegistry.registerItem(pinnapleItem, "pinnaple_item"); GameRegistry.registerItem(pineapple_seed, "pineapple_seed"); GameRegistry.registerItem(chaud_ananas, "chaud_ananas"); GameRegistry.registerItem(topaze_pickaxe, "topaze_pickaxe"); GameRegistry.registerItem(topaze_axe, "topaze_axe"); GameRegistry.registerItem(topaze_shovel, "topaze_shovel"); GameRegistry.registerItem(topaze_hoe, "topaze_hoe"); GameRegistry.registerItem(topaze_sword, "topaze_sword"); GameRegistry.registerItem(azurite_pickaxe, "azurite_pickaxe"); GameRegistry.registerItem(azurite_axe, "azurite_axe"); GameRegistry.registerItem(azurite_shovel, "azurite_shovel"); GameRegistry.registerItem(azurite_hoe, "azurite_hoe"); GameRegistry.registerItem(azurite_sword, "azurite_sword"); GameRegistry.registerItem(amethyst_pickaxe, "amethyst_pickaxe"); GameRegistry.registerItem(amethyst_axe, "amethyst_axe"); GameRegistry.registerItem(amethyst_shovel, "amethyst_shovel"); GameRegistry.registerItem(amethyst_hoe, "amethyst_hoe"); GameRegistry.registerItem(amethyst_sword, "amethyst_sword"); GameRegistry.registerItem(onyx_pickaxe, "onyx_pickaxe"); GameRegistry.registerItem(onyx_axe, "onyx_axe"); GameRegistry.registerItem(onyx_shovel, "onyx_shovel"); GameRegistry.registerItem(onyx_hoe, "onyx_hoe"); GameRegistry.registerItem(onyx_sword, "onyx_sword"); GameRegistry.registerItem(voracium_sword, "voracium_sword"); GameRegistry.registerItem(weedItem, "weed_item"); } } package com.shoana.mod.items; import com.shoana.mod.ModItem; import com.shoana.mod.Reference; import net.minecraft.entity.Entity; import net.minecraft.item.Item; import net.minecraft.item.ItemArmor; import net.minecraft.item.ItemStack; public class itemArmorOnyx extends ItemArmor { public itemArmorOnyx(ArmorMaterial material, int renderIndex, int armorType) { super(material, renderIndex, armorType); } @Override public String getArmorTexture(ItemStack stack, Entity entity, int metaData, String type) { if(stack.getItem() == ModItem.onyx_leggings) { return Reference.MODID + ":textures/models/armor/onyx_layer_2.png"; } else if(stack.getItem() == ModItem.onyx_helmet || stack.getItem() == ModItem.onyx_chestplate || stack.getItem() == ModItem.onyx_boots) { return Reference.MODID + ":textures/models/armor/onyx_layer_1.png"; } return null; } } I get tis error java.lang.ArrayIndexOutOfBoundsException: 5 at net.minecraft.client.renderer.entity.RenderBiped.getArmorResource(RenderBiped.java:408) ~[RenderBiped.class:?] at net.minecraft.client.renderer.entity.RenderPlayer.shouldRenderPass(RenderPlayer.java:70) ~[RenderPlayer.class:?] at net.minecraft.client.renderer.entity.RenderPlayer.shouldRenderPass(RenderPlayer.java:517) ~[RenderPlayer.class:?] at net.minecraft.client.renderer.entity.RendererLivingEntity.doRender(RendererLivingEntity.java:173) [RendererLivingEntity.class:?] at net.minecraft.client.renderer.entity.RenderPlayer.doRender(RenderPlayer.java:167) [RenderPlayer.class:?] at net.minecraft.client.renderer.entity.RenderPlayer.doRender(RenderPlayer.java:565) [RenderPlayer.class:?] at net.minecraft.client.renderer.entity.RenderManager.func_147939_a(RenderManager.java:300) [RenderManager.class:?] at net.minecraft.client.renderer.entity.RenderManager.renderEntityWithPosYaw(RenderManager.java:283) [RenderManager.class:?] at net.minecraft.client.gui.inventory.GuiInventory.func_147046_a(GuiInventory.java:112) [GuiInventory.class:?] at net.minecraft.client.gui.inventory.GuiContainerCreative.drawGuiContainerBackgroundLayer(GuiContainerCreative.java:839) [GuiContainerCreative.class:?] at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:93) [GuiContainer.class:?] at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:44) [InventoryEffectRenderer.class:?] at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:673) [GuiContainerCreative.class:?] at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1137) [EntityRenderer.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1067) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_202] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_202] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_202] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_202] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?]
  7. So I have 2 modpacks that I really enjoy playing, one on 1.7.10 and another on 1.20.1, and at one point I took a break from 1.20.1 to play the one on 1.7.10 (note: this was the first time I've done this, as the 1.20.1 modpack was made quite recently). The 1.7.10 one ran fine. Then, I went back to 1.20.1 and the game crashed as soon as it started. I asked for help on the forum and managed to fix it by downloading Java 17. Then I did it again (I didn't know that switching between versions was causing it at the time) and this time, changing to Java 17 didn't work. So instead I updated my drivers and that fixed it. I recently did it one last time to be absolutely certain that it was switching between versions that caused it, and now Minecraft Forge 1.20.1 crashes on open again. I also tried 1.20.4 (which is in beta I think) and that didn't work either. Only now, I've reinstalled the driver, and uninstalled and reinstalled Java 17, and neither worked. Here's the latest log and the debug.log on PasteBin in case any of you wanted to see it: https://pastebin.com/tNwT4dZR Debug.Log: https://pastebin.com/VjTppYKC So, I have 2 main problems. 1. Since neither method of making my game open again works, does anyone have an idea on how to fix it? 2. Is there any way to switch between versions without causing this issue? Edit: Quick Update, I no longer need help with the first problem. I completely uninstalled Minecraft and all of it's source files (after making backups of course), and then reinstalled it. It took a while and was a lot of work, but it fixed the problem. I still need help on the 2nd issue though, I don't wanna have to go through this every time I wanna play 1.7.10
  8. Hi there its me. I used to be quite active on here back in the days of Minecraft 1.7.10. How far things have come. Minecraft modding was my way to learn Java.I literally knew 0 java but messing with Minecraft inspired me to learn. It was excellent and I am grateful to this forum for the endless help with all of my niche questions/issues. So in the spirit of maintaining the past, keeping it alive so to speak, I have come back on here to ask for legacy forge version support. I have recently come back to modding Minecraft 1.7.10, and yes it is still possible even in 2024 but it takes a lot to get the dev environment set up and all that, and am working on my massive mod that I never released. So I am hoping to engage the right people on here to rally for legacy forge version support for dev environment setup with gradle and to maintain it. Is it possible to get support for legacy versions, why or why not? I think it should be. The old minecraft has a lot to offer still. I know there used to be a lot of 1.7.10 mods that were fantastic back then and many were never updated to newer versions due to the insane workload it takes to keep up with their release schedule. But at least for me, its a ton of fun these days and I am a lot better at Java and OOP. Hoping to bring that to more people and see if its possible to at least maintain the dev environment side of the legacy forge versions into the future. @diesieben thoughts? I miss your snarky comments and condescending remarks from years ago. They made me a better programmer because I wanted to prove you wrong. Very grateful to you.
  9. Been having this crash report on a pack I'm running with some friends. No idea what's causing it, was able to replicate this crash by making a new modpack with nothing but mekanism in it https://pastebin.com/RNQLVEP4 Mekanism definitely isn't the problem I've just identified it as having items that create this rendering error below is a further crash report, same error just not mekanism https://pastebin.com/D05EQW5U Any help would be greatly appreciated
  10. I am running a server on Arch Linux, Minecraft version 1.7.10 The server launches fine without mods so one of the mods is causing an issue but i dont know which one ---- Minecraft Crash Report ---- // I blame Dinnerbone. Time: 10/01/24 20:02 Description: Exception in server tick loop cpw.mods.fml.common.LoaderException: java.lang.NoClassDefFoundError: Lnet/minecraft/client/Minecraft; at cpw.mods.fml.common.LoadController.transition(LoadController.java:163) at cpw.mods.fml.common.Loader.loadMods(Loader.java:544) at cpw.mods.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:87) at cpw.mods.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:314) at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:117) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:387) at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685) Caused by: java.lang.NoClassDefFoundError: Lnet/minecraft/client/Minecraft; at java.lang.Class.getDeclaredFields0(Native Method) at java.lang.Class.privateGetDeclaredFields(Class.java:2583) at java.lang.Class.getDeclaredField(Class.java:2068) at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:43) at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:512) at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119) at cpw.mods.fml.common.Loader.loadMods(Loader.java:513) ... 5 more Caused by: java.lang.ClassNotFoundException: net.minecraft.client.Minecraft at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) at java.lang.ClassLoader.loadClass(ClassLoader.java:418) at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ... 31 more Caused by: java.lang.RuntimeException: Attempted to load class bao for invalid side SERVER at cpw.mods.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:50) at net.minecraft.launchwrapper.LaunchClassLoader.runTransformers(LaunchClassLoader.java:279) at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:176) ... 33 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Linux (amd64) version 6.6.10-arch1-1 Java Version: 1.8.0_392, Oracle Corporation Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 1159700968 bytes (1105 MB) / 1445462016 bytes (1378 MB) up to 3682074624 bytes (3511 MB) JVM Flags: 0 total; AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1614 153 mods loaded, 153 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UC mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) UC FML{7.10.99.99} [Forge Mod Loader] (forge-1.7.10-10.13.4.1614-1.7.10-universal.jar) UC Forge{10.13.4.1614} [Minecraft Forge] (forge-1.7.10-10.13.4.1614-1.7.10-universal.jar) UC appliedenergistics2-core{rv2-stable-10} [AppliedEnergistics2 Core] (minecraft.jar) UC CodeChickenCore{1.0.7.47} [CodeChicken Core] (minecraft.jar) UC MobiusCore{1.2.5} [MobiusCore] (minecraft.jar) UC NotEnoughItems{1.0.5.120} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.5.120-universal.jar) UC voltzenginepreloader{0.0.1} [Voltz Engine Preloader] (minecraft.jar) UC <CoFH ASM>{000} [CoFH ASM] (minecraft.jar) UC FastCraft{1.25} [FastCraft] (fastcraft-1.25.jar) UC debug{1.0} [debug] (denseores-1.6.2.jar) UC ExtendedPotions{1.2} [Extended Potions] (ExtendedPotions-MC1.7.10-1.2.jar) UC securitycraft{v1.8.13} [SecurityCraft] ([1.7.10] SecurityCraft v1.8.13.jar) UC DamageIndicatorsMod{3.2.0} [Damage Indicators] ([1.7.10]DamageIndicatorsMod-3.2.0.jar) UC movillages{1.4.2} [Mo' Villages] ([1.7.10]MoVillages-1.4.2.jar) UC Baubles{1.0.1.10} [Baubles] (Baubles-1.7.10-1.0.1.10.jar) UC adventurebackpack{1.7.10-0.8b} [Adventure Backpack] (adventurebackpack-1.7.10-0.8c.jar) UC AnimationAPI{1.2.4} [AnimationAPI] (AnimationAPI-1.7.10-1.2.4.jar) UC appliedenergistics2{rv2-stable-10} [Applied Energistics 2] (appliedenergistics2-rv2-stable-10.jar) UC ArchimedesShips{1.7.10 v1.7.1} [Archimedes' Ships] (ArchimedesShips-1.7.1.jar) UC bookshelf{1.0.4.187} [Bookshelf] (Bookshelf-1.7.10-1.0.4.187.jar) UC betterboat{1.1.0} [Better Boat] (BetterBoat-1.7.10-1.1.0.jar) UC betterbuilderswands{0.8.1} [Better Builder's Wands] (BetterBuildersWands-0.8.1-1.7.10r92+aec06c3.jar) UC BiblioCraft{1.11.7} [BiblioCraft] (BiblioCraft[v1.11.7][MC1.7.10].jar) UC Mantle{1.7.10-0.3.2.jenkins191} [Mantle] (Mantle-1.7.10-0.3.2b.jar) UC Natura{2.2.0} [Natura] (natura-1.7.10-2.2.0.1.jar) UC BiomesOPlenty{2.1.0} [Biomes O' Plenty] (BiomesOPlenty-1.7.10-2.1.0.1889-universal.jar) UC BiblioWoodsBoP{1.9} [BiblioWoods Biomes O'Plenty Edition] (BiblioWoods[BiomesOPlenty][v1.9].jar) UC ExtrabiomesXL{3.16.4} [ExtrabiomesXL] (extrabiomesxl_1.7.10-3.16.4.jar) UC BiblioWoodsEBXL{1.4} [BiblioWoods ExtraBiomesXL Edition] (BiblioWoods[ExtraBiomesXL][v1.4].jar) UC IC2{2.2.827-experimental} [IndustrialCraft 2] (industrialcraft-2-2.2.827-experimental.jar) UC CoFHCore{1.7.10R3.1.4} [CoFH Core] (CoFHCore-[1.7.10]3.1.4-329.jar) UC Forestry{4.2.16.64} [Forestry for Minecraft] (forestry_1.7.10-4.2.16.64.jar) UC BiblioWoodsForestry{1.7} [BiblioWoods Forestry Edition] (BiblioWoods[Forestry][v1.7].jar) UC BiblioWoodsNatura{1.5} [BiblioWoods Natura Edition] (BiblioWoods[Natura][v1.5].jar) UC ThermalFoundation{1.7.10R1.2.6} [Thermal Foundation] (ThermalFoundation-[1.7.10]1.2.6-118.jar) UC ThermalExpansion{1.7.10R4.1.5} [Thermal Expansion] (ThermalExpansion-[1.7.10]4.1.5-248.jar) UC BigReactors{0.4.3A} [Big Reactors] (BigReactors-0.4.3A.jar) UC Thaumcraft{4.2.3.5} [Thaumcraft] (Thaumcraft-1.7.10-4.2.3.5.jar) UC Botania{r1.8-249} [Botania] (Botania r1.8-249.jar) UC BuildCraft|Core{7.1.23} [BuildCraft] (buildcraft-7.1.23.jar) UC BuildCraft|Transport{7.1.23} [BC Transport] (buildcraft-7.1.23.jar) UC BuildCraft|Factory{7.1.23} [BC Factory] (buildcraft-7.1.23.jar) UC BuildCraft|Silicon{7.1.23} [BC Silicon] (buildcraft-7.1.23.jar) UC BuildCraft|Robotics{7.1.23} [BC Robotics] (buildcraft-7.1.23.jar) UC BuildCraft|Energy{7.1.23} [BC Energy] (buildcraft-7.1.23.jar) UC BuildCraft|Builders{7.1.23} [BC Builders] (buildcraft-7.1.23.jar) UC Railcraft{9.12.2.0} [Railcraft] (Railcraft_1.7.10-9.12.2.0.jar) UC TwilightForest{2.3.7} [The Twilight Forest] (twilightforest-1.7.10-2.3.7.jar) UC ForgeMultipart{1.2.0.345} [Forge Multipart] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar) UC chisel{2.9.5.11} [Chisel] (Chisel-2.9.5.11.jar) UC CarpentersBlocks{3.3.8.1} [Carpenter's Blocks] (Carpenter's Blocks v3.3.8.1 - MC 1.7.10.jar) UC ChickenChunks{1.3.4.19} [ChickenChunks] (ChickenChunks-1.7.10-1.3.4.19-universal.jar) UC chunkpregenerator{2.1} [Chunk Pregenerator] (Chunk Pregenerator V1.7.10-2.1.jar) UC customnpcs{1.7.10d} [CustomNpcs] (CustomNPCs_1.7.10d(29oct17).jar) UC PTRModelLib{1.0.0} [PTRModelLib] (Decocraft-2.4.2_1.7.10.jar) UC props{2.4.2} [Decocraft] (Decocraft-2.4.2_1.7.10.jar) UC dldungeonsjdg{1.11.0} [Doomlike Dungeons] (DoomlikeDungeons-1.11.0-MC1.7.10.jar) UE DynamicLights{1.3.9a} [Dynamic Lights] (Dynamic Lights-1.3.9a-MC1.7.10.jar) UC emeraldmod{3.5.1} [EmeraldMod] (Emerald-Mod-1.7.10_1.jar) UC Mekanism{9.1.1} [Mekanism] (Mekanism-1.7.10-9.1.1.1031.jar) UC EnderIO{1.7.10-2.2.8.381} [Ender IO] (EnderIO-1.7.10-2.2.8.381.jar) UC EnderStorage{1.4.7.37} [EnderStorage] (EnderStorage-1.7.10-1.4.7.37-universal.jar) UC Waila{1.5.10} [Waila] (Waila-1.5.10_1.7.10.jar) UC extracells{2.3.14} [Extra Cells 2] (ExtraCells-1.7.10-2.3.14b200.jar) UC ExtraUtilities{1.2.12} [Extra Utilities] (extrautilities-1.2.12.jar) UC fastleafdecay{1.4} [Fast Leaf Decay] (FastLeafDecay-1.7.10-1.4.jar) UC FoodExpansion{1.0} [Food Expansion] (FoodExpansion1.1.1-mc1.7.10.jar) UC FpsReducer{mc1.7.10-1.10.3} [FPS Reducer] (FpsReducer-mc1.7.10-1.10.3.jar) UC FTBL{1.0.18.2} [FTBLib] (FTBLib-1.7.10-1.0.18.3.jar) UC FTBU{1.0.18.2} [FTBUtilities] (FTBUtilities-1.7.10-1.0.18.3.jar) UC fw{1.3.0} [Fullscreen Windowed] (FullscreenWindowed-1.7.10-1.3.0b.jar) UC gravestone{0.7.10.3} [Gravestone] (GraveStone Mod 0.7.10.3.jar) UC GrimoireOfGaia{1.0.0} [Grimoire of Gaia 3] (GrimoireOfGaia3-1.7.10-1.2.7.jar) UC iChunUtil{4.2.3} [iChunUtil] (iChunUtil-4.2.3.jar) UC Hats{4.0.1} [Hats] (Hats-4.0.1.jar) UC TConstruct{1.7.10-1.8.8.build988} [Tinkers' Construct] (TConstruct-1.7.10-1.8.8.jar) UC voltzengine{1.9.14.302} [Voltz Engine] (VoltzEngine-1.7.10-1.9.14b302.jar) UC icbm{2.15.4.497} [ICBM] (ICBM-1.7.10-2.15.4b497.jar) UC icbmclassic{2.16.2.205} [ICBM-Classic] (ICBM-classic-1.7.10-2.16.2b205.jar) UC InventoryPets{1.4.9.9b} [Inventory Pets] (inventorypets-1.7.10-1.4.9.9b-universal.jar) UC IronChest{6.0.62.742} [Iron Chest] (ironchest-1.7.10-6.0.62.742-universal.jar) UC ItsRainingFood{1.0.2} [It's Raining Food] (itsrainingfood-1.7.10-1.0.4.jar) UC JABBA{1.2.2} [JABBA] (Jabba-1.2.2_1.7.10.jar) UC journeymap{5.1.4p2} [JourneyMap] (journeymap-1.7.10-5.1.4p2-unlimited.jar) UC llibrary{1.5.1} [LLibrary] (llibrary-1.5.1-1.7.10.jar) UC jurassicraft{1.5.0} [JurassiCraft] (JurassiCraft-1.4.0.jar) UC LogisticsPipes{0.9.3.132} [Logistics Pipes] (logisticspipes-0.9.3.132.jar) UC lootbags{2.0.17} [Loot Bags] (LootBags-1.7.10-2.0.17.jar) UC magicalcrops{1.7.2 - 0.1 ALPHA} [Magical Crops] (magicalcrops-1.7.10_0.1.jar) UC MagicBees{2.4.4} [Magic Bees] (magicbees-1.7.10-2.4.4.jar) UC malisiscore{1.7.10-0.14.3} [MalisisCore] (malisiscore-1.7.10-0.14.3.jar) UC malisisdoors{1.7.10-1.13.2} [Malisis' Doors] (malisisdoors-1.7.10-1.13.2.jar) UC MekanismGenerators{9.1.1} [MekanismGenerators] (MekanismGenerators-1.7.10-9.1.1.1031.jar) UC MekanismTools{9.1.1} [MekanismTools] (MekanismTools-1.7.10-9.1.1.1031.jar) UC MobProperties{1.0.2} [Mob Properties] (MobProperties-1.7.10-1.0.2.jar) UC morechisels{@VERSION@} [More Chisels] (MoreChisels-1.7.10-1.0-28.jar) UC Morph{0.9.2} [Morph] (Morph-Beta-0.9.2.jar) UC Morpheus{1.7.10-1.6.21} [Morpheus] (Morpheus-1.7.10-1.6.21.jar) UC cfm{3.4.7} [�9MrCrayfish's Furniture Mod] (MrCrayfishFurnitureModv3.4.7(1.7.10).jar) UC MutantCreatures{1.4.9} [Mutant Creatures] (MutantCreatures-1.7.10-1.4.9.jar) UC NEIAddons{1.12.14.40} [NEI Addons] (neiaddons-1.12.14.40-mc1.7.10.jar) UC NEIAddons|Developer{1.12.14.40} [NEI Addons: Developer Tools] (neiaddons-1.12.14.40-mc1.7.10.jar) UC NEIAddons|AppEng{1.12.14.40} [NEI Addons: Applied Energistics 2] (neiaddons-1.12.14.40-mc1.7.10.jar) UC NEIAddons|Botany{1.12.14.40} [NEI Addons: Botany] (neiaddons-1.12.14.40-mc1.7.10.jar) UC NEIAddons|Forestry{1.12.14.40} [NEI Addons: Forestry] (neiaddons-1.12.14.40-mc1.7.10.jar) UC NEIAddons|CraftingTables{1.12.14.40} [NEI Addons: Crafting Tables] (neiaddons-1.12.14.40-mc1.7.10.jar) UC NEIAddons|ExNihilo{1.12.14.40} [NEI Addons: Ex Nihilo] (neiaddons-1.12.14.40-mc1.7.10.jar) UC neiintegration{1.1.2} [NEI Integration] (NEIIntegration-MC1.7.10-1.1.2.jar) UC NEIlootbags{1.1.3} [NEIlootbags] (NEIlootbags-1.7.10-1.1.3.jar) UC NetherOres{1.7.10R2.3.1} [Nether Ores] (NetherOres-[1.7.10]2.3.1-22.jar) UC OreSpawn{1.7.10.20.3} [OreSpawn] (orespawn-1.7.10-20.3.zip) UC origin{8.0.3} [Origin] (Origin-1.7.10-8.0.3.jar) UC addonscrewdriver{1.0.0} [OriginAddonScrewdriver] (Origin-1.7.10-8.0.3.jar) UC getalltheseeds{1.7.10a} [Pam's Get all the Seeds!] (Pam's Get all the Seeds 1.7.10a.jar) UC harvestcraft{1.7.10j} [Pam's HarvestCraft] (Pam's HarvestCraft 1.7.10Lb.jar) UC simplerecipes{1.7.10a} [Pam's Simple Recipes] (Pam's Simple Recipes 1.7.10a.jar) UC pandorasbox{2.0.1} [Pandora's Box] (PandorasBox-2.1.jar) UC PortalGun{4.0.0-beta-6} [PortalGun] (PortalGun-4.0.0-beta-6-fix-1.jar) UC ProjectE{1.7.10-PE1.10.1} [ProjectE] (ProjectE-1.7.10-PE1.10.1.jar) UC MrTJPCoreMod{1.1.0.33} [MrTJPCore] (MrTJPCore-1.1.0.33-universal.jar) UC ProjRed|Core{4.7.0pre12.95} [ProjectRed Core] (ProjectRed-1.7.10-4.7.0pre12.95-Base.jar) UC ProjRed|Transmission{4.7.0pre12.95} [ProjectRed Transmission] (ProjectRed-1.7.10-4.7.0pre12.95-Integration.jar) UC ProjRed|Transportation{4.7.0pre12.95} [ProjectRed Transportation] (ProjectRed-1.7.10-4.7.0pre12.95-Mechanical.jar) UC ProjRed|Compatibility{4.7.0pre12.95} [ProjectRed Compatibility] (ProjectRed-1.7.10-4.7.0pre12.95-Compat.jar) UC ProjRed|Integration{4.7.0pre12.95} [ProjectRed Integration] (ProjectRed-1.7.10-4.7.0pre12.95-Integration.jar) UC ProjRed|Illumination{4.7.0pre12.95} [ProjectRed Illumination] (ProjectRed-1.7.10-4.7.0pre12.95-Lighting.jar) UC ProjRed|Expansion{4.7.0pre12.95} [ProjectRed Expansion] (ProjectRed-1.7.10-4.7.0pre12.95-Mechanical.jar) UE ResourceLoader{1.3} [Resource Loader] (ResourceLoader-MC1.7.10-1.3.jar) UC Roguelike{1.5.0} [Roguelike Dungeons] (roguelike-1.7.10-1.5.0b.jar) UC runicdungeons{1.1.7b} [Runic Dungeons] (RunicDungeons-1.1.7b.jar) UC secretroomsmod{4.7.1} [The SecretRoomsMod] (secretroomsmod-1.7.10-4.7.1.413.jar) UC StorageDrawers{1.7.10-1.10.9} [Storage Drawers] (StorageDrawers-1.7.10-1.10.9.jar) UC Sync{4.0.1} [Sync] (Sync-4.0.1.jar) UC Teletubbies{0.5.4} [Teletubbies] (Teletubbies-1.7.10-0.5.4.jar) UC TextureGeneratorLib{0.2} [TextureGeneratorLib] (TextureGeneratorLib-1.7.10_vBeta2.jar) UC TrailMix{4.0.0} [TrailMix] (TrailMix-4.0.0.jar) UC Translocator{1.1.2.16} [Translocator] (Translocator-1.7.10-1.1.2.16-universal.jar) UC vampirism{0.7.9} [Vampirism] (Vampirism-1.7.10-0.7.9.jar) UC voltzenginemodcompat{1.9.14.302} [Voltz Engine Mod Compatibility Loader] (VoltzEngine-1.7.10-1.9.14b302.jar) UC voltzenginemodflag{1.9.14.302} [VoltzEngine mod protection, flag, and region system] (VoltzEngine-1.7.10-1.9.14b302.jar) UC WailaHarvestability{1.1.6} [Waila Harvestability] (WailaHarvestability-mc1.7.10-1.1.6.jar) UC wawla{1.3.1} [What Are We Looking At] (Wawla-1.0.5.120.jar) UC witchery{0.24.1} [Witchery] (witchery-1.7.10-0.24.1.jar) UC WTFCore{1.7} [WhiskyTangoFox's Core] (WTFCore-1.7.10_v1.7.jar) UC CaveBiomes{1.6} [WhiskyTangoFox's CaveBiomes] (WTFCaveBiomes-1.7.10_v1.6.jar) UC YAFM{1.0.3} [Yet Another Food Mod] (yafm-1.0.3.jar) UC McMultipart{1.2.0.345} [Minecraft Multipart Plugin] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar) UC ForgeRelocation{0.0.1.4} [ForgeRelocation] (ForgeRelocation-0.0.1.4-universal.jar) UC MCFrames{1.0} [MCFrames] (ForgeRelocation-0.0.1.4-universal.jar) UC RelocationFMP{0.0.1.2} [RelocationFMP] (ForgeRelocationFMP-0.0.1.2-universal.jar) UC denseores{1.0} [Dense Ores] (denseores-1.6.2.jar) UC ForgeMicroblock{1.2.0.345} [Forge Microblocks] (ForgeMultipart-1.7.10-1.2.0.345-universal.jar) AE2 Version: stable rv2-stable-10 for Forge 10.13.2.1291 Mantle Environment: Environment healthy. CoFHCore: -[1.7.10]3.1.4-329 ThermalFoundation: -[1.7.10]1.2.6-118 ThermalExpansion: -[1.7.10]4.1.5-248 TConstruct Environment: Environment healthy. NetherOres: -[1.7.10]2.3.1-22 Profiler Position: N/A (disabled) Is Modded: Definitely; Server brand changed to 'fml,forge' Type: Dedicated Server (map_server.txt)
  11. I've looked at old and new forums. I've spent an embarrassing amount of time looking at errors and trying to fix stuff myself. I probably shouldn't be trying to play with 90+ mods on a version that is this old if i don't know what I'm doing. If its not something obvious I will just start the modpack over. I think I installed a poorly coded mod, I ONLY install stuff from curseforge though. And it was working until I added more mods. https://paste.gg/p/anonymous/caa2671539a5463393e4635c7bbc52f4
  12. I can launch and access the menu of any 1.7.10 modpack, however as soon as I try to join either a multiplayer or single-player world, the screen shows some hotbar slots for a second or two, then turns "black." I put quotations around this because if I "look around", which shouldn't be possible, the screen changes to a single different color, what I can only assume is the color of the block I'm looking at. I can hear audio, and if I hit esc I can access the "menu," which isn't there, and click buttons. I have managed to click the disconnect from server button, however, the screen turns brown (the color of the Minecraft loading screen) for a second then goes black, and I can do nothing else. The mods are installed through the curseforge launcher, and I'm on a laptop. There are no exit codes or crashes. I can also successfully launch vanilla and more modern versions of Minecraft with mods, not sure about what version it specifically starts working/failing. Things I have tried/checked: Java version: currently on version 20. I tried going back to version 8, nothing changed. Uninstalling/reinstalling: I have reinstalled the modpack many times. Anti-virus: I've disabled any anti-virus that could have been working. RAM: Dedicated 8gb of ram to minecraft. Drivers: I've reinstalled my graphic drivers and made sure they were up to date. I've maybe tried a few other things, I forgot because I've been trying to make this work for a few hours. Any suggestions, even stuff that I might've already tried but maybe incorrectly, would be very much appreciated. Thanks for any help
  13. I do not know if this is the right place to post this but here it goes: I am trying to localhost a modpack server for version 1.7.10. When I try to start the "forge-1.7.10-10.13.4.1614-1.7.10-universal.jar" file, the mods folder and whatever else is supposed to appear doesn't, in fact nothing happens at all. But when I try to start the "minecraft_server.1.7.10.jar" I am able to join the server, but it is just vanilla minecraft. What should I do?
  14. When I open my inventory, only my head appears and not my whole body. After that, the game crashes and sends me directly to the minecraft launcher, the version in which this happens is 1.7.10 ---- Minecraft Crash Report ---- // There are four lights! Time: 05/07/23 10:34 AM Description: Unexpected error java.lang.ClassCastException: net.minecraft.client.model.ModelRenderer cannot be cast to noppes.mpm.client.model.ModelScaleRenderer at noppes.mpm.client.model.ModelMPM.renderArms(ModelMPM.java:330) at noppes.mpm.client.RenderMPM.func_82441_a(RenderMPM.java:156) at net.minecraft.client.renderer.ItemRenderer.func_78440_a(ItemRenderer.java:531) at ItemRendererOF.func_78440_a(ItemRendererOF.java:197) at net.minecraft.client.renderer.EntityRenderer.renderHand(EntityRenderer.java:1010) at net.minecraft.client.renderer.EntityRenderer.func_78476_b(EntityRenderer.java:945) at net.minecraft.client.renderer.EntityRenderer.func_78471_a(EntityRenderer.java:1933) at net.minecraft.client.renderer.EntityRenderer.func_78480_b(EntityRenderer.java:1392) at noppes.mpm.client.EntityRendererAlt.func_78480_b(EntityRendererAlt.java:34) at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:1001) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:898) at net.minecraft.client.main.Main.main(SourceFile:148) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at noppes.mpm.client.model.ModelMPM.renderArms(ModelMPM.java:330) at noppes.mpm.client.RenderMPM.func_82441_a(RenderMPM.java:156) at net.minecraft.client.renderer.ItemRenderer.func_78440_a(ItemRenderer.java:531) at ItemRendererOF.func_78440_a(ItemRendererOF.java:197) at net.minecraft.client.renderer.EntityRenderer.renderHand(EntityRenderer.java:1010) at net.minecraft.client.renderer.EntityRenderer.func_78476_b(EntityRenderer.java:945) at net.minecraft.client.renderer.EntityRenderer.func_78471_a(EntityRenderer.java:1933) at net.minecraft.client.renderer.EntityRenderer.func_78480_b(EntityRenderer.java:1392) -- Affected level -- Details: Level name: MpServer All players: 1 total; [EntityClientPlayerMP['zLyfx_'/247, l='MpServer', x=-190.50, y=69.62, z=146.50]] Chunk stats: MultiplayerChunkCache: 75, 84 Level seed: 0 Level generator: ID 00 - default, ver 1. Features enabled: false Level generator options: Level spawn location: World: (-188,64,152), Chunk: (at 4,4,8 in -12,9; contains blocks -192,0,144 to -177,255,159), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511) Level time: 276 game time, 276 day time Level dimension: 0 Level storage version: 0x00000 - Unknown? Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false) Level game mode: Game mode: survival (ID 0). Hardcore: true. Cheats: false Forced entities: 123 total; [EntityBat['Bat'/256, l='MpServer', x=-144.23, y=25.23, z=172.46], EntityBat['Bat'/257, l='MpServer', x=-144.04, y=25.01, z=169.25], EntityBat['Bat'/258, l='MpServer', x=-144.13, y=24.67, z=171.88], EntityBat['Bat'/259, l='MpServer', x=-142.59, y=32.00, z=145.91], EntityBat['Bat'/260, l='MpServer', x=-144.56, y=32.00, z=143.72], EntityFallingBlock['Falling Block'/535, l='MpServer', x=-124.50, y=3.49, z=171.50], EntityFallingBlock['Falling Block'/537, l='MpServer', x=-124.50, y=3.49, z=172.50], EntityFallingBlock['Falling Block'/539, l='MpServer', x=-124.50, y=3.49, z=173.50], EntityFallingBlock['Falling Block'/540, l='MpServer', x=-123.50, y=3.49, z=173.50], EntityFallingBlock['Falling Block'/542, l='MpServer', x=-123.50, y=3.49, z=174.50], EntityFallingBlock['Falling Block'/544, l='MpServer', x=-125.50, y=3.49, z=173.50], EntityFallingBlock['Falling Block'/545, l='MpServer', x=-125.50, y=3.49, z=174.50], EntityFallingBlock['Falling Block'/547, l='MpServer', x=-125.50, y=3.49, z=176.50], EntityFallingBlock['Falling Block'/550, l='MpServer', x=-118.50, y=34.49, z=217.50], EntityFallingBlock['Falling Block'/551, l='MpServer', x=-118.50, y=35.49, z=218.50], EntityFallingBlock['Falling Block'/552, l='MpServer', x=-116.50, y=32.49, z=217.50], EntityFallingBlock['Falling Block'/553, l='MpServer', x=-116.50, y=32.49, z=218.50], EntityFallingBlock['Falling Block'/554, l='MpServer', x=-119.50, y=34.49, z=217.50], EntityFallingBlock['Falling Block'/555, l='MpServer', x=-119.50, y=34.49, z=218.50], EntityFallingBlock['Falling Block'/556, l='MpServer', x=-120.50, y=34.49, z=218.50], EntityFallingBlock['Falling Block'/557, l='MpServer', x=-118.50, y=34.49, z=216.50], EntitySquid['Squid'/58, l='MpServer', x=-250.35, y=57.24, z=168.88], EntitySquid['Squid'/59, l='MpServer', x=-248.03, y=52.34, z=160.43], EntitySquid['Squid'/60, l='MpServer', x=-248.30, y=54.89, z=173.68], EntityBat['Bat'/75, l='MpServer', x=-223.90, y=29.21, z=89.32], EntityCreeper['Creeper'/78, l='MpServer', x=-209.50, y=14.00, z=110.50], EntityCreeper['Creeper'/79, l='MpServer', x=-214.56, y=14.00, z=109.34], EntityCreeper['Creeper'/80, l='MpServer', x=-215.56, y=14.00, z=106.84], EntitySkeleton['Skeleton'/81, l='MpServer', x=-211.09, y=14.00, z=109.61], EntityCreeper['Creeper'/82, l='MpServer', x=-217.50, y=15.00, z=126.50], EntityBat['Bat'/83, l='MpServer', x=-224.47, y=17.88, z=132.34], EntityZombie['Zombie'/84, l='MpServer', x=-212.50, y=24.00, z=183.50], EntityBat['Bat'/85, l='MpServer', x=-212.63, y=30.05, z=185.50], EntitySquid['Squid'/86, l='MpServer', x=-211.15, y=58.41, z=192.40], EntitySquid['Squid'/87, l='MpServer', x=-205.21, y=62.43, z=194.58], EntitySquid['Squid'/90, l='MpServer', x=-204.54, y=59.94, z=195.16], EntitySquid['Squid'/91, l='MpServer', x=-201.83, y=62.36, z=192.78], EntityFallingBlock['Falling Block'/349, l='MpServer', x=-228.50, y=15.49, z=108.50], EntityFallingBlock['Falling Block'/350, l='MpServer', x=-229.50, y=15.49, z=109.50], EntityFallingBlock['Falling Block'/351, l='MpServer', x=-227.50, y=15.49, z=109.50], EntityFallingBlock['Falling Block'/352, l='MpServer', x=-228.50, y=14.49, z=109.50], EntityFallingBlock['Falling Block'/354, l='MpServer', x=-230.50, y=15.49, z=109.50], EntityFallingBlock['Falling Block'/355, l='MpServer', x=-230.50, y=15.49, z=110.50], EntityFallingBlock['Falling Block'/356, l='MpServer', x=-229.50, y=14.49, z=110.50], EntityFallingBlock['Falling Block'/357, l='MpServer', x=-229.50, y=14.49, z=111.50], EntityFallingBlock['Falling Block'/358, l='MpServer', x=-227.50, y=14.49, z=110.50], EntityFallingBlock['Falling Block'/359, l='MpServer', x=-228.50, y=14.49, z=110.50], EntityFallingBlock['Falling Block'/360, l='MpServer', x=-228.50, y=14.49, z=111.50], EntityFallingBlock['Falling Block'/619, l='MpServer', x=-204.50, y=43.49, z=150.50], EntityFallingBlock['Falling Block'/620, l='MpServer', x=-204.50, y=43.49, z=151.50], EntityFallingBlock['Falling Block'/621, l='MpServer', x=-203.50, y=43.49, z=150.50], EntityFallingBlock['Falling Block'/622, l='MpServer', x=-203.50, y=43.49, z=151.50], EntityFallingBlock['Falling Block'/627, l='MpServer', x=-200.50, y=58.49, z=152.50], EntityFallingBlock['Falling Block'/628, l='MpServer', x=-200.50, y=58.49, z=153.50], EntitySquid['Squid'/117, l='MpServer', x=-182.40, y=55.13, z=179.36], EntitySquid['Squid'/118, l='MpServer', x=-178.57, y=59.90, z=185.88], EntitySquid['Squid'/119, l='MpServer', x=-181.54, y=56.84, z=192.59], EntitySquid['Squid'/120, l='MpServer', x=-182.46, y=61.33, z=185.57], EntityFallingBlock['Falling Block'/654, l='MpServer', x=-192.50, y=54.49, z=166.50], EntityFallingBlock['Falling Block'/655, l='MpServer', x=-193.50, y=53.49, z=165.50], EntitySquid['Squid'/145, l='MpServer', x=-168.23, y=51.23, z=170.31], EntityFallingBlock['Falling Block'/401, l='MpServer', x=-231.50, y=30.11, z=95.50], EntitySquid['Squid'/146, l='MpServer', x=-164.38, y=50.00, z=163.96], EntityFallingBlock['Falling Block'/658, l='MpServer', x=-206.50, y=41.49, z=215.50], EntityFallingBlock['Falling Block'/402, l='MpServer', x=-231.50, y=29.49, z=94.50], EntitySquid['Squid'/147, l='MpServer', x=-159.54, y=51.44, z=172.65], EntityFallingBlock['Falling Block'/659, l='MpServer', x=-207.50, y=41.49, z=214.50], EntityFallingBlock['Falling Block'/403, l='MpServer', x=-233.50, y=29.49, z=94.50], EntityCreeper['Creeper'/148, l='MpServer', x=-170.50, y=16.00, z=202.50], EntityFallingBlock['Falling Block'/660, l='MpServer', x=-206.50, y=41.49, z=214.50], EntityFallingBlock['Falling Block'/404, l='MpServer', x=-232.50, y=30.11, z=94.50], EntityFallingBlock['Falling Block'/405, l='MpServer', x=-232.50, y=30.11, z=95.50], EntityFallingBlock['Falling Block'/408, l='MpServer', x=-230.50, y=30.11, z=92.50], EntityFallingBlock['Falling Block'/409, l='MpServer', x=-229.50, y=30.11, z=93.50], EntityFallingBlock['Falling Block'/414, l='MpServer', x=-231.50, y=29.49, z=96.50], EntityFallingBlock['Falling Block'/415, l='MpServer', x=-232.50, y=29.49, z=96.50], EntityPig['Pig'/161, l='MpServer', x=-159.76, y=68.00, z=97.41], EntityPig['Pig'/162, l='MpServer', x=-152.50, y=68.00, z=101.50], EntityPig['Pig'/163, l='MpServer', x=-149.50, y=67.00, z=111.50], EntityPig['Pig'/164, l='MpServer', x=-148.22, y=67.00, z=114.78], EntityPig['Pig'/165, l='MpServer', x=-148.38, y=67.00, z=113.03], EntityPig['Pig'/166, l='MpServer', x=-150.03, y=67.00, z=114.66], EntityItem['item.item.seeds'/167, l='MpServer', x=-152.84, y=63.13, z=130.88], EntitySquid['Squid'/168, l='MpServer', x=-155.21, y=50.42, z=174.40], EntitySquid['Squid'/169, l='MpServer', x=-146.27, y=54.06, z=169.91], EntitySquid['Squid'/170, l='MpServer', x=-142.81, y=53.36, z=173.84], EntitySquid['Squid'/171, l='MpServer', x=-154.32, y=52.16, z=202.53], EntityFallingBlock['Falling Block'/438, l='MpServer', x=-177.50, y=15.49, z=188.50], EntityFallingBlock['Falling Block'/439, l='MpServer', x=-178.50, y=15.49, z=188.50], EntityFallingBlock['Falling Block'/440, l='MpServer', x=-177.50, y=15.49, z=187.50], EntityFallingBlock['Falling Block'/442, l='MpServer', x=-178.50, y=16.49, z=185.50], EntityFallingBlock['Falling Block'/444, l='MpServer', x=-178.50, y=16.49, z=184.50], EntityFallingBlock['Falling Block'/446, l='MpServer', x=-177.50, y=16.49, z=184.50], EntityFallingBlock['Falling Block'/705, l='MpServer', x=-164.50, y=6.38, z=101.50], EntityFallingBlock['Falling Block'/706, l='MpServer', x=-163.50, y=15.38, z=147.50], EntityFallingBlock['Falling Block'/452, l='MpServer', x=-162.50, y=7.49, z=206.50], EntityCustomMob10001['Gassy'/196, l='MpServer', x=-136.50, y=68.00, z=105.50], EntityFallingBlock['Falling Block'/453, l='MpServer', x=-162.50, y=7.49, z=207.50], EntityCustomMob10001['Gassy'/197, l='MpServer', x=-137.50, y=68.00, z=105.50], EntitySpider['Spider'/198, l='MpServer', x=-133.98, y=14.00, z=126.13], EntityFallingBlock['Falling Block'/454, l='MpServer', x=-161.50, y=7.49, z=207.50], EntitySkeleton['Skeleton'/199, l='MpServer', x=-132.75, y=14.00, z=126.53], EntityFallingBlock['Falling Block'/455, l='MpServer', x=-162.50, y=7.49, z=205.50], EntitySkeleton['Skeleton'/200, l='MpServer', x=-133.50, y=14.00, z=129.50], EntityFallingBlock['Falling Block'/456, l='MpServer', x=-161.50, y=7.49, z=205.50], EntitySquid['Squid'/201, l='MpServer', x=-139.72, y=52.94, z=167.33], EntitySquid['Squid'/202, l='MpServer', x=-134.50, y=56.06, z=171.88], EntityFallingBlock['Falling Block'/458, l='MpServer', x=-161.50, y=7.49, z=206.50], EntityFallingBlock['Falling Block'/459, l='MpServer', x=-160.50, y=7.49, z=207.50], EntityZombie['Zombie'/203, l='MpServer', x=-133.50, y=21.00, z=210.50], EntityFallingBlock['Falling Block'/460, l='MpServer', x=-160.50, y=7.49, z=206.50], EntityZombie['Zombie'/204, l='MpServer', x=-130.50, y=21.00, z=210.50], EntityFallingBlock['Falling Block'/461, l='MpServer', x=-160.50, y=7.49, z=205.50], EntityZombie['Zombie'/205, l='MpServer', x=-131.50, y=21.00, z=211.50], EntityFallingBlock['Falling Block'/462, l='MpServer', x=-160.50, y=8.49, z=204.50], EntityCow['Cow'/216, l='MpServer', x=-112.50, y=70.00, z=128.50], EntitySkeleton['Skeleton'/217, l='MpServer', x=-119.50, y=34.00, z=221.50], EntitySkeleton['Skeleton'/218, l='MpServer', x=-119.50, y=34.00, z=219.50], EntityClientPlayerMP['zLyfx_'/247, l='MpServer', x=-190.50, y=69.62, z=146.50], EntityTrail['unknown'/507, l='MpServer', x=-190.50, y=69.62, z=146.50], EntityFallingBlock['Falling Block'/508, l='MpServer', x=-153.50, y=8.49, z=178.50], EntityFallingBlock['Falling Block'/509, l='MpServer', x=-153.50, y=8.49, z=179.50], EntityFallingBlock['Falling Block'/510, l='MpServer', x=-154.50, y=8.49, z=179.50]] Retry entities: 0 total; [] Server brand: fml,forge Server type: Integrated singleplayer server Stacktrace: at net.minecraft.client.multiplayer.WorldClient.func_72914_a(WorldClient.java:425) at net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2444) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:927) at net.minecraft.client.main.Main.main(SourceFile:148) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_51, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 1415700312 bytes (1350 MB) / 2717908992 bytes (2592 MB) up to 4294967296 bytes (4096 MB) JVM Flags: 8 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx4G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94 FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1614 Optifine OptiFine_1.7.10_HD_U_E7 19 mods loaded, 19 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCHIJAAAA mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) UCHIJAAAA FML{7.10.99.99} [Forge Mod Loader] (forge-1.7.10-10.13.4.1614-1.7.10.jar) UCHIJAAAA Forge{10.13.4.1614} [Minecraft Forge] (forge-1.7.10-10.13.4.1614-1.7.10.jar) UCHIJAAAA FoamFixCore{1.0.0} [FoamFixCore] (minecraft.jar) UCHIJAAAA Baubles{1.0.1.10} [Baubles] (Baubles-1.7.10-1.0.1.10.jar) UCHIJAAAA CarpentersBlocks{3.3.8.1} [Carpenter's Blocks] (Carpenter's+Blocks+v3.3.8.1+-+MC+1.7.10.jar) UCHIJAAAA carsanddrives{1.0.9.1} [Cars and Drives] (Cars_and_Drives_Mod_V-1.0.9.1.jar) UCHIJAAAA customnpcs{1.7.10d} [CustomNpcs] (CustomNPCs_1.7.10d(29oct17).jar) UCHIJAAAA PTRModelLib{1.0.0} [PTRModelLib] (Decocraft-2.4.2_1.7.10.jar) UCHIJAAAA props{2.4.2} [Decocraft] (Decocraft-2.4.2_1.7.10.jar) UCHIJAAAA foamfix{@VERSION@} [FoamFix] (FoamFix-1.7.10-universal-1.0.0.jar) UCHIJAAAA iChunUtil{4.2.2} [iChunUtil] (iChunUtil-4.2.2(1).jar) UCHIJAAAA malisiscore{1.7.10-0.14.3} [MalisisCore] (malisiscore-1.7.10-0.14.3.jar) UCHIJAAAA malisisdoors{1.7.10-1.13.1} [Malisis' Doors] (malisisdoors-1.7.10-1.13.1.jar) UCHIJAAAA moreplayermodels{1.7.10b} [MorePlayerModels] (MorePlayerModels_1.7.10b.jar) UCHIJAAAA cfm{3.4.7} [§9MrCrayfish's Furniture Mod] (MrCrayfishFurnitureModv3.4.7(1.7.10).jar) UCHIJAAAA mw{1.11.6} [Modern Warfare] (mw-1.11.6_mc1.7.10.jar) UCHIJAAAA PortalGun{4.0.0-beta-6} [PortalGun] (PortalGun-4.0.0-beta-6-fix-1.jar) UCHIJAAAA worldedit{6.0-beta-01} [WorldEdit] (worldedit-forge-mc1.7.10-6.0-beta-01.jar) GL info: ' Vendor: 'ATI Technologies Inc.' Version: '4.5.13417 Compatibility Profile Context 15.301.1901.0' Renderer: 'AMD Radeon HD 7560D' Launched Version: 1.7.10-Forge10.13.4.1614-1.7.10 LWJGL: 2.9.1 OpenGL: AMD Radeon HD 7560D GL version 4.5.13417 Compatibility Profile Context 15.301.1901.0, ATI Technologies Inc. GL Caps: Using GL 1.3 multitexturing. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Anisotropic filtering is supported and maximum anisotropy is 16. Shaders are available because OpenGL 2.1 is supported. Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Resource Packs: [mod_resources, vanilla, Supplementaries Generated Pack, file/FarfadoxHCZII] Current Language: English (US) Profiler Position: N/A (disabled) Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used Anisotropic Filtering: Off (1) OptiFine Version: OptiFine_1.7.10_HD_U_E7 Render Distance Chunks: 4 Mipmaps: 0 Anisotropic Filtering: 1 Antialiasing: 0 Multitexture: false Shaders: null OpenGlVersion: 4.5.13417 Compatibility Profile Context 15.301.1901.0 OpenGlRenderer: AMD Radeon HD 7560D OpenGlVendor: ATI Technologies Inc. CpuCount: 4
  15. I get this stuff when the game crashes The game crashed whilst there was a severe problem during mod loading that has caused the game to fail Error: cpw.mods.fml.common.LoaderException: java.lang.NoClassDefFoundError: codechicken/multipart/BlockMultipart here is the crash report https://pastebin.com/uFTjx0ZQ Also, Idk if this has anything to do with it but i just copied and pasted the mods from a modpack on technic launcher into the forge app. Its the same version and everything it just wont load.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.