Everything posted by HappyKiller1O1
-
[1.7.10] Need my item to get the players display name
Heyo! So, my question here today is how would I be able to right click a player with my item and then, grab the players display name to save the the itemstack NBT. Pretty simple so thanks for the input in advance.
-
[SOLVED] im a newb
Boonie, just as a tip for you to learn: I enjoyed ScratchForFun and MrCrayFishs' tutorials on forge modding to help me understand programming and mod making better. I'm sure they could teach you some things to help you on your journey.
-
[1.7.10] Changing the camera - how to force 3rd person view
I think you maybe would need to send a packet to the server that would change the boolean then, update the client.
-
[1.7.10]Generating pools of Oil with WorldGenLakes not working?[solved]
I'm pretty sure you need to make the lake generator a different class. I've never worked with it before but, it could be conflicting.
-
[1.7.10] Changing the camera - how to force 3rd person view
Well, that's where it's defined. Is there some way to make the computer think you pressed the key then, disable it?
-
WIP mod issues
Are your textures not loading in the dev environment or, after being compiled?
-
[1.7.10] Changing the camera - how to force 3rd person view
When you run while the player looks like he's hovering, does the particles for the ground display? In that case it could be the texture is being misplaced?
-
[1.7.10] Gui crashing client.
For my packet, I just send one item at a time per purchase. So, would I just create an itemstack and save it?
-
[1.7.10] Gui crashing client.
So, just a small question: how would I save the Item that I sent for processing to the ByteBuf?
-
[1.7.10] Gui crashing client.
No need for the anger. I understand that and, that's what I'm changing as we speak. Ernio asked for the buying code so, I told him where it currently was.
-
[1.7.10] Gui crashing client.
All the code that handles the buying is in the guishopblock. I think I understand what to do now though.
-
[1.7.10] Gui crashing client.
So, I need to subtract the cost in the server packet?
-
[1.7.10] Gui crashing client.
Well, when sending a packet to the server and then, in the onMessage having it send the client change packet back; it updates but the value doesn't save so, the next time I pick up a coin, it's like it never charged me.
-
[1.7.10] Gui crashing client.
So, using "this.mc.thePlayer.worldObj" yielded the error "EntityClientPlayerMP cannot be cast to EntityPlayerMP" which I kinda expected. Here's my class code (quite messy considering the development it is still in): public class GuiShopBlock extends GuiScreen { public static final ResourceLocation texture = new ResourceLocation(MR.TNAME + "textures/gui/crew_shop.png"); private static final ResourceLocation crewShopPurchase = new ResourceLocation(MR.TNAME + "textures/gui/crew_shop_purchase.png"); private int xSize; private int ySize; private int itemPrice; RenderItem renderedItem; Item item; GuiSlider slider; GuiButton buy; GuiButton exit; GuiButton prev; GuiButton next; GuiButton exitGui; private boolean canDisplayPurchase; public GuiShopBlock() { this.xSize = 176; this.ySize = 166; renderedItem = new RenderItem(); canDisplayPurchase = false; itemPrice = 0; item = null; } public void initGui() { int k = (this.width - this.xSize) / 2; int l = (this.height - this.ySize) / 2; buttonList.clear(); slider = new GuiSlider(0, k + 48, l + 40, 72, 14, "Quantity: ", "", 1, 64, 1, false, true); buy = new GuiButton(1, k + 49, l + 79, 26, 14, "Buy"); exit = new GuiButton(2, k + 92, l + 79, 26, 14, "Exit"); prev = new GuiButton(3, k + 6, l + 142, 10, 20, "<"); next = new GuiButton(4, k + 158, l + 142, 10, 20, ">"); exitGui = new GuiButton(5, k + 70, l + 142, 30, 20, "Exit"); buttonList.add(slider); buttonList.add(buy); buttonList.add(exit); buttonList.add(prev); buttonList.add(next); buttonList.add(exitGui); slider.visible = false; buy.visible = false; exit.visible = false; prev.enabled = false; } public void actionPerformed(GuiButton button) { int cost = (int)(slider.getValueInt() * itemPrice); int userID = this.mc.thePlayer.getEntityId(); World world = this.mc.thePlayer.worldObj; EntityPlayer player = (EntityPlayer)world.getEntityByID(userID); ExtendedPlayer ep = ExtendedPlayer.get(player); switch(button.id) { case 0: break; case 1: if(canPlayerBuy(cost)) { ep.modifyCrewCoins(-cost); PacketRegistry.network.sendTo(new PacketCoinChangeClient(player, ep.getCrewCoinAmount()), (EntityPlayerMP)player); ItemStack stack = new ItemStack(this.item, slider.getValueInt(), 0); if(stack != null) { EntityItem item = new EntityItem(world, player.posX, player.posY, player.posZ, stack); if(!world.isRemote) { world.spawnEntityInWorld(item); } } closePurchase(); }else { EventsClientForge.purchaseError(); } break; case 2: closePurchase(); break; case 3: break; case 4: if(this.mc.theWorld.isRemote) this.mc.displayGuiScreen(new GuiShopBlockP2()); break; case 5: this.mc.displayGuiScreen((GuiScreen)null); break; } } public void drawScreen(int x, int y, float f) { GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F); int k = (this.width - this.xSize) / 2; int l = (this.height - this.ySize) / 2; mc.getTextureManager().bindTexture(texture); this.drawTexturedModalRect(k, l, 0, 0, xSize, ySize); this.renderItemOnGui(Items.emerald, 0, 0); this.renderItemOnGui(Items.diamond, 100, 0); this.renderItemOnGui(Items.gold_ingot, 0, 25); this.renderItemOnGui(Items.iron_ingot, 100, 25); this.renderItemOnGui(Items.quartz, 0, 50); this.renderItemOnGui(Items.redstone, 100, 50); this.drawString(mc.fontRenderer, "Crew Shop", k + 60, l + 8, 0xFFFFFF); this.drawString(mc.fontRenderer, "Welcome to the Crew Shop!", k + 20, l + 100, 0xFFFFFF); this.drawString(mc.fontRenderer, "To purchase an something,", k + 18, l + 114, 0xFFFFFF); this.drawString(mc.fontRenderer, "please click an item above.", k + 20, l + 124, 0xFFFFFF); if(this.canDisplayPurchase) { this.drawPurchaseOverlay(); } super.drawScreen(x, y, f); this.drawToolTips(x, y); } public void drawToolTips(int mouseX, int mouseY) { int boxX = (this.width - this.xSize) / 2 + 25; int boxY = (this.height - this.ySize) / 2 + 25; int defaultX = 16; int defaultY = 16; /* Left Side */ if(mouseX > boxX && mouseX < boxX + defaultX && mouseY > boxY && mouseY < boxY + defaultY) { List list = new ArrayList(); defaultTooltip(list, ItemPrices.EMERALD, "Emerald"); this.drawTooltipText(list, mouseX, mouseY, fontRendererObj); } if(mouseX > boxX && mouseX < boxX + defaultX && mouseY > boxY + 25 && mouseY < boxY + 25 + defaultY) { List list = new ArrayList(); defaultTooltip(list, ItemPrices.GOLD_INGOT, "Gold Ingot"); this.drawTooltipText(list, mouseX, mouseY, fontRendererObj); } if(mouseX > boxX && mouseX < boxX + defaultX && mouseY > boxY + 50 && mouseY < boxY + 50 + defaultY) { List list = new ArrayList(); defaultTooltip(list, ItemPrices.QUARTZ, "Quartz"); this.drawTooltipText(list, mouseX, mouseY, fontRendererObj); } /* Right Side */ if(mouseX > boxX + 100 && mouseX < boxX + 100 + defaultX && mouseY > boxY && mouseY < boxY + defaultY) { List list = new ArrayList(); defaultTooltip(list, ItemPrices.DIAMOND, "Diamond"); this.drawTooltipText(list, mouseX, mouseY, fontRendererObj); } if(mouseX > boxX + 100 && mouseX < boxX + 100 + defaultX && mouseY > boxY + 25 && mouseY < boxY + 25 + defaultY) { List list = new ArrayList(); defaultTooltip(list, ItemPrices.IRON_INGOT, "Iron Ingot"); this.drawTooltipText(list, mouseX, mouseY, fontRendererObj); } if(mouseX > boxX + 100 && mouseX < boxX + 100 + defaultX && mouseY > boxY + 50 && mouseY < boxY + 50 + defaultY) { List list = new ArrayList(); defaultTooltip(list, ItemPrices.REDSTONE, "Redstone"); this.drawTooltipText(list, mouseX, mouseY, fontRendererObj); } } public void mouseClicked(int mouseX, int mouseY, int which) { int boxX = (this.width - this.xSize) / 2 + 25; int boxY = (this.height - this.ySize) / 2 + 25; int defaultX = 16; int defaultY = 16; if(!this.canDisplayPurchase && which == 0) { /* Left Side */ if(mouseX > boxX && mouseX < boxX + defaultX && mouseY > boxY && mouseY < boxY + defaultY) { openPurchase(ItemPrices.EMERALD, Items.emerald); } if(mouseX > boxX && mouseX < boxX + defaultX && mouseY > boxY + 25 && mouseY < boxY + 25 + defaultY) { openPurchase(ItemPrices.GOLD_INGOT, Items.gold_ingot); } if(mouseX > boxX && mouseX < boxX + defaultX && mouseY > boxY + 50 && mouseY < boxY + 50 + defaultY) { openPurchase(ItemPrices.QUARTZ, Items.quartz); } /* Right Side */ if(mouseX > boxX + 100 && mouseX < boxX + 100 + defaultX && mouseY > boxY && mouseY < boxY + defaultY) { openPurchase(ItemPrices.DIAMOND, Items.diamond); } if(mouseX > boxX + 100 && mouseX < boxX + 100 + defaultX && mouseY > boxY + 25 && mouseY < boxY + 25 + defaultY) { openPurchase(ItemPrices.IRON_INGOT, Items.iron_ingot); } if(mouseX > boxX + 100 && mouseX < boxX + 100 + defaultX && mouseY > boxY + 50 && mouseY < boxY + 50 + defaultY) { openPurchase(ItemPrices.REDSTONE, Items.redstone); } } super.mouseClicked(mouseX, mouseY, which); } public void renderItemOnGui(Item item, int mulX, int mulY) { int k = (this.width - this.xSize) / 2 + 25; int l = (this.height - this.ySize) / 2 + 25; GL11.glPushMatrix(); RenderHelper.enableGUIStandardItemLighting(); GL11.glDisable(GL11.GL_LIGHTING); GL11.glEnable(GL12.GL_RESCALE_NORMAL); GL11.glEnable(GL11.GL_COLOR_MATERIAL); GL11.glEnable(GL11.GL_LIGHTING); //GL11.glScalef(2.00F, 2.00F, 2.00F); renderedItem.renderItemAndEffectIntoGUI(mc.fontRenderer, mc.getTextureManager(), new ItemStack(item), k + mulX, l + mulY); GL11.glDisable(GL11.GL_LIGHTING); GL11.glDepthMask(true); GL11.glEnable(GL11.GL_DEPTH_TEST); RenderHelper.disableStandardItemLighting(); GL11.glPopMatrix(); } private void drawPurchaseOverlay() { //GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F); int xSize = 80; int ySize = 62; int k = (this.width - this.xSize) / 2; int l = (this.height - this.ySize) / 2; mc.getTextureManager().bindTexture(crewShopPurchase); this.drawTexturedModalRect(k + 44, l + 34, 0, 0, this.xSize, this.ySize); this.renderItemOnGui(this.item, 50, 36); //this.drawCenteredString(mc.fontRenderer, "Purchase Item", k + 84, l + 40, 0xFFFFFF); //RenderHelper.enableGUIStandardItemLighting(); //GL11.glDisable(GL11.GL_LIGHTING); //GL11.glEnable(GL12.GL_RESCALE_NORMAL); //GL11.glEnable(GL11.GL_COLOR_MATERIAL); //GL11.glEnable(GL11.GL_LIGHTING); //GL11.glScalef(2.00F, 2.00F, 2.00F); //renderedItem.renderItemAndEffectIntoGUI(mc.fontRenderer, mc.getTextureManager(), new ItemStack(itemForRender), k + 25, l + 25); //GL11.glDisable(GL11.GL_LIGHTING); //GL11.glDepthMask(true); //GL11.glEnable(GL11.GL_DEPTH_TEST); //GL11.glPopMatrix(); } private void openPurchase(int itemPrice, Item itemToDrop) { this.canDisplayPurchase = true; slider.visible = true; buy.visible = true; exit.visible = true; this.itemPrice = itemPrice; this.item = itemToDrop; slider.maxValue = item.getItemStackLimit(); slider.updateSlider(); next.enabled = false; exitGui.enabled = false; } public void closePurchase() { canDisplayPurchase = false; slider.visible = false; buy.visible = false; exit.visible = false; slider.setValue(1D); slider.maxValue = 64; slider.updateSlider(); this.item = null; next.enabled = true; exitGui.enabled = true; } private void drawTooltipText(List list, int mouseX, int mouseY, FontRenderer fr) { if(!this.canDisplayPurchase) { this.drawHoveringText(list, mouseX, mouseY, fr); }else { return; } } private void defaultTooltip(List list, int itemP, String itemN) { list.add(EnumChatFormatting.YELLOW + itemN); list.add(EnumChatFormatting.AQUA + "Price: " + getCost(itemP)); } private boolean canPlayerBuy(int cost) { if(ExtendedPlayer.get(this.mc.thePlayer).getCrewCoinAmount() >= cost) { return true; }else { return false; } } private String getCost(int itemPrice) { if(ExtendedPlayer.get(this.mc.thePlayer).getCrewCoinAmount() >= itemPrice) { return EnumChatFormatting.GREEN.toString() + itemPrice; }else { return EnumChatFormatting.RED.toString() + itemPrice; } } public void keyTyped(char character, int key) { if(key == Keyboard.KEY_E) { if(this.canDisplayPurchase) { closePurchase(); }else { this.mc.displayGuiScreen((GuiScreen)null); } } super.keyTyped(character, key); } public boolean doesGuiPauseGame() { return false; } }
-
[1.7.10] Gui crashing client.
I'll post the full code if my recent edit doesn't work. And Ernio... CONGRATS
-
[1.7.10] Gui crashing client.
So, I was testing my mod on a test server I created with eclipse and, during the process I opened my shop Gui. Worked fine until I clicked the button that displays another gui. Then the client crashed and gave me this: net.minecraft.util.ReportedException: Updating screen events at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1642) ~[bao.class:?] at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:961) ~[bao.class:?] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:887) [bao.class:?] at net.minecraft.client.main.Main.main(SourceFile:148) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_25] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_25] at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_25] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] Caused by: java.lang.NullPointerException at com.happykiller.crewmod.client.gui.GuiShopBlock.func_146284_a(GuiShopBlock.java:100) ~[GuiShopBlock.class:?] at net.minecraft.client.gui.GuiScreen.func_73864_a(GuiScreen.java:225) ~[bdw.class:?] at com.happykiller.crewmod.client.gui.GuiShopBlock.func_73864_a(GuiShopBlock.java:259) ~[GuiShopBlock.class:?] at net.minecraft.client.gui.GuiScreen.func_146274_d(GuiScreen.java:296) ~[bdw.class:?] at net.minecraft.client.gui.GuiScreen.func_146269_k(GuiScreen.java:268) ~[bdw.class:?] at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1628) ~[bao.class:?] ... 9 more The two lines that it says caused it are as followed: World world = FMLCommonHandler.instance().getMinecraftServerInstance().getEntityWorld(); //Line 100 in the actionPerformed method. super.mouseClicked(mouseX, mouseY, which); //Line 259 under the mouseClicked method. I do not understand how it can not get the world. I can't do a server check or else the world for the server will be unreachable by lower code that requires it. Any help will be greatly appreciated!
-
[1.7.10] Trying to get the block the player is looking at
Well... let me go try that.
-
[1.7.10] Trying to get the block the player is looking at
So, what I need to do is get the block the player is looking at. Now, I have already done that but with one problem... It runs it on the server! See, I use: MovingObjectPosition mop = Minecraft.getMinecraft().renderViewEntity.rayTrace(5, 1.0F); This goes into my item classes "onItemRightClick" method. Considering this is a server method, it crashes the server when attempting to spawn the structure I set for it. I tried "player.rayTrace" but, it only gets the block directly below the player. How would I make this work on a server? Here's some of my class code: public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player) { int direction = MathHelper.floor_double((double)(player.rotationYaw * 4.0F / 360.0F) + 0.5D) & 3; MovingObjectPosition mop = Minecraft.getMinecraft().renderViewEntity.rayTrace(5, 1.0F); if(!world.isRemote) { if(direction == 2) { spawnShopNorth(world, world.rand, mop.blockX, mop.blockY, mop.blockZ); stack.stackSize--; }else if(direction == 3) { spawnShopEast(world, world.rand, mop.blockX, mop.blockY, mop.blockZ); stack.stackSize--; }else if(direction == 0) { spawnShopSouth(world, world.rand, mop.blockX, mop.blockY, mop.blockZ); stack.stackSize--; }else { spawnShopWest(world, world.rand, mop.blockX, mop.blockY, mop.blockZ); stack.stackSize--; } }else { //System.out.println("CLIENT SIDE"); } return stack; } public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean flag) { list.add((EnumChatFormatting.GREEN + "Right click to spawn a small")); list.add((EnumChatFormatting.GREEN + "structure containing the shop.")); list.add(("")); list.add((EnumChatFormatting.RED + "WARNING: Structure spawns in a")); list.add((EnumChatFormatting.RED + "3 x 5 area. Make sure to clear one!")); } public boolean spawnShopNorth(World world, Random random, int x, int y, int z) { System.out.println("Shop method called."); Block shop = CrewMod.shopBlock; Block aLog = Blocks.log2; Block doLog = Blocks.log2; Block fence = Blocks.fence; Block sSlab = Blocks.wooden_slab; Block mCWall = Blocks.cobblestone_wall; Block wWool = Blocks.wool; Block rWool = Blocks.wool; Block doPlank = Blocks.planks; Block glowstone = Blocks.glowstone; while(world.isAirBlock(x, y, z) && y > 2) { y--; } y += 1; /* Mid Section */ world.setBlock(x, y, z, shop); world.setBlockToAir(x + 1, y, z); world.setBlockToAir(x - 1, y, z); world.setBlock(x, y, z - 1, mCWall, 1, 2); world.setBlock(x - 1, y, z - 1, mCWall, 1, 2); world.setBlock(x + 1, y, z - 1, mCWall, 1, 2); world.setBlock(x - 2, y, z - 1, doLog, 1, 2); world.setBlock(x + 2, y, z - 1, doLog, 1, 2); world.setBlock(x - 2, y, z, sSlab, 1, 2); world.setBlock(x + 2, y, z, sSlab, 1, 2); world.setBlock(x - 2, y, z + 1, doLog, 1, 2); world.setBlock(x + 2, y, z + 1, doLog, 1, 2); world.setBlock(x - 1, y, z + 1, mCWall, 1, 2); world.setBlock(x + 1, y, z + 1, mCWall, 1, 2); /* Floor */ world.setBlock(x, y - 1, z, doPlank, 5, 2); world.setBlock(x + 1, y - 1, z, doPlank, 5, 2); world.setBlock(x - 1, y - 1, z, doPlank, 5, 2); world.setBlock(x, y - 1, z - 1, aLog, 4, 2); world.setBlock(x + 1, y - 1, z - 1, aLog, 4, 2); world.setBlock(x - 1, y - 1, z - 1, aLog, 4, 2); world.setBlock(x, y - 1, z + 1, aLog, 4, 2); world.setBlock(x + 1, y - 1, z + 1, aLog, 4, 2); world.setBlock(x - 1, y - 1, z + 1, aLog, 4, 2); world.setBlock(x - 2, y - 1, z - 1, doLog, 1, 2); world.setBlock(x + 2, y - 1, z - 1, doLog, 1, 2); world.setBlock(x - 2, y - 1, z + 1, doLog, 1, 2); world.setBlock(x + 2, y - 1, z + 1, doLog, 1, 2); world.setBlock(x + 2, y - 1, z, aLog, 8, 2); world.setBlock(x - 2, y - 1, z, aLog, 8, 2); /* Roof */ world.setBlock(x - 2, y + 1, z - 1, fence, 0, 2); world.setBlock(x + 2, y + 1, z - 1, fence, 0, 2); world.setBlock(x - 2, y + 1, z + 1, fence, 0, 2); world.setBlock(x + 2, y + 1, z + 1, fence, 0, 2); world.setBlock(x - 2, y + 2, z - 1, fence, 0, 2); world.setBlock(x + 2, y + 2, z - 1, fence, 0, 2); world.setBlock(x - 2, y + 2, z + 1, fence, 0, 2); world.setBlock(x + 2, y + 2, z + 1, fence, 0, 2); world.setBlock(x - 2, y + 3, z - 1, rWool, 14, 2); world.setBlock(x + 2, y + 3, z - 1, rWool, 14, 2); world.setBlock(x - 2, y + 3, z + 1, rWool, 14, 2); world.setBlock(x + 2, y + 3, z + 1, rWool, 14, 2); world.setBlock(x - 2, y + 3, z, wWool, 0, 2); world.setBlock(x + 2, y + 3, z, wWool, 0, 2); world.setBlock(x - 1, y + 3, z - 1, wWool, 0, 2); world.setBlock(x + 1, y + 3, z - 1, wWool, 0, 2); world.setBlock(x - 1, y + 3, z + 1, wWool, 0, 2); world.setBlock(x + 1, y + 3, z + 1, wWool, 0, 2); world.setBlock(x, y + 3, z + 1, rWool, 14, 2); world.setBlock(x, y + 3, z - 1, rWool, 14, 2); world.setBlock(x - 1, y + 4, z, rWool, 14, 2); world.setBlock(x + 1, y + 4, z, rWool, 14, 2); world.setBlock(x, y + 4, z, wWool, 0, 2); world.setBlock(x - 1, y + 3, z, glowstone, 0, 2); world.setBlock(x + 1, y + 3, z, glowstone, 0, 2); world.setBlock(x, y + 3, z, glowstone, 0, 2); return true; } public boolean spawnShopSouth(World world, Random random, int x, int y, int z) { System.out.println("Shop method called."); Block shop = CrewMod.shopBlock; Block aLog = Blocks.log2; Block doLog = Blocks.log2; Block fence = Blocks.fence; Block sSlab = Blocks.wooden_slab; Block mCWall = Blocks.cobblestone_wall; Block wWool = Blocks.wool; Block rWool = Blocks.wool; Block doPlank = Blocks.planks; Block glowstone = Blocks.glowstone; while(world.isAirBlock(x, y, z) && y > 2) { y--; } y += 1; /* Mid Section */ world.setBlock(x, y, z, shop); world.setBlockToAir(x + 1, y, z); world.setBlockToAir(x - 1, y, z); world.setBlock(x, y, z + 1, mCWall, 1, 2); world.setBlock(x - 1, y, z - 1, mCWall, 1, 2); world.setBlock(x + 1, y, z - 1, mCWall, 1, 2); world.setBlock(x - 2, y, z - 1, doLog, 1, 2); world.setBlock(x + 2, y, z - 1, doLog, 1, 2); world.setBlock(x - 2, y, z, sSlab, 1, 2); world.setBlock(x + 2, y, z, sSlab, 1, 2); world.setBlock(x - 2, y, z + 1, doLog, 1, 2); world.setBlock(x + 2, y, z + 1, doLog, 1, 2); world.setBlock(x - 1, y, z + 1, mCWall, 1, 2); world.setBlock(x + 1, y, z + 1, mCWall, 1, 2); /* Floor */ world.setBlock(x, y - 1, z, doPlank, 5, 2); world.setBlock(x + 1, y - 1, z, doPlank, 5, 2); world.setBlock(x - 1, y - 1, z, doPlank, 5, 2); world.setBlock(x, y - 1, z - 1, aLog, 4, 2); world.setBlock(x + 1, y - 1, z - 1, aLog, 4, 2); world.setBlock(x - 1, y - 1, z - 1, aLog, 4, 2); world.setBlock(x, y - 1, z + 1, aLog, 4, 2); world.setBlock(x + 1, y - 1, z + 1, aLog, 4, 2); world.setBlock(x - 1, y - 1, z + 1, aLog, 4, 2); world.setBlock(x - 2, y - 1, z - 1, doLog, 1, 2); world.setBlock(x + 2, y - 1, z - 1, doLog, 1, 2); world.setBlock(x - 2, y - 1, z + 1, doLog, 1, 2); world.setBlock(x + 2, y - 1, z + 1, doLog, 1, 2); world.setBlock(x + 2, y - 1, z, aLog, 8, 2); world.setBlock(x - 2, y - 1, z, aLog, 8, 2); /* Roof */ world.setBlock(x - 2, y + 1, z - 1, fence, 0, 2); world.setBlock(x + 2, y + 1, z - 1, fence, 0, 2); world.setBlock(x - 2, y + 1, z + 1, fence, 0, 2); world.setBlock(x + 2, y + 1, z + 1, fence, 0, 2); world.setBlock(x - 2, y + 2, z - 1, fence, 0, 2); world.setBlock(x + 2, y + 2, z - 1, fence, 0, 2); world.setBlock(x - 2, y + 2, z + 1, fence, 0, 2); world.setBlock(x + 2, y + 2, z + 1, fence, 0, 2); world.setBlock(x - 2, y + 3, z - 1, rWool, 14, 2); world.setBlock(x + 2, y + 3, z - 1, rWool, 14, 2); world.setBlock(x - 2, y + 3, z + 1, rWool, 14, 2); world.setBlock(x + 2, y + 3, z + 1, rWool, 14, 2); world.setBlock(x - 2, y + 3, z, wWool, 0, 2); world.setBlock(x + 2, y + 3, z, wWool, 0, 2); world.setBlock(x - 1, y + 3, z - 1, wWool, 0, 2); world.setBlock(x + 1, y + 3, z - 1, wWool, 0, 2); world.setBlock(x - 1, y + 3, z + 1, wWool, 0, 2); world.setBlock(x + 1, y + 3, z + 1, wWool, 0, 2); world.setBlock(x, y + 3, z + 1, rWool, 14, 2); world.setBlock(x, y + 3, z - 1, rWool, 14, 2); world.setBlock(x - 1, y + 4, z, rWool, 14, 2); world.setBlock(x + 1, y + 4, z, rWool, 14, 2); world.setBlock(x, y + 4, z, wWool, 0, 2); world.setBlock(x - 1, y + 3, z, glowstone, 0, 2); world.setBlock(x + 1, y + 3, z, glowstone, 0, 2); world.setBlock(x, y + 3, z, glowstone, 0, 2); return true; } public boolean spawnShopEast(World world, Random random, int x, int y, int z) { System.out.println("Shop method called."); Block shop = CrewMod.shopBlock; Block aLog = Blocks.log2; Block doLog = Blocks.log2; Block fence = Blocks.fence; Block sSlab = Blocks.wooden_slab; Block mCWall = Blocks.cobblestone_wall; Block wWool = Blocks.wool; Block rWool = Blocks.wool; Block doPlank = Blocks.planks; Block glowstone = Blocks.glowstone; while(world.isAirBlock(x, y, z) && y > 2) { y--; } y += 1; /* Mid Section */ world.setBlock(x, y, z, shop); world.setBlockToAir(x, y, z + 1); world.setBlockToAir(x, y, z - 1); world.setBlock(x + 1, y, z, mCWall, 1, 2); world.setBlock(x - 1, y, z - 1, mCWall, 1, 2); world.setBlock(x - 1, y, z + 1, mCWall, 1, 2); world.setBlock(x - 1, y, z - 2, doLog, 1, 2); world.setBlock(x - 1, y, z + 2, doLog, 1, 2); world.setBlock(x, y, z - 2, sSlab, 1, 2); world.setBlock(x, y, z + 2, sSlab, 1, 2); world.setBlock(x + 1, y, z - 2, doLog, 1, 2); world.setBlock(x + 1, y, z + 2, doLog, 1, 2); world.setBlock(x + 1, y, z - 1, mCWall, 1, 2); world.setBlock(x + 1, y, z + 1, mCWall, 1, 2); /* Floor */ world.setBlock(x, y - 1, z, doPlank, 5, 2); world.setBlock(x, y - 1, z + 1, doPlank, 5, 2); world.setBlock(x, y - 1, z - 1, doPlank, 5, 2); world.setBlock(x - 1, y - 1, z, aLog, 8, 2); world.setBlock(x - 1, y - 1, z + 1, aLog, 8, 2); world.setBlock(x - 1, y - 1, z - 1, aLog, 8, 2); world.setBlock(x + 1, y - 1, z, aLog, 8, 2); world.setBlock(x + 1, y - 1, z + 1, aLog, 8, 2); world.setBlock(x + 1, y - 1, z - 1, aLog, 8, 2); world.setBlock(x - 1, y - 1, z - 2, doLog, 1, 2); world.setBlock(x - 1, y - 1, z + 2, doLog, 1, 2); world.setBlock(x + 1, y - 1, z - 2, doLog, 1, 2); world.setBlock(x + 1, y - 1, z + 2, doLog, 1, 2); world.setBlock(x, y - 1, z + 2, aLog, 4, 2); world.setBlock(x, y - 1, z - 2, aLog, 4, 2); /* Roof */ world.setBlock(x - 1, y + 1, z - 2, fence, 0, 2); world.setBlock(x - 1, y + 1, z + 2, fence, 0, 2); world.setBlock(x + 1, y + 1, z - 2, fence, 0, 2); world.setBlock(x + 1, y + 1, z + 2, fence, 0, 2); world.setBlock(x - 1, y + 2, z - 2, fence, 0, 2); world.setBlock(x - 1, y + 2, z + 2, fence, 0, 2); world.setBlock(x + 1, y + 2, z - 2, fence, 0, 2); world.setBlock(x + 1, y + 2, z + 2, fence, 0, 2); world.setBlock(x - 1, y + 3, z - 2, rWool, 14, 2); world.setBlock(x - 1, y + 3, z + 2, rWool, 14, 2); world.setBlock(x + 1, y + 3, z - 2, rWool, 14, 2); world.setBlock(x + 1, y + 3, z + 2, rWool, 14, 2); world.setBlock(x, y + 3, z - 2, wWool, 0, 2); world.setBlock(x, y + 3, z + 2, wWool, 0, 2); world.setBlock(x - 1, y + 3, z - 1, wWool, 0, 2); world.setBlock(x - 1, y + 3, z + 1, wWool, 0, 2); world.setBlock(x + 1, y + 3, z - 1, wWool, 0, 2); world.setBlock(x + 1, y + 3, z + 1, wWool, 0, 2); world.setBlock(x + 1, y + 3, z, rWool, 14, 2); world.setBlock(x - 1, y + 3, z, rWool, 14, 2); world.setBlock(x, y + 4, z - 1, rWool, 14, 2); world.setBlock(x, y + 4, z + 1, rWool, 14, 2); world.setBlock(x, y + 4, z, wWool, 0, 2); world.setBlock(x , y + 3, z - 1, glowstone, 0, 2); world.setBlock(x, y + 3, z + 1, glowstone, 0, 2); world.setBlock(x, y + 3, z, glowstone, 0, 2); return true; } public boolean spawnShopWest(World world, Random random, int x, int y, int z) { System.out.println("Shop method called."); Block shop = CrewMod.shopBlock; Block aLog = Blocks.log2; Block doLog = Blocks.log2; Block fence = Blocks.fence; Block sSlab = Blocks.wooden_slab; Block mCWall = Blocks.cobblestone_wall; Block wWool = Blocks.wool; Block rWool = Blocks.wool; Block doPlank = Blocks.planks; Block glowstone = Blocks.glowstone; while(world.isAirBlock(x, y, z) && y > 2) { y--; } y += 1; /* Mid Section */ world.setBlock(x, y, z, shop); world.setBlockToAir(x, y, z + 1); world.setBlockToAir(x, y, z - 1); world.setBlock(x - 1, y, z, mCWall, 1, 2); world.setBlock(x - 1, y, z - 1, mCWall, 1, 2); world.setBlock(x - 1, y, z + 1, mCWall, 1, 2); world.setBlock(x - 1, y, z - 2, doLog, 1, 2); world.setBlock(x - 1, y, z + 2, doLog, 1, 2); world.setBlock(x, y, z - 2, sSlab, 1, 2); world.setBlock(x, y, z + 2, sSlab, 1, 2); world.setBlock(x + 1, y, z - 2, doLog, 1, 2); world.setBlock(x + 1, y, z + 2, doLog, 1, 2); world.setBlock(x + 1, y, z - 1, mCWall, 1, 2); world.setBlock(x + 1, y, z + 1, mCWall, 1, 2); /* Floor */ world.setBlock(x, y - 1, z, doPlank, 5, 2); world.setBlock(x, y - 1, z + 1, doPlank, 5, 2); world.setBlock(x, y - 1, z - 1, doPlank, 5, 2); world.setBlock(x - 1, y - 1, z, aLog, 8, 2); world.setBlock(x - 1, y - 1, z + 1, aLog, 8, 2); world.setBlock(x - 1, y - 1, z - 1, aLog, 8, 2); world.setBlock(x + 1, y - 1, z, aLog, 8, 2); world.setBlock(x + 1, y - 1, z + 1, aLog, 8, 2); world.setBlock(x + 1, y - 1, z - 1, aLog, 8, 2); world.setBlock(x - 1, y - 1, z - 2, doLog, 1, 2); world.setBlock(x - 1, y - 1, z + 2, doLog, 1, 2); world.setBlock(x + 1, y - 1, z - 2, doLog, 1, 2); world.setBlock(x + 1, y - 1, z + 2, doLog, 1, 2); world.setBlock(x, y - 1, z + 2, aLog, 4, 2); world.setBlock(x, y - 1, z - 2, aLog, 4, 2); /* Roof */ world.setBlock(x - 1, y + 1, z - 2, fence, 0, 2); world.setBlock(x - 1, y + 1, z + 2, fence, 0, 2); world.setBlock(x + 1, y + 1, z - 2, fence, 0, 2); world.setBlock(x + 1, y + 1, z + 2, fence, 0, 2); world.setBlock(x - 1, y + 2, z - 2, fence, 0, 2); world.setBlock(x - 1, y + 2, z + 2, fence, 0, 2); world.setBlock(x + 1, y + 2, z - 2, fence, 0, 2); world.setBlock(x + 1, y + 2, z + 2, fence, 0, 2); world.setBlock(x - 1, y + 3, z - 2, rWool, 14, 2); world.setBlock(x - 1, y + 3, z + 2, rWool, 14, 2); world.setBlock(x + 1, y + 3, z - 2, rWool, 14, 2); world.setBlock(x + 1, y + 3, z + 2, rWool, 14, 2); world.setBlock(x, y + 3, z - 2, wWool, 0, 2); world.setBlock(x, y + 3, z + 2, wWool, 0, 2); world.setBlock(x - 1, y + 3, z - 1, wWool, 0, 2); world.setBlock(x - 1, y + 3, z + 1, wWool, 0, 2); world.setBlock(x + 1, y + 3, z - 1, wWool, 0, 2); world.setBlock(x + 1, y + 3, z + 1, wWool, 0, 2); world.setBlock(x + 1, y + 3, z, rWool, 14, 2); world.setBlock(x - 1, y + 3, z, rWool, 14, 2); world.setBlock(x, y + 4, z - 1, rWool, 14, 2); world.setBlock(x, y + 4, z + 1, rWool, 14, 2); world.setBlock(x, y + 4, z, wWool, 0, 2); world.setBlock(x, y + 3, z - 1, glowstone, 0, 2); world.setBlock(x, y + 3, z + 1, glowstone, 0, 2); world.setBlock(x, y + 3, z, glowstone, 0, 2); return true; }
-
[1.7.10] Trouble setting an NBTTag in an item
Wait, this might be a stupid question but, I set my nbt tag to be saved to the stackTagCompund. Can I save it to a newly created NBTTagCompound?
-
[1.7.10] Changing the camera - how to force 3rd person view
Hm, I don't have experience with it but, I would think you'd need to look at the keybinding for changing the camera view and figure out how the game does it. Then, when the model is changed, force the view by changing it as if they pressed F5 then, disable that key until the player changes back.
-
[1.7.10] Trouble setting an NBTTag in an item
Yeah, I figured that out thanks to you guy's. But see, I need to set a string in that tag to a certain string from a different class. How would I go about doing something like that?
-
[1.7.10] Trouble setting an NBTTag in an item
So, should I not use the stack.StackTagCompound for saving NBTTags? Sorry if these questions are simplistic; haven't done some advanced things in a while.
-
[1.7.10] Trouble setting an NBTTag in an item
I've tried! Nothing I do seems to make it run only once. You might say "use onCreated" but, I can't considering you can't craft it but, only buy it from my shop.
-
[1.7.10] Trouble setting an NBTTag in an item
So like the title says, I can't set an nbt tag in an item. Every time I try, I get this error and a crash: [01:07:13] [server thread/INFO] [FML]: The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded. [01:07:13] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ---- // Ooh. Shiny. Time: 4/6/15 1:07 AM Description: Exception in server tick loop java.lang.StackOverflowError: Exception in server tick loop at java.io.BufferedOutputStream.write(BufferedOutputStream.java:117) at java.io.DataOutputStream.write(DataOutputStream.java:107) at java.io.DataOutputStream.writeUTF(DataOutputStream.java:401) at java.io.DataOutputStream.writeUTF(DataOutputStream.java:323) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:471) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) at net.minecraft.nbt.NBTTagCompound.func_150298_a(NBTTagCompound.java:472) at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) Here's where I try to set the tag in my item class: public void onUpdate(ItemStack stack, World world, Entity entity, int tick, boolean flag) { String victimName = this.victimName; NBTTagCompound cmp = stack.stackTagCompound; if(cmp == null && !world.isRemote) { cmp = new NBTTagCompound(); System.out.println("SET NBT TAG COMPOUND"); } if(victimName != null && cmp != null) { //System.out.println("SAVING VICTIM NAME"); cmp.setString("victim", victimName); } if(cmp.getTag(VICTIMBASE) == null) { cmp.setTag(VICTIMBASE, cmp); System.out.println("SET TAG"); } } I'm quite tired so, I will be off to bed. But, any help will be very appreciated!
-
[1.7.10] Help importing some Super Mario Galaxy models (.3ds)
For starters, Minecraft I believe, can not convert .3ds file formats to models. You will have to re-create them using Techne or some other modeling program that will suffice. Next, do you have experience with programming mods? Or have any knowledge in Java? If not, I suggest starting work on the mod and learning about it as much as you can before jumping right into the snake pit.
IPS spam blocked by CleanTalk.