/* * This file is part of MyPet * * Copyright © 2011-2016 Keyle * MyPet is licensed under the GNU Lesser General Public License. * * MyPet is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * MyPet is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package de.Keyle.MyPet.commands; import de.Keyle.MyPet.MyPetApi; import de.Keyle.MyPet.api.Configuration; import de.Keyle.MyPet.api.Util; import de.Keyle.MyPet.api.player.Permissions; import de.Keyle.MyPet.api.util.locale.Translation; import de.Keyle.MyPet.skill.skills.Behavior; import de.Keyle.MyPet.skill.skills.Inventory; import de.Keyle.MyPet.skill.skills.Pickup; import org.bukkit.ChatColor; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandSender; import org.bukkit.command.TabCompleter; import org.bukkit.entity.Player; import java.util.List; public class CommandHelp implements CommandExecutor, TabCompleter { public boolean onCommand(CommandSender sender, Command command, String label, String[] args) { if (sender instanceof Player) { Player player = (Player) sender; player.sendMessage("-------------------- " + ChatColor.GOLD + "MyPet - " + Translation.getString("Name.Help", player) + ChatColor.RESET + " --------------------"); player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.Info", player), "/petinfo")); player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.Type", player), "/pettype")); player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.Options", player), "/petoptions")); if (Permissions.hasLegacy(player, "MyPet.command.capturehelper")) { player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.CaptureHelper", player), "/petcapturehelper")); } if (Permissions.has(player, "MyPet.admin", false)) { player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.Admin", player), "/petadmin")); } if (MyPetApi.getMyPetManager().hasActiveMyPet(player)) { if (Permissions.hasLegacy(player, "MyPet.command.name")) { player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.Name", player), "/petname")); } if (Permissions.hasLegacy(player, "MyPet.command.release")) { player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.Release", player), "/petrelease")); } player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.Stop", player), "/petstop")); player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.Call", player), "/petcall")); player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.SendAway", player), "/petsendaway")); if (Permissions.hasLegacy(player, "MyPet.command.respawn")) { player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.Respawn", player), "/petrespawn")); } if (Permissions.hasLegacy(player, "MyPet.command.switch")) { player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.Switch", player), "/petswitch")); } player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.Skill", player), "/petskill")); player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.ChooseSkilltree", player), "/petchooseskilltree")); if (MyPetApi.getMyPetManager().getMyPet(player).getSkills().isSkillActive(Inventory.class)) { player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.Inventory", player), "/petinventory")); } if (MyPetApi.getMyPetManager().getMyPet(player).getSkills().isSkillActive(Pickup.class)) { player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.Pickup", player), "/petpickup")); } if (MyPetApi.getMyPetManager().getMyPet(player).getSkills().isSkillActive(Behavior.class)) { player.sendMessage(Util.formatText(Translation.getString("Message.Command.Help.Behavior", player), "/petbehavior")); } } player.sendMessage(""); player.sendMessage(Translation.getString("Message.Command.Help.MoreInfo", player) + ChatColor.GOLD + " " + Configuration.Misc.WIKI_URL); player.sendMessage("----------------------------------------------------"); return true; } sender.sendMessage("You can't use this command from server console!"); return true; } @Override public List<String> onTabComplete(CommandSender sender, Command command, String s, String[] strings) { return CommandAdmin.EMPTY_LIST; } }