Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Vladan899

Vladan899

Forge Modder
 View Profile  See their activity
  • Content Count

    29
  • Joined

    February 26, 2015
  • Last visited

    August 28, 2015

Community Reputation

0 Neutral

About Vladan899

  • Rank
    Tree Puncher
  • Birthday 12/28/1989

Converted

  • Gender
    Male
  • Personal Text
    I am new!
  1. Vladan899 started following 1.8 Custom Flower not rendiring when placed...looks like block February 1, 2017
  2. Vladan899

    [1.8] Custom Furnace recipe

    Vladan899 replied to Vladan899's topic in Modder Support

    I do not know how or where to register Custom recipe? Where do i do that? And no i didn't use vanila recipe... i used from this site....as tutorial. http://jabelarminecraft.blogspot.com/p/minecraft-modding-containers.html And there i do not see any requirements to register custom recipe.
    • August 28, 2015
    • 6 replies
  3. Vladan899

    [1.8] Custom Furnace recipe

    Vladan899 replied to Vladan899's topic in Modder Support

    Vanila Furnace Recipe is working fine...i was using same methods to re-create Recipe but different outputs. When i put ironOre it should give me back IronDust. but no smelting is occurring like it dose not see recipe. Like it dose not exist. this is entire class. package com.vladan899.MachinesRecpie; import java.util.Iterator; import java.util.Map; import java.util.Map.Entry; import net.minecraft.block.Block; import net.minecraft.block.BlockStoneBrick; import net.minecraft.init.Blocks; import net.minecraft.init.Items; import net.minecraft.item.EnumDyeColor; import net.minecraft.item.Item; import net.minecraft.item.ItemFishFood; import net.minecraft.item.ItemStack; import net.minecraft.item.crafting.FurnaceRecipes; import com.google.common.collect.Maps; import com.vladan899.blocks.BlockList; import com.vladan899.items.ItemList; public class SmasherRecpie { private static final SmasherRecpie smeltingBase = new SmasherRecpie(); private Map smeltingList = Maps.newHashMap(); private Map experienceList = Maps.newHashMap(); public static SmasherRecpie instance() { return smeltingBase; } private SmasherRecpie() { this.addSmeltingRecipeForBlock(Blocks.iron_ore, new ItemStack(ItemList.IronDust), 0.7F); this.addSmeltingRecipeForBlock(Blocks.gold_ore, new ItemStack(ItemList.GoldDust), 1.0F); this.addSmeltingRecipeForBlock(BlockList.OreCopper, new ItemStack(ItemList.CopperDust), 1.0F); this.addSmeltingRecipeForBlock(BlockList.OreSilver, new ItemStack(ItemList.SilverDust), 1.0F); this.addSmeltingRecipeForBlock(BlockList.OreTin, new ItemStack(ItemList.TinDust), 1.0F); } public void addSmeltingRecipeForBlock(Block input, ItemStack stack, float experience) { this.addSmelting(Item.getItemFromBlock(input), stack, experience); } public void addSmelting(Item input, ItemStack stack, float experience) { this.addSmeltingRecipe(new ItemStack(input, 1, 32767), stack, experience); } public void addSmeltingRecipe(ItemStack input, ItemStack stack, float experience) { this.smeltingList.put(input, stack); this.experienceList.put(stack, Float.valueOf(experience)); } public ItemStack getSmeltingResult(ItemStack stack) { Iterator iterator = this.smeltingList.entrySet().iterator(); Entry entry; do { if (!iterator.hasNext()) { return null; } entry = (Entry)iterator.next(); } while (!this.compareItemStacks(stack, (ItemStack)entry.getKey())); return (ItemStack)entry.getValue(); } private boolean compareItemStacks(ItemStack stack1, ItemStack stack2) { return stack2.getItem() == stack1.getItem() && (stack2.getMetadata() == 32767 || stack2.getMetadata() == stack1.getMetadata()); } public Map getSmeltingList() { return this.smeltingList; } public float getSmeltingExperience(ItemStack stack) { float ret = stack.getItem().getSmeltingExperience(stack); if (ret != -1) return ret; Iterator iterator = this.experienceList.entrySet().iterator(); Entry entry; do { if (!iterator.hasNext()) { return 0.0F; } entry = (Entry)iterator.next(); } while (!this.compareItemStacks(stack, (ItemStack)entry.getKey())); return ((Float)entry.getValue()).floatValue(); } }
    • August 28, 2015
    • 6 replies
  4. Vladan899

    [1.8] Custom Furnace recipe

    Vladan899 posted a topic in Modder Support

    My Custom furnace recipe is not working... git https://github.com/Vladan899/MoreIndustries
    • August 28, 2015
    • 6 replies
  5. Vladan899

    [1.8] Custom Furnace (SOLVED)

    Vladan899 replied to Vladan899's topic in Modder Support

    Fixed
    • August 28, 2015
    • 10 replies
  6. Vladan899

    [1.8] Custom Furnace (SOLVED)

    Vladan899 replied to Vladan899's topic in Modder Support

    this better? boolean hasBeenSmelting = this.isBurning(); boolean changeSmeltingState = false; if (this.isBurning()) { --this.burnTime; } if (!this.worldObj.isRemote) { if (!this.isBurning() && (this.Total_slots[1] == null || this.Total_slots[0] == null)) { if (!this.isBurning() && this.cookTime > 0) { this.cookTime = MathHelper.clamp_int(this.cookTime - 2, 0, this.cookTime); } } else { if (!this.isBurning() && this.canSmelt()) { this.currentItemBurnTime = this.burnTime = getItemBurnTime(this.Total_slots[1]); if (this.isBurning()) { changeSmeltingState = true; if (this.Total_slots[1] != null) { --this.Total_slots[1].stackSize; if (this.Total_slots[1].stackSize == 0) { this.Total_slots[1] = Total_slots[1].getItem().getContainerItem(Total_slots[1]); } } } } if (this.isBurning() && this.canSmelt()) { ++this.cookTime; if (this.cookTime == this.furnaceSpeed) { this.cookTime = 0; this.smeltItem(); changeSmeltingState = true; } } else { this.cookTime = 0; } } if (hasBeenSmelting != this.isBurning()) { changeSmeltingState = true; BlockMachineSmasher.setState(this.isBurning(), this.worldObj, this.pos); } } if (changeSmeltingState) { this.markDirty(); }
    • August 28, 2015
    • 10 replies
  7. Vladan899

    [1.8] Custom Furnace (SOLVED)

    Vladan899 replied to Vladan899's topic in Modder Support

    I did add = to make it equal ...but still not working
    • August 28, 2015
    • 10 replies
  8. Vladan899

    [1.8] Custom Furnace (SOLVED)

    Vladan899 replied to Vladan899's topic in Modder Support

    custom furnace recipe...for this machine dose not work. As soon i place fuel in slot....block switch state from inactive to active...even tough there is nothing to be smelted....ie no item in smelting slot.
    • August 28, 2015
    • 10 replies
  9. Vladan899

    [1.8] Custom Furnace (SOLVED)

    Vladan899 replied to Vladan899's topic in Modder Support

    That fixed it... Do i create another post...cuz it seems that i have new issue....
    • August 28, 2015
    • 10 replies
  10. Vladan899

    [1.8] Custom Furnace (SOLVED)

    Vladan899 posted a topic in Modder Support

    Whatever i open Custom furnace game freezes for 1-3 seconds and then crashes on desktop. If i do not interact with a block...it works. CrashLog ---- Minecraft Crash Report ---- // Hey, that tickles! Hehehe! Time: 8/28/15 8:49 PM Description: Ticking entity java.lang.NullPointerException: Ticking entity at com.vladan899.container.ContainerOreSmasher.detectAndSendChanges(ContainerOreSmasher.java:87) at net.minecraft.entity.player.EntityPlayerMP.onUpdate(EntityPlayerMP.java:263) at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2031) at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:758) at net.minecraft.world.World.updateEntity(World.java:1997) at net.minecraft.world.World.updateEntities(World.java:1823) at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:587) at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:775) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540) at java.lang.Thread.run(Unknown Source) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at com.vladan899.container.ContainerOreSmasher.detectAndSendChanges(ContainerOreSmasher.java:87) at net.minecraft.entity.player.EntityPlayerMP.onUpdate(EntityPlayerMP.java:263) at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2031) at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:758) at net.minecraft.world.World.updateEntity(World.java:1997) -- Entity being ticked -- Details: Entity Type: null (net.minecraft.entity.player.EntityPlayerMP) Entity ID: 181 Entity Name: Player460 Entity's Exact location: 206.53, 63.00, 159.00 Entity's Block location: 206.00,63.00,159.00 - World: (206,63,159), Chunk: (at 14,3,15 in 12,9; contains blocks 192,0,144 to 207,255,159), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511) Entity's Momentum: 0.00, -0.08, 0.00 Entity's Rider: ~~ERROR~~ NullPointerException: null Entity's Vehicle: ~~ERROR~~ NullPointerException: null Stacktrace: at net.minecraft.world.World.updateEntities(World.java:1823) at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:587) -- Affected level -- Details: Level name: New World All players: 1 total; [EntityPlayerMP['Player460'/181, l='New World', x=206.53, y=63.00, z=159.00]] Chunk stats: ServerChunkCache: 625 Drop: 0 Level seed: 1024147731026552001 Level generator: ID 00 - default, ver 1. Features enabled: true Level generator options: Level spawn location: 212.00,64.00,164.00 - World: (212,64,164), Chunk: (at 4,4,4 in 13,10; contains blocks 208,0,160 to 223,255,175), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511) Level time: 27815 game time, 27815 day time Level dimension: 0 Level storage version: 0x04ABD - Anvil Level weather: Rain time: 95848 (now: false), thunder time: 101675 (now: false) Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: true Stacktrace: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:775) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540) at java.lang.Thread.run(Unknown Source) -- System Details -- Details: Minecraft Version: 1.8 Operating System: Windows 8.1 (amd64) version 6.3 Java Version: 1.8.0_51, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 806670504 bytes (769 MB) / 1056309248 bytes (1007 MB) up to 1056309248 bytes (1007 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95 FML: MCP v9.10 FML v8.0.99.99 Minecraft Forge 11.14.3.1499 4 mods loaded, 4 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{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.8-11.14.3.1499.jar) UCHIJAAAA Forge{11.14.3.1499} [Minecraft Forge] (forgeSrc-1.8-11.14.3.1499.jar) UCHIJAAAA expansion{Alpha 0.0.5} [Expansion: Overhaul] (bin) Loaded coremods (and transformers): GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread. Profiler Position: N/A (disabled) Player Count: 1 / 8; [EntityPlayerMP['Player460'/181, l='New World', x=206.53, y=63.00, z=159.00]] Type: Integrated Server (map_client.txt) Is Modded: Definitely; Client brand changed to 'fml,forge' Github https://github.com/Vladan899/MoreIndustries I know it has something to do with .ContainerOreSmasher.detectAndSendChanges...but i do not know what?
    • August 28, 2015
    • 10 replies
  11. Vladan899

    [1.8] Custom Furnace, some bugs....that i am spinning in circles!

    Vladan899 replied to Vladan899's topic in Modder Support

    Git' https://github.com/Vladan899/MoreIndustries
    • August 21, 2015
    • 12 replies
  12. Vladan899

    [1.8] Custom Furnace, some bugs....that i am spinning in circles!

    Vladan899 replied to Vladan899's topic in Modder Support

    Help please!
    • August 21, 2015
    • 12 replies
  13. Vladan899

    [1.8] Custom Furnace, some bugs....that i am spinning in circles!

    Vladan899 replied to Vladan899's topic in Modder Support

    Line 89 in container is if (this.LastCookTime != tileEntity.getField(2)) 92 is my mistake... was looking something else. i also updated form Code to pastebin....
    • August 20, 2015
    • 12 replies
  14. Vladan899

    [1.8] Custom Furnace, some bugs....that i am spinning in circles!

    Vladan899 replied to Vladan899's topic in Modder Support

    Please help here... I can't seems to figure out what is the issue...it keeps telling me same error. Can someone help what i'm doing wrong with detectAndSendChanges() method? Cuz it keeps point at this line in container. if (this.LastCookTime != tileEntity.getField(2)) while in tileEntity getfield is like switch (id) { case 0: return this.burnTime; case 1: return this.cureentItemBurnTime; case 2: return this.cookTime; case 3: return this.furnaceSpeed; default: return 0; }
    • August 20, 2015
    • 12 replies
  15. Vladan899

    [1.8] Custom Furnace, some bugs....that i am spinning in circles!

    Vladan899 replied to Vladan899's topic in Modder Support

    Error Log. at java.util.concurrent.FutureTask.report(Unknown Source) ~[?:1.8.0_51] at java.util.concurrent.FutureTask.get(Unknown Source) ~[?:1.8.0_51] at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:715) [FMLCommonHandler.class:?] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:727) [MinecraftServer.class:?] at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669) [MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171) [integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540) [MinecraftServer.class:?] at java.lang.Thread.run(Unknown Source) [?:1.8.0_51] Caused by: java.lang.NullPointerException at com.vladan899.container.ContainerOreSmasher.detectAndSendChanges(ContainerOreSmasher.java:87) ~[ContainerOreSmasher.class:?] at net.minecraft.inventory.Container.addCraftingToCrafters(Container.java:62) ~[Container.class:?] at com.vladan899.container.ContainerOreSmasher.addCraftingToCrafters(ContainerOreSmasher.java:69) ~[ContainerOreSmasher.class:?] at net.minecraftforge.fml.common.network.internal.FMLNetworkHandler.openGui(FMLNetworkHandler.java:92) ~[FMLNetworkHandler.class:?] at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2578) ~[EntityPlayer.class:?] at com.vladan899.blocks.properties.BlockMachineSmasher.onBlockActivated(BlockMachineSmasher.java:54) ~[blockMachineSmasher.class:?] at net.minecraft.server.management.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:476) ~[itemInWorldManager.class:?] at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:624) ~[NetHandlerPlayServer.class:?] at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:67) ~[C08PacketPlayerBlockPlacement.class:?] at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:114) ~[C08PacketPlayerBlockPlacement.class:?] at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:24) ~[PacketThreadUtil$1.class:?] at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) ~[?:1.8.0_51] at java.util.concurrent.FutureTask.run(Unknown Source) ~[?:1.8.0_51] at net.minecraftforge.fml.common.FMLCommonHandler.callFuture(FMLCommonHandler.java:714) ~[FMLCommonHandler.class:?] ... 5 more [00:50:15] [server thread/ERROR]: Encountered an unexpected exception net.minecraft.util.ReportedException: Ticking entity at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:781) ~[MinecraftServer.class:?] at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669) ~[MinecraftServer.class:?] at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171) ~[integratedServer.class:?] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540) [MinecraftServer.class:?] at java.lang.Thread.run(Unknown Source) [?:1.8.0_51] Caused by: java.lang.NullPointerException at com.vladan899.container.ContainerOreSmasher.detectAndSendChanges(ContainerOreSmasher.java:87) ~[ContainerOreSmasher.class:?] at net.minecraft.entity.player.EntityPlayerMP.onUpdate(EntityPlayerMP.java:263) ~[EntityPlayerMP.class:?] at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2031) ~[World.class:?] at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:758) ~[WorldServer.class:?] at net.minecraft.world.World.updateEntity(World.java:1997) ~[World.class:?] at net.minecraft.world.World.updateEntities(World.java:1823) ~[World.class:?] at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:587) ~[WorldServer.class:?] at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:775) ~[MinecraftServer.class:?] ... 4 more [00:50:15] [server thread/ERROR]: This crash report has been saved to: D:\Modding\forge-1.8-11.14.3.1499-src\eclipse\.\crash-reports\crash-2015-08-21_00.50.15-server.txt [00:50:15] [server thread/INFO]: Stopping server [00:50:15] [server thread/INFO]: Saving players [00:50:15] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:663]: ---- Minecraft Crash Report ---- // There are four lights! Time: 8/21/15 12:50 AM Description: Ticking entity java.lang.NullPointerException: Ticking entity at com.vladan899.container.ContainerOreSmasher.detectAndSendChanges(ContainerOreSmasher.java:87) at net.minecraft.entity.player.EntityPlayerMP.onUpdate(EntityPlayerMP.java:263) at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2031) at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:758) at net.minecraft.world.World.updateEntity(World.java:1997) at net.minecraft.world.World.updateEntities(World.java:1823) at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:587) at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:775) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540) at java.lang.Thread.run(Unknown Source) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at com.vladan899.container.ContainerOreSmasher.detectAndSendChanges(ContainerOreSmasher.java:87) at net.minecraft.entity.player.EntityPlayerMP.onUpdate(EntityPlayerMP.java:263) at net.minecraft.world.World.updateEntityWithOptionalForce(World.java:2031) at net.minecraft.world.WorldServer.updateEntityWithOptionalForce(WorldServer.java:758) at net.minecraft.world.World.updateEntity(World.java:1997) -- Entity being ticked -- Details: Entity Type: null (net.minecraft.entity.player.EntityPlayerMP) Entity ID: 182 Entity Name: Player784 Entity's Exact location: 206.53, 63.00, 159.00 Entity's Block location: 206.00,63.00,159.00 - World: (206,63,159), Chunk: (at 14,3,15 in 12,9; contains blocks 192,0,144 to 207,255,159), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511) Entity's Momentum: 0.00, -0.08, 0.00 Entity's Rider: ~~ERROR~~ NullPointerException: null Entity's Vehicle: ~~ERROR~~ NullPointerException: null Stacktrace: at net.minecraft.world.World.updateEntities(World.java:1823) at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:587) -- Affected level -- Details: Level name: New World All players: 1 total; [EntityPlayerMP['Player784'/182, l='New World', x=206.53, y=63.00, z=159.00]] Chunk stats: ServerChunkCache: 625 Drop: 0 Level seed: 1024147731026552001 Level generator: ID 00 - default, ver 1. Features enabled: true Level generator options: Level spawn location: 212.00,64.00,164.00 - World: (212,64,164), Chunk: (at 4,4,4 in 13,10; contains blocks 208,0,160 to 223,255,175), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511) Level time: 27575 game time, 27575 day time Level dimension: 0 Level storage version: 0x04ABD - Anvil Level weather: Rain time: 96088 (now: false), thunder time: 101915 (now: false) Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: true Stacktrace: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:775) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:669) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:171) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:540) at java.lang.Thread.run(Unknown Source) -- System Details -- Details: Minecraft Version: 1.8 Operating System: Windows 8.1 (amd64) version 6.3 Java Version: 1.8.0_51, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 752127976 bytes (717 MB) / 1056309248 bytes (1007 MB) up to 1056309248 bytes (1007 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95 FML: MCP v9.10 FML v8.0.99.99 Minecraft Forge 11.14.3.1499 4 mods loaded, 4 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{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.8-11.14.3.1499.jar) UCHIJAAAA Forge{11.14.3.1499} [Minecraft Forge] (forgeSrc-1.8-11.14.3.1499.jar) UCHIJAAAA expansion{Alpha 0.0.5} [Expansion: Overhaul] (bin) Loaded coremods (and transformers): GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread. Profiler Position: N/A (disabled) Player Count: 1 / 8; [EntityPlayerMP['Player784'/182, l='New World', x=206.53, y=63.00, z=159.00]] Type: Integrated Server (map_client.txt) Is Modded: Definitely; Client brand changed to 'fml,forge' Whatever i open my custom furnace it opens for about 1-2 seconds or less and then crashes. It opens the gui but it after short while crashes. Edit: I did made detectAndSendChanges method with empthy body and it wont crash...and i do not know how to fix this.
    • August 20, 2015
    • 12 replies
  16. Vladan899

    [1.8] Custom Furnace, some bugs....that i am spinning in circles!

    Vladan899 replied to Vladan899's topic in Modder Support

    Sorry about that. Is my tileEntity slot broken?
    • August 20, 2015
    • 12 replies
  • All Activity
  • Home
  • Vladan899
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community