Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

bukkit detect block that nowbal hit

public void onProjectileHit(ProjectileHitEvent event) {
        Entity entity = event.getEntity();
        if (entity instanceof Snowball) {
            Location loc = entity.getLocation();
            Vector vec = entity.getVelocity();
            Location loc2 = new Location(loc.getWorld(), loc.getX()+vec.getX(), loc.getY()+vec.getY(), loc.getZ()+vec.getZ());
            System.out.println(loc2.getBlock().getTypeId());
            if (loc2.getBlock().getTypeId()==Block.SNOW_BLOCK.id)
            {
...
Source by bukkit.org #
 
PREVIOUS NEXT
Tagged: #bukkit #detect #block #nowbal #hit
ADD COMMENT
Topic
Name
9+5 =