Particles

Discussion in 'Plugin Development' started by CraftingRealm, Sep 2, 2013.

Thread Status:
Not open for further replies.
  1. Offline

    CraftingRealm

    How can I make some red particles come out of a mob so that it looks like blood?
     
  2. Offline

    Domi381

    Code:java
    1. @EventHandler(priority = EventPriority.NORMAL)
    2. public void EntityBleedEvent(EntityDamageEvent e) {
    3. e.getEntity().getLocation().getWorld().playEffect(e.getEntity().getLocation().add(0,1,0), Effect.STEP_SOUND, 152);
    4. }
     
Thread Status:
Not open for further replies.

Share This Page