Java Code Examples for org.bukkit.Material#LADDER

The following examples show how to use org.bukkit.Material#LADDER . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AveragePattern.java    From AACAdditionPro with GNU General Public License v3.0 5 votes vote down vote up
@Override
public int process(User user, BlockPlaceEvent event)
{
    // Ladders are prone to false positives as they can be used to place blocks immediately after placing them,
    // therefore almost doubling the placement speed. However they can only be placed one at a time, which allows
    // simply ignoring them.
    if (event.getBlockPlaced().getType() != Material.LADDER
        // Should check average?
        // Buffer the ScaffoldBlockPlace
        && user.getScaffoldData().getScaffoldBlockPlaces().bufferObject(new ScaffoldBlockPlace(
            event.getBlockPlaced(),
            event.getBlockPlaced().getFace(event.getBlockAgainst()),
            // Speed-Effect
            PotionUtil.getAmplifier(PotionUtil.getPotionEffect(user.getPlayer(), PotionEffectType.SPEED)),
            user.getPlayer().getLocation().getYaw(),
            user.hasSneakedRecently(175))))
    {
        /*
        Indices:
        [0] -> Expected time
        [1] -> Real time
         */
        final double[] results = user.getScaffoldData().calculateTimes();

        // delta-times are too low -> flag
        if (results[1] < results[0]) {
            // Calculate the vl
            final int vlIncrease = (int) (4 * Math.min(Math.ceil((results[0] - results[1]) / 15D), 6));

            message = "Scaffold-Verbose | Player: " + user.getPlayer().getName() + " enforced delay: " + results[0] + " | real: " + results[1] + " | vl increase: " + vlIncrease;
            return vlIncrease;
        }
    }

    return 0;
}
 
Example 2
Source File: Materials.java    From PGM with GNU Affero General Public License v3.0 4 votes vote down vote up
static boolean isClimbable(Material material) {
  return material == Material.LADDER || material == Material.VINE;
}
 
Example 3
Source File: Ladder.java    From Kettle with GNU General Public License v3.0 4 votes vote down vote up
public Ladder() {
    super(Material.LADDER);
}
 
Example 4
Source File: FlyOld.java    From Hawk with GNU General Public License v3.0 4 votes vote down vote up
private boolean isInClimbable(Location loc) {
    Block b = ServerUtils.getBlockAsync(loc);
    return b != null && (b.getType() == Material.VINE || b.getType() == Material.LADDER);
}
 
Example 5
Source File: Fly.java    From Hawk with GNU General Public License v3.0 4 votes vote down vote up
private boolean isInClimbable(Location loc) {
    Block b = ServerUtils.getBlockAsync(loc);
    return b != null && (b.getType() == Material.VINE || b.getType() == Material.LADDER);
}
 
Example 6
Source File: Materials.java    From ProjectAres with GNU Affero General Public License v3.0 4 votes vote down vote up
public static boolean isClimbable(Material material) {
    return material == Material.LADDER || material == Material.VINE;
}
 
Example 7
Source File: LadderChecker.java    From EntityAPI with GNU Lesser General Public License v3.0 4 votes vote down vote up
public LadderChecker() {
    super(Material.LADDER);
}