Jump to content

gigimoi

Members
  • Posts

    14
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

gigimoi's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. > WorldCore-universal-1.7.2-1.1.0.17.jar > I am using the latest version of forge for 1.6.4
  2. Not just cosmetic, but also encouraging the use of it for non-ore things. It's not the best reason, but I think it's worthwhile. I don't have a suggestion for what it could be renamed to though.
  3. It would be nice to access things other than ores from other mods, being able to access things like "armorHelmetBronze", or "wireIron". Technically, ore dictionary allows that, but the name doesn't encourage it.
  4. I don't want to generate my copper unless no other mod adds copper, to do this I need to check if oreCopper has been registered in the ore dictionary. How would I do this?
  5. It did, thank you. What would it take to make a button taller than 20px?
  6. Code: http://hastebin.com/yawulosevi.java The button is drawn as this:
  7. Resolved: protected void onImpact(MovingObjectPosition movingobjectposition) { if (movingobjectposition.entityHit != null && movingobjectposition.entityHit instanceof EntityLivingBase) { movingobjectposition.entityHit.attackEntityFrom(DamageSource.causeThrownDamage(this, this.getThrower()), Damage); ((EntityLivingBase)movingobjectposition.entityHit).hurtResistantTime = 0; ((EntityLivingBase)movingobjectposition.entityHit).hurtTime = 1; } this.setDead(); } ((EntityLivingBase)movingobjectposition.entityHit).hurtResistantTime = 0; ((EntityLivingBase)movingobjectposition.entityHit).hurtTime = 1;
  8. Is there any way to cause damage to an entity without making it temporarily invulnerable?
  9. Not needed, your example works perfectly, thank you.
  10. Right, but where would I throw that? Would I need to extend ItemStack and put it in the constructor?
  11. That's rather convenient, int length = stack.getTagCompound().getInteger("Length"); However, yields a null pointer exception. I assume I would need to set the integer first, but where would I do that?
  12. Is there any way to assign NBT data to items/itemstacks.
×
×
  • Create New...

Important Information

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