Package com.forgeessentials.commands.util

Examples of com.forgeessentials.commands.util.Kit


            if (args.length == 3)
            {
                if (!CommandDataManager.kits.containsKey(args[0].toLowerCase()))
                {
                    int cooldown = parseIntWithMin(sender, args[2], 0);
                    new Kit(sender, args[0].toLowerCase(), cooldown);
                    OutputHandler.chatConfirmation(sender, "Kit created successfully. %c sec cooldown.".replaceAll("%c", "" + FunctionHelper.parseTime(cooldown)));
                }
                else
                {
                    OutputHandler.chatError(sender, "This kit already exists.");
View Full Code Here

TOP

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

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.