Jump to content

315Lukas

Members
  • Posts

    9
  • Joined

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

315Lukas's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Why do you develop for 1.8? Also post the crash report please.
  2. Have you tried updating or removing CodeChickenLib or NEI?
  3. Thanks for any help!
  4. Thanks, I got it working now: public void playEvent(EntityPlayer player, int code, BlockPos pos, int blockId) { EntityPlayerSP realPlayer = Minecraft.getMinecraft().thePlayer; if (code == 2001 && player == null && realPlayer != null && realPlayer.getDistanceSq(pos) < 46 && realPlayer.rayTrace(4.5, 0).getBlockPos().equals(pos) && realPlayer.isSwingInProgress) { // 50 == 5 blocks (max. 4) this.blockBroken = true; } }
  5. I don't want to modify, I only want to add stuff
  6. Why not?
  7. Okay, but how could I do this for every block?
  8. I wanted to draw some particles (but I don't understand why this matters?)
  9. Hello all. I'm trying to find a way to tell if the player broke a block client-side - any block at all. I've tried using BlockEvents.BreakEvent but that appears to be server-side only... (isRemote only returns false, never true) It's for rendering stuff, so I really don't want to send packets every time the player breaks a block... has anyone got any ideas?
×
×
  • Create New...

Important Information

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