Jump to content

busterbrown1999

Members
  • Posts

    17
  • Joined

  • Last visited

Converted

  • Gender
    Male

busterbrown1999's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Thank you! Just knowing that I need to use the shapedOreRecipe helped me find something to create it.
  2. Hello I would like to add in a crafting recipe that used 4 of any-type of wood. minecraft has the log and the log2. I know I can used the oreDictonary but i am having some trouble. The current recipe I have will craft using oak spruce birch and jungle how do I add in the logWood from the ore dictonary?
  3. I figured it out I just needed a main/java and main/resources folder to be present. Very weird crash log for that crash
  4. My minecraft in eclipse crashes over and over with the line at net.minecraft.client.renderer.block.model.ModelBlock.getRootModel(ModelBlock.java:170)
  5. There is no config folder in my eclipse workspace folder I have .metadata crash-reports logs and mods folder
  6. where is the config folder located I have searched and it doesn't seem to exist
  7. I changed the enabled to false in my appdata/roaming/./minecraft/config/splash.properties but this did not change anything. Is there a different directory in the folder I am running eclipse on that should be changing instead?
  8. ---- Minecraft Crash Report ---- // Would you like a cupcake? Time: 10/21/15 10:20 AM Description: Initializing game org.lwjgl.LWJGLException: Pixel format not accelerated at org.lwjgl.opengl.WindowsPeerInfo.nChoosePixelFormat(Native Method) at org.lwjgl.opengl.WindowsPeerInfo.choosePixelFormat(WindowsPeerInfo.java:52) at org.lwjgl.opengl.WindowsDisplay.createWindow(WindowsDisplay.java:252) at org.lwjgl.opengl.Display.createWindow(Display.java:306) at org.lwjgl.opengl.Display.create(Display.java:848) at org.lwjgl.opengl.Display.create(Display.java:757) at org.lwjgl.opengl.Display.create(Display.java:739) at net.minecraft.client.Minecraft.createDisplay(Minecraft.java:613) at net.minecraft.client.Minecraft.startGame(Minecraft.java:437) at net.minecraft.client.Minecraft.run(Minecraft.java:356) at net.minecraft.client.main.Main.main(Main.java:117) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) at GradleStart.main(Unknown Source) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at org.lwjgl.opengl.WindowsPeerInfo.nChoosePixelFormat(Native Method) at org.lwjgl.opengl.WindowsPeerInfo.choosePixelFormat(WindowsPeerInfo.java:52) at org.lwjgl.opengl.WindowsDisplay.createWindow(WindowsDisplay.java:252) at org.lwjgl.opengl.Display.createWindow(Display.java:306) at org.lwjgl.opengl.Display.create(Display.java:848) at org.lwjgl.opengl.Display.create(Display.java:757) at org.lwjgl.opengl.Display.create(Display.java:739) at net.minecraft.client.Minecraft.createDisplay(Minecraft.java:613) at net.minecraft.client.Minecraft.startGame(Minecraft.java:437) -- Initialization -- Details: Stacktrace: at net.minecraft.client.Minecraft.run(Minecraft.java:356) at net.minecraft.client.main.Main.main(Main.java:117) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) at GradleStart.main(Unknown Source) -- System Details -- Details: Minecraft Version: 1.8 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_65, Oracle Corporation Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 227503776 bytes (216 MB) / 327680000 bytes (312 MB) up to 1894252544 bytes (1806 MB) JVM Flags: 0 total; IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): Launched Version: 1.8 LWJGL: 2.9.1 OpenGL: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread. GL Caps: Using VBOs: No Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Resource Packs: [] Current Language: ~~ERROR~~ NullPointerException: null Profiler Position: N/A (disabled) I can't load minecraft in eclipe. I have no mods. I just installed it. I also have all my drivers Up to-date.
  9. im getting one erroror in the Shapeless Cutting Recipe class, the error is at remainingItems = net.minecraftforge.common.ForgeHooks.getContainerItem(itemstack); eclipse tells me "the method getContainerItem(itemstack)is undefined for the type ForgeHooks" I'm able to load Minecraft and craft it but it eats my axe also is this correct way to register my recipe I renamed Shapeless cutting recipe to FirewoodAxe GameRegistry.addRecipe(new FirewoodAxe(new ItemStack(BlockFirewood, 4), new ItemStack(Items.wooden_axe, 1, OreDictionary.WILDCARD_VALUE), new ItemStack(Blocks.log,1,OreDictionary.WILDCARD_VALUE))); -Thanks everyone for the help
  10. Everything about the Block looks fine and functions. When ever it is broken it has missing texture partical effects
  11. What do i add after OreDictionary there is a lot of choices GameRegistry.addRecipe(new ItemStack(BlockFirewood,4),new Object[]{" L ","L L"," L ",'L',new ItemStack(OreDictionary.??)}); And also how would I Add an axe into this recipe that takes one damage and returns it to you and make it non specific to the axe type
  12. I made crafting recipe that i want be able to use both Log which is spruce jungle oak and birch but Minecraft has log2 which is acaScia and dark oak right now I can only use log im my crafting recipe how can i make the other one part of it too?
  13. My subBlocks are not showing up in my Creative tab this is way i'm trying to get them to show up. @SideOnly(Side.CLIENT) public void getSubBlock(Item Block,CreativeTabs tab, List subBlocks){ for (int ix = 0; ix < 15; ix++){ subBlocks.add(new ItemStack(Block, 1, ix)); } } It only shows the block with the meta data of 0, but not any 1-15
×
×
  • Create New...

Important Information

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