Posted July 8, 201510 yr this code isn't working and I cant figure out why, but I think its how I wrote the icon code so, can you guys take a look? package com.OlympiansMod.Item; import net.minecraft.client.renderer.texture.IIconRegister; import net.minecraft.enchantment.Enchantment; import net.minecraft.enchantment.EnchantmentHelper; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.projectile.EntityArrow; import net.minecraft.init.Items; import net.minecraft.item.EnumAction; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.IIcon; import net.minecraft.world.World; import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.event.entity.player.ArrowLooseEvent; import net.minecraftforge.event.entity.player.ArrowNockEvent; import com.OlympiansMod.entity.EntityMasterBolt; import com.OlympiansMod.entity.EntityThunderBolt; import com.OlympiansMod.lib.Refstrings; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; public class MasterBolt extends Item{ @SideOnly(Side.CLIENT) private IIcon[] iconArray; private static final String __OBFID = "CL_00001777"; public void onPlayerStoppedUsing(ItemStack stack, World world, EntityPlayer player, int par1) { int j = this.getMaxItemUseDuration(stack) - par1; ArrowLooseEvent event = new ArrowLooseEvent(player, stack, j); MinecraftForge.EVENT_BUS.post(event); if (event.isCanceled()) { return; } j = event.charge; if(player.capabilities.isCreativeMode){ if(!world.isRemote){ world.spawnEntityInWorld(new EntityMasterBolt(world)); } } return; } public boolean isFull3D(){ return true; } public ItemStack onEaten(ItemStack stack, World world, EntityPlayer player) { return stack; } public int getMaxItemUseDuration(ItemStack stack) { return 72000; } public EnumAction getItemUseAction(ItemStack stack) { return EnumAction.bow; } public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player) { ArrowNockEvent event = new ArrowNockEvent(player, stack); MinecraftForge.EVENT_BUS.post(event); if (event.isCanceled()) { return event.result; } return stack; } IIcon[] iconArray1; @Override @SideOnly(Side.CLIENT) public void registerIcons(IIconRegister iconRegister) { super.registerIcons(iconRegister); iconArray = new IIcon[10]; iconArray[0] = iconRegister.registerIcon(Refstrings.MODID + ":MasterBolt_0"); iconArray[1] = iconRegister.registerIcon(Refstrings.MODID + ":MasterBolt_1"); iconArray[2] = iconRegister.registerIcon(Refstrings.MODID + ":MasterBolt_2"); iconArray[3] = iconRegister.registerIcon(Refstrings.MODID + ":MasterBolt_3"); iconArray[4] = iconRegister.registerIcon(Refstrings.MODID + ":MasterBolt_4"); iconArray[5] = iconRegister.registerIcon(Refstrings.MODID + ":MasterBolt_5"); iconArray[6] = iconRegister.registerIcon(Refstrings.MODID + ":MasterBolt_6"); iconArray[7] = iconRegister.registerIcon(Refstrings.MODID + ":MasterBolt_7"); iconArray[8] = iconRegister.registerIcon(Refstrings.MODID + ":MasterBolt_8"); iconArray[9] = iconRegister.registerIcon(Refstrings.MODID + ":MasterBolt_9"); } @Override @SideOnly(Side.CLIENT) public IIcon getIcon(ItemStack stack, int renderPass, EntityPlayer player, ItemStack usingItem, int useRemaining) { if (usingItem == null) { return itemIcon; } int ticksInUse = stack.getMaxItemUseDuration() - useRemaining; if (ticksInUse > 65) { return iconArray[9]; } else if (ticksInUse > 62) { return iconArray[8]; } else if (ticksInUse > 59) { return iconArray[7]; } else if (ticksInUse > 56) { return iconArray[6]; } else if (ticksInUse > 53) { return iconArray[5]; } else if (ticksInUse > 50) { return iconArray[4]; } else if (ticksInUse > 47) { return iconArray[3]; } else if (ticksInUse > 44) { return iconArray[0]; } else if (ticksInUse > 41) { return iconArray[2]; } else if (ticksInUse > 38) { return iconArray[1]; }else if (ticksInUse > 35) { return iconArray[9]; } else if (ticksInUse > 32) { return iconArray[8]; } else if (ticksInUse > 29) { return iconArray[7]; } else if (ticksInUse > 26) { return iconArray[6]; } else if (ticksInUse > 23) { return iconArray[5]; } else if (ticksInUse > 20) { return iconArray[4]; } else if (ticksInUse > 17) { return iconArray[3]; } else if (ticksInUse > 15) { return iconArray[0]; } else if (ticksInUse > 10) { return iconArray[2]; } else if (ticksInUse > 7) { return iconArray[1]; } else if (ticksInUse > 0) { return iconArray[0]; } else { return itemIcon; } } } thanks. Im serious don't look at it!!
July 8, 201510 yr Your code is a mess. Remove this: private static final String __OBFID = "CL_00001777"; That line is for Forge to reobfuscate vanilla class. Remove: IIcon[] iconArray1; You're not using it. As for your actual problem: CaSe maTteRs. double check that your file names match eXacTLy. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
July 8, 201510 yr Author yeah there exact, the problem is that the item doesn't even do anything, like its not even spawning the entity that its supposed to.. Im serious don't look at it!!
July 9, 201510 yr Your item is never setInUse, so the ticksInUse is always zero. Look again at ItemBow#onItemRightClick. http://i.imgur.com/NdrFdld.png[/img]
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.