
Everything posted by TastyCake
-
Minecraft 1.10.2 Modded Server Not Allowing Modded Blocks
This is what you need to run java -Xmx1024M -Xms1024M -jar forge-1.10.2-12.18.3.2511.jar
-
Connection Timed Out Server 1.12
I'm afraid I can't figure that out for you. Sorry. Hope you get the problem fixed
-
schematica
How is it "Disabled" Could you post a screenshot perhaps?
-
Connection Timed Out Server 1.12
It is likely a network problem
-
Minecraft 1.10.2 Modded Server Not Allowing Modded Blocks
please post how you are starting the server
-
Help with crashing
Thanks! I have no idea how that happened.
-
Help with crashing
Here is my code
-
Help with crashing
Hi. I am developing a mod but now every time I test it it crashes when moving from Constructing to Preinitialisation. I have gone through my code twice and there are no errors. I am not seeing anything in the crash report to tell me where to look. Thanks in advance! Crash Report
-
Make a command give a player a response
Figured it out. I didn't think to look at vanilla examples.
-
Make a command give a player a response
Hi. I want to make a command that when executed it prints text in the chat. I already have the command I only need to know how to print to chat.
-
[Fixed] Help with metadata blocks and events
Fixed! Thanks everyone!
-
[Fixed] Help with metadata blocks and events
Really sorry but I'm still confused. Could you show me what I need to change in my code? ModBlocks.obsidian_compressed needs a damage value of 1 public class CompressedObsidianSingleCraftEvent { @SubscribeEvent public void onEvent(PlayerEvent.ItemCraftedEvent event) { if (event.crafting.getItem() == Item.getItemFromBlock(ModBlocks.obsidian_compressed)) { event.player.addStat(AchievementHandler.achievementCompressedObsidianSingle, 1); } } }
-
[Fixed] Help with metadata blocks and events
Sorry. I don't quite understand. What should I put for "whatever" I need metadata for a block.
-
[Fixed] Help with metadata blocks and events
I have an event that when a specific block gets crafted it gives the player an achievement. My problem is that "ModBlocks.obsidian_compressed" has metadata giving it 2 types and I don't know how to tell it which one. public class CompressedObsidianSingleCraftEvent { @SubscribeEvent public void onEvent(PlayerEvent.ItemCraftedEvent event) { if (event.crafting.getItem() == Item.getItemFromBlock(ModBlocks.obsidian_compressed)) { event.player.addStat(AchievementHandler.achievementCompressedObsidianSingle, 1); } } }
-
Help with multi-textured blocks
Thanks!
-
Help with multi-textured blocks
Hi. I have a block with 2 variants and the blocks both have multiple textures. The items for the blocks show up ok but when I place the blocks the 2 variant show the 1 variant's texture. block_breaker.json block_breaker_advanced.json block_breaker_basic.json block_breaker_advanced.json block_breaker_basic.json ModBlocks.java EnumHandler.java IMetaBlockName.java ItemBlockBlockBreaker.java BlockBlockBreaker.java ClientProxy.java
-
Help with registering item renders
Oh. Turns out I put them in the wrong spots. The tutorial wasn't wrong.
-
Help with registering item renders
Thanks. I was following a tutorial and it all worked for the person who posted it. I will try your suggestions.
-
Help with registering item renders
What class
-
Help with registering item renders
Minecraft Version is 1.11.2 The error is Time: 10/24/17 8:02 AM Description: There was a severe problem during mod loading that has caused the game to fail net.minecraftforge.fml.common.LoaderExceptionModCrash: Caught exception from Le Big Boss (lbb) Caused by: java.lang.NullPointerException at com.tastycake.lebigboss.init.ModItems.registerRender(ModItems.java:44) at com.tastycake.lebigboss.init.ModItems.registerRenders(ModItems.java:31) at com.tastycake.lebigboss.proxy.ClientProxy.registerRenders(ClientProxy.java:14) at com.tastycake.lebigboss.ModMain.preInit(ModMain.java:29) 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 net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:649) 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 net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:253) at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:231) 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 net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:148) at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:647) at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:276) at net.minecraft.client.Minecraft.init(Minecraft.java:478) at net.minecraft.client.Minecraft.run(Minecraft.java:387) at net.minecraft.client.main.Main.main(Main.java:118) 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 net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) 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 net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) at GradleStart.main(GradleStart.java:26) IntelliJ IDEA doesn't show any errors in my code. More Files ModItems.java Reference.java ModMain.java CommonProxy.java ClientProxy.java ItemObsidianIngot.java
-
[NOT SOLVED] Forge For Minecraft 1.6.4 Crashes My Minecraft (NEW)
What version is the mod for? Could you link the website?
-
[NOT SOLVED] Forge For Minecraft 1.6.4 Crashes My Minecraft (NEW)
What forge version did you download?
-
Error Downloading Forge
Hi. Start by giving your server more ram. The amount of ram you give depends on the amount your computer has. Change the server's JVM Flags so that -Xmx is 2G if you computer has 4GB total and add -Xms2G Change the server's JVM Flags so that -Xmx is 3G if you computer has 6GB total and add -Xms3G Change the server's JVM Flags so that -Xmx is 4G if you computer has 8GB total and add -Xms4G "-Xms" for minimum memory instead of 1G default Also, how are you starting your server? If you use a script, could you post it?
-
Help with registering item renders
Hi. I've been having a lot of trouble with registering item renders in my ModItems class. I get an error in the end of the file at registerRender(Item item). It doesn't give much info about the error. It just crashes. If you need more information I can post more of the classes that get referenced. Please help. ModItems.java -- Pastebin
IPS spam blocked by CleanTalk.