Blood Effect Plugin

Discussion in 'Archived: Plugin Requests' started by ultrasargent, May 23, 2014.

  1. Offline

    ultrasargent

    I currently have a Blood effect plugin on my server, meaning when someone/something takes damage, it will create a dark red particle effect (as I'm sure you all know). If you don't how it works, it just shows the redstone - breaking particle effect, but for some reason it also plays the sound effect for when a block breaks. Is there any way to stop this? I the particle effect is of a block breaking, but there is no option in the config and I have played on servers with this plugin but the sound effect did not play. Help please! :)
     
  2. Offline

    MineStein

  3. Offline

    UnitedPvP

  4. Offline

    ultrasargent

    UnitedPvP Yeah, Blood is the one I was originally using but as I said it makes the block breaking sound when the particle effect appears.
     
  5. Offline

    XgXXSnipz

    Maybe there is a config for it..?
     
  6. Offline

    LordFox

    i use this...... code
    Code:java
    1. @EventHandler
    2. public void onDamage(EntityDamageEvent e){
    3.  
    4. Player a = (Player)e.getEntity();
    5.  
    6. World w = a.getWorld();
    7.  
    8. w.playEffect(a.getLocation(), Effect.STEP_SOUND, 55);
    9.  
    10. }
    11.  
    12. }
    13.  


    that also does the step sound too :p

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jun 8, 2016
  7. Offline

    Onlineids

    [quote uid=90908983 name="ultrasargent" post=2513446]I currently have a Blood effect plugin on my server, meaning when someone/something takes damage, it will create a dark red particle effect (as I'm sure you all know). If you don't how it works, it just shows the redstone - breaking particle effect, but for some reason it also plays the sound effect for when a block breaks. Is there any way to stop this? I the particle effect is of a block breaking, but there is no option in the config and I have played on servers with this plugin but the sound effect did not play. Help please! :)[/quote]

    No step sound: <Edit by Moderator: Redacted mediafire url>
     
    Last edited by a moderator: Nov 2, 2016

Share This Page