Jump to content

jacrispys

Members
  • Posts

    12
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

jacrispys's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Sad but understandable, thanks for the help.
  2. Ah because I need the packet to be modified and read by the server, well this was meant to be a client mod that allows people to send raw messages in vanilla servers... Is there probably an invisible Unicode char that takes up no space that might work? Like "U+200B" except it isn't encoded the same way as minecraft so it shows a not found symbol...
  3. I only need it client side so that will work for me! Can I get any pointers on how to make the custom packet? Edit: For clarity the mod is intending to have a custom command (already made) that allows the user to send raw messages to server chat, so if i type '/sendRawChat /' it should send the "/" to the server chat
  4. Will try that when I get a chance! Thanks again diesbien! Edit: I added this to my code, but for some reason it doesn't seem to call the event unless it is a registered command, my custom commands and mojang commands do fire the event though. Edit 2: After reading built in docs, it seems I might have to do something with ClientCommandHandler to get the command if it isn't a real command.
  5. Hey forge forums (and diesbien)! Very random and niche question, but if I wanted to force the user to send the "/" symbol in chat how would I go about that? Will I need to cancel the unknown command action, or is there a way to send it raw so the command executor doesn't read it?
  6. I know it’s not supported, but I am developing a 1.8 client mod and have a pretty good hang on things except for getting these dependencies to load outside of my IDE.
  7. I've been trying to add some external libraries to my project and everything works fine inside the IDE when I runClient, but when I build the jar and run it I get classNotDefFoundError which obviously means that the jars are not being accessed from the META-INF but im not sure how to fix that... configurations { inJar } configurations.compile.extendsFrom(configurations.inJar) dependencies { inJar("net.dv8tion:JDA:4.3.0_339") inJar("com.github.HypixelDev.PublicAPI:Java:2.0.0") } jar { from(configurations.inJar) { into('META-INF/libraries') } } this is currently how I am importing the libraries, and they do show inside the jar when I decompile it, but im still not sure how to access them.
  8. Thanks! I figured that would be handled completely server side but worth a shot to check!
  9. Hey, I was wondering if its at all possible to get a list of the loaded worlds on a given bungee server, on hypixel housing there is a bug where you and another person can have 2 worlds on the same server allowing for item transfers, I wanted to make a Client side only mod to check your server for another world and return the name. I'm not sure if it is possible to do this all client sided though.
  10. The hypixel skblock community has many mods for the game such as skyblock addons and many others the server considers anything that dosen't cause you to move or click to be a legal mod, Im trying to create a gui with a timer for an event (villagers dying) but only want the event to run if you are on the correct server
  11. Hi, I have been recently trying to code a mod for a gamemode on hypixel called skyblock, but I don't want the event to be called unless the player is on skyblock (if I can't check for skyblock I would check for hypixel) but im not sure how to go about this. Any help is greatly appreciated as I am mainly a spigot coder and have not worked as much with the forge api. Edit: also would anyone happen to know a good place to learn how to make client mods? I have made armor/tools etc mods in the past from guides but am not sure where to start on client sided only.
  12. I usually code on eclipse for my mods but recently switched to intellij and was trying to rewrite a mod I had into a different version. While doing this I was just testing mod loading and my first item and for whatever reason I just can get the models to render... I'll attach my json/folders and add the error report. (ob is my MODID btw) Any help is greatly appreciated as I have scoured almost every forums post related to this on multiple platforms. [17:09:17] [Client thread/DEBUG] [FML]: Attempting to inject @Config classes into forge for type INSTANCE [17:09:17] [Client thread/DEBUG] [FML]: Bar Step: Construction - Minecraft Forge took 0.134s [17:09:17] [Client thread/DEBUG] [FML]: Attempting to inject @SidedProxy classes into ob [17:09:17] [Client thread/DEBUG] [FML]: Attempting to inject @EventBusSubscriber classes into the eventbus for ob [17:09:17] [Client thread/DEBUG] [FML]: Registering @EventBusSubscriber for me.Jacrispys.Obamium.Main$ObjectRegistryHandler for mod ob [17:09:17] [Client thread/DEBUG] [FML]: Injected @EventBusSubscriber class me.Jacrispys.Obamium.Main$ObjectRegistryHandler [17:09:17] [Client thread/DEBUG] [FML]: Registering @EventBusSubscriber for me.Jacrispys.Obamium.util.Handlers.RegistryHandler for mod ob [17:09:17] [Client thread/DEBUG] [FML]: Injected @EventBusSubscriber class me.Jacrispys.Obamium.util.Handlers.RegistryHandler [17:09:17] [Client thread/DEBUG] [FML]: Attempting to inject @Config classes into ob for type INSTANCE [17:09:17] [Client thread/DEBUG] [FML]: Bar Step: Construction - Obamium took 0.047s [17:09:17] [Client thread/DEBUG] [FML]: Bar Finished: Construction took 0.634s [17:09:17] [Client thread/DEBUG] [FML]: Mod signature data [17:09:17] [Client thread/DEBUG] [FML]: Valid Signatures: [17:09:17] [Client thread/DEBUG] [FML]: Missing Signatures: [17:09:17] [Client thread/DEBUG] [FML]: minecraft (Minecraft 1.12.2) minecraft.jar [17:09:17] [Client thread/DEBUG] [FML]: mcp (Minecraft Coder Pack 9.42) minecraft.jar [17:09:17] [Client thread/DEBUG] [FML]: FML (Forge Mod Loader 8.0.99.99) forge-1.12.2-14.23.5.2854_mapped_stable_39-1.12-recomp.jar [17:09:17] [Client thread/DEBUG] [FML]: forge (Minecraft Forge 14.23.5.2854) forge-1.12.2-14.23.5.2854_mapped_stable_39-1.12-recomp.jar [17:09:17] [Client thread/DEBUG] [FML]: ob (Obamium 1.0) main [17:09:17] [Client thread/INFO] [minecraft/SimpleReloadableResourceManager]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Obamium [17:09:17] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - Default took 0.005s [17:09:17] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.004s [17:09:17] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.004s [17:09:17] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - FMLFileResourcePack:Obamium took 0.001s [17:09:17] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 67940900 nanos [17:09:17] [Client thread/DEBUG] [FML]: Bar Finished: Reloading - LanguageManager took 0.067s [17:09:17] [Client thread/DEBUG] [FML]: Bar Step: Loading Resources - Reloading listeners took 0.068s [17:09:17] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resources took 0.081s [17:09:17] [Client thread/DEBUG] [FML]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one [17:09:17] [Client thread/DEBUG] [FML]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one [17:09:17] [Client thread/DEBUG] [FML]: Mod Obamium is missing a pack.mcmeta file, substituting a dummy one [17:09:17] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [17:09:17] [Client thread/INFO] [FML]: Found 1168 ObjectHolder annotations [17:09:17] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [17:09:17] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [17:09:17] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Minecraft took 0.000s [17:09:17] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.000s [17:09:17] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Forge Mod Loader took 0.000s [17:09:17] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [17:09:17] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Minecraft Forge took 0.085s [17:09:17] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [17:09:17] [Client thread/DEBUG] [FML]: Bar Step: PreInitialization - Obamium took 0.000s [17:09:17] [Client thread/DEBUG] [FML]: Bar Finished: PreInitialization took 0.086s [17:09:17] [Client thread/INFO] [FML]: Applying holder lookups [17:09:17] [Client thread/INFO] [FML]: Holder lookups applied [17:09:17] [Client thread/INFO] [FML]: Applying holder lookups [17:09:17] [Client thread/INFO] [FML]: Holder lookups applied [17:09:17] [Client thread/INFO] [FML]: Applying holder lookups [17:09:17] [Client thread/INFO] [FML]: Holder lookups applied [17:09:17] [Client thread/INFO] [FML]: Applying holder lookups [17:09:17] [Client thread/INFO] [FML]: Holder lookups applied [17:09:17] [Client thread/INFO] [FML]: Injecting itemstacks [17:09:17] [Client thread/INFO] [FML]: Itemstack injection complete [17:09:17] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - TextureManager took 0.000s [17:09:17] [Forge Version Check/DEBUG] [forge.VersionCheck]: [forge] Received version check data: { "homepage": "http://files.minecraftforge.net/maven/net/minecraftforge/forge/", "promos": { "1.1-latest": "1.3.2.6", "1.10-latest": "12.18.0.2000", "1.10.2-latest": "12.18.3.2511", "1.10.2-recommended": "12.18.3.2185", "1.11-latest": "13.19.1.2199", "1.11-recommended": "13.19.1.2189", "1.11.2-latest": "13.20.1.2588", "1.11.2-recommended": "13.20.1.2386", "1.12-latest": "14.21.1.2443", "1.12-recommended": "14.21.1.2387", "1.12.1-latest": "14.22.1.2485", "1.12.1-recommended": "14.22.1.2478", "1.12.2-latest": "14.23.5.2854", "1.12.2-recommended": "14.23.5.2854", "1.13.2-latest": "25.0.219", "1.14.2-latest": "26.0.63", "1.14.3-latest": "27.0.60", "1.14.4-latest": "28.2.23", "1.14.4-recommended": "28.2.0", "1.15-latest": "29.0.4", "1.15.1-latest": "30.0.51", "1.15.2-latest": "31.2.46", "1.15.2-recommended": "31.2.0", "1.16.1-latest": "32.0.108", "1.16.2-latest": "33.0.61", "1.16.3-latest": "34.1.42", "1.16.3-recommended": "34.1.0", "1.16.4-latest": "35.1.4", "1.16.4-recommended": "35.1.0", "1.5.2-latest": "7.8.1.738", "1.5.2-recommended": "7.8.1.737", "1.6.1-latest": "8.9.0.775", "1.6.2-latest": "9.10.1.871", "1.6.2-recommended": "9.10.1.871", "1.6.3-latest": "9.11.0.878", "1.6.4-latest": "9.11.1.1345", "1.6.4-recommended": "9.11.1.1345", "1.7.10-latest": "10.13.4.1614", "1.7.10-latest-1.7.10": "10.13.2.1343", "1.7.10-recommended": "10.13.4.1558", "1.7.2-latest": "10.12.2.1147", "1.7.2-recommended": "10.12.2.1121", "1.8-latest": "11.14.4.1577", "1.8-recommended": "11.14.4.1563", "1.8.8-latest": "11.15.0.1655", "1.8.9-latest": "11.15.1.2318", "1.8.9-recommended": "11.15.1.1722", "1.9-latest": "12.16.0.1942", "1.9-recommended": "12.16.1.1887", "1.9.4-latest": "12.17.0.2051", "1.9.4-recommended": "12.17.0.1976", "latest-1.7.10": "10.13.2.1343" } } [17:09:17] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: UP_TO_DATE Target: null [17:09:20] [Client thread/DEBUG] [FML]: Bar Finished: Loading sounds took 2.715s [17:09:20] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - SoundHandler took 2.734s [17:09:20] [Sound Library Loader/INFO] [minecraft/SoundManager]: Starting up SoundSystem... [17:09:20] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - FontRenderer took 0.005s [17:09:20] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - FontRenderer took 0.004s [17:09:20] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.011s [17:09:20] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.008s [17:09:20] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - GL Setup took 0.001s [17:09:20] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - Loading Texture Map took 0.006s [17:09:20] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - B3DLoader took 0.000s [17:09:20] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - OBJLoader took 0.000s [17:09:20] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - ModelFluid$FluidLoader took 0.000s [17:09:20] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - ItemLayerModel$Loader took 0.000s [17:09:20] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - MultiLayerModel$Loader took 0.000s [17:09:20] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - ModelDynBucket$LoaderDynBucket took 0.000s [17:09:20] [Thread-5/INFO] [minecraft/SoundManager]: Initializing LWJGL OpenAL [17:09:20] [Thread-5/INFO] [minecraft/SoundManager]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [17:09:20] [Thread-5/INFO] [minecraft/SoundManager]: OpenAL initialized. [17:09:20] [Sound Library Loader/INFO] [minecraft/SoundManager]: Sound engine started [17:09:25] [Client thread/DEBUG] [FML]: Bar Finished: ModelLoader: blocks took 5.459s [17:09:29] [Client thread/DEBUG] [FML]: Bar Finished: ModelLoader: items took 3.663s [17:09:29] [Client thread/INFO] [FML]: Max texture size: 16384 [17:09:33] [Client thread/DEBUG] [FML]: Bar Finished: Texture stitching took 4.283s [17:09:33] [Client thread/DEBUG] [FML]: Bar Finished: Texture stitching took 0.015s [17:09:33] [Client thread/INFO] [minecraft/TextureMap]: Created: 512x512 textures-atlas [17:09:33] [Client thread/DEBUG] [FML]: Bar Finished: Texture creation took 0.017s [17:09:33] [Client thread/DEBUG] [FML]: Bar Finished: Texture mipmap and upload took 0.014s [17:09:34] [Client thread/DEBUG] [FML]: Bar Finished: ModelLoader: baking took 0.296s [17:09:34] [Client thread/ERROR] [FML]: Exception loading model for variant ob:obamium#inventory for item "ob:obamium", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model ob:item/obamium with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:161) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:302) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:151) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:513) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:378) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_261] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_261] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_261] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_261] 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 sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_261] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_261] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_261] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_261] at net.minecraftforge.legacydev.Main.start(Main.java:86) [legacydev-0.2.3.1-fatjar.jar:0.2.3.1+4+372be23] at net.minecraftforge.legacydev.MainClient.main(MainClient.java:29) [legacydev-0.2.3.1-fatjar.jar:0.2.3.1+4+372be23] Caused by: java.io.FileNotFoundException: ob:models/item/obamium.json at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:69) ~[SimpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:334) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1400(ModelLoader.java:115) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:861) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?] ... 20 more [17:09:34] [Client thread/ERROR] [FML]: Exception loading model for variant ob:obamium#inventory for item "ob:obamium", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model ob:obamium#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:161) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:296) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:151) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:513) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:378) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_261] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_261] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_261] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_261] 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 sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_261] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_261] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_261] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_261] at net.minecraftforge.legacydev.Main.start(Main.java:86) [legacydev-0.2.3.1-fatjar.jar:0.2.3.1+4+372be23] at net.minecraftforge.legacydev.MainClient.main(MainClient.java:29) [legacydev-0.2.3.1-fatjar.jar:0.2.3.1+4+372be23] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1175) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:157) ~[ModelLoaderRegistry.class:?] ... 20 more [17:09:34] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - ModelManager took 13.898s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - Loading Model Manager took 13.943s [17:09:34] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - RenderItem took 0.013s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - Loading Item Renderer took 0.330s [17:09:34] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - EntityRenderer took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - RenderGlobal took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Finished: Loading Resource - SearchTreeManager took 0.067s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.336s [17:09:34] [Client thread/DEBUG] [FML]: Bar Finished: Rendering Setup took 14.617s [17:09:34] [Client thread/INFO] [FML]: Applying holder lookups [17:09:34] [Client thread/INFO] [FML]: Holder lookups applied [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Minecraft took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Minecraft Coder Pack took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Forge Mod Loader took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Minecraft Forge took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: Initialization - Obamium took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Finished: Initialization took 0.001s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Minecraft took 0.004s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: InterModComms$IMC - Obamium took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Finished: InterModComms$IMC took 0.004s [17:09:34] [Client thread/INFO] [FML]: Injecting itemstacks [17:09:34] [Client thread/INFO] [FML]: Itemstack injection complete [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Minecraft took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Forge Mod Loader took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Minecraft Forge took 0.008s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: PostInitialization - Obamium took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Finished: PostInitialization took 0.009s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Minecraft took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Forge Mod Loader took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Forge RecipeSorter Baking: [17:09:34] [Client thread/DEBUG] [FML]: 16: RecipeEntry("Before", UNKNOWN, ) [17:09:34] [Client thread/DEBUG] [FML]: 15: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless [17:09:34] [Client thread/DEBUG] [FML]: 14: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped [17:09:34] [Client thread/DEBUG] [FML]: 13: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped [17:09:34] [Client thread/DEBUG] [FML]: 12: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped [17:09:34] [Client thread/DEBUG] [FML]: 11: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless [17:09:34] [Client thread/DEBUG] [FML]: 10: RecipeEntry("minecraft:shield_deco", SHAPELESS, net.minecraft.item.crafting.ShieldRecipes$Decoration) After: minecraft:shapeless [17:09:34] [Client thread/DEBUG] [FML]: 9: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless [17:09:34] [Client thread/DEBUG] [FML]: 8: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless [17:09:34] [Client thread/DEBUG] [FML]: 7: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless [17:09:34] [Client thread/DEBUG] [FML]: 6: RecipeEntry("minecraft:tippedarrow", SHAPELESS, net.minecraft.item.crafting.RecipeTippedArrow) After: minecraft:shapeless [17:09:34] [Client thread/DEBUG] [FML]: 5: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless [17:09:34] [Client thread/DEBUG] [FML]: 4: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless [17:09:34] [Client thread/DEBUG] [FML]: 3: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless [17:09:34] [Client thread/DEBUG] [FML]: 2: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless [17:09:34] [Client thread/DEBUG] [FML]: 1: RecipeEntry("After", UNKNOWN, ) [17:09:34] [Client thread/DEBUG] [FML]: Sorting recipes [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Minecraft Forge took 0.007s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: LoadComplete - Obamium took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Finished: LoadComplete took 0.007s [17:09:34] [Client thread/DEBUG] [FML]: Freezing registries [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Minecraft Forge took 0.059s [17:09:34] [Client thread/DEBUG] [FML]: Bar Step: ModIdMapping - Obamium took 0.000s [17:09:34] [Client thread/DEBUG] [FML]: Bar Finished: ModIdMapping took 0.060s [17:09:34] [Client thread/DEBUG] [FML]: All registries frozen [17:09:34] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods [17:09:35] [Client thread/WARN] [minecraft/GameSettings]: Skipping bad option: lastServer: [17:09:35] [Client thread/DEBUG] [FML]: Bar Finished: Loading took 19.700s
×
×
  • Create New...

Important Information

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