Package cc.co.evenprime.bukkit.nocheat.data.Statistics

Examples of cc.co.evenprime.bukkit.nocheat.data.Statistics.Id


        // enough food level (configurable)
        final boolean sprinting = player.isSprinting() && (player.getPlayer().getFoodLevel() > 5);

        double limit = 0.0D;

        Id statisticsCategory = null;

        // Player on ice? Give him higher max speed
        Block b = player.getPlayer().getLocation().getBlock();
        if(b.getType() == Material.ICE || b.getRelative(0, -1, 0).getType() == Material.ICE) {
            data.onIce = 20;
View Full Code Here

TOP

Related Classes of cc.co.evenprime.bukkit.nocheat.data.Statistics.Id

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.