Package com.forgeessentials.commands.util

Examples of com.forgeessentials.commands.util.CommandButcherTickTask


                Y = parseDouble(sender, split[1], sender.posY);
                Z = parseDouble(sender, split[2], sender.posZ);
            }
        }
        AxisAlignedBB pool = AxisAlignedBB.getBoundingBox(X - radius, Y - radius, Z - radius, X + radius + 1, Y + radius + 1, Z + radius + 1);
        TaskRegistry.registerTask(new CommandButcherTickTask(sender, mobType, pool, radius, sender.dimension));
    }
View Full Code Here


      worldID = parseInt(sender, args[3]);
    }
        WorldPoint center = new WorldPoint(worldID, x, y, z);
        AxisAlignedBB pool = AxisAlignedBB.getBoundingBox(center.getX() - radius, center.getY() - radius, center.getZ() - radius, center.getX() + radius + 1, center.getY() + radius + 1,
                center.getZ() + radius + 1);
        TaskRegistry.registerTask(new CommandButcherTickTask(sender, mobType, pool, radius, worldID));
    }
View Full Code Here

TOP

Related Classes of com.forgeessentials.commands.util.CommandButcherTickTask

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.