2018-07-25 02:08:29 +00:00
|
|
|
package me.totalfreedom.totalfreedommod.command;
|
|
|
|
|
|
|
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.Material;
|
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
|
import org.bukkit.inventory.meta.ItemMeta;
|
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
@CommandPermissions(level = Rank.OP, source = SourceType.ONLY_IN_GAME)
|
|
|
|
@CommandParameters(description = "Get a stuck of happiness.", usage = "/<command>")
|
|
|
|
public class Command_debugstick extends FreedomCommand
|
|
|
|
{
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean run(CommandSender sender, Player playerSender, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
|
|
|
{
|
|
|
|
ItemStack itemStack = new ItemStack(Material.DEBUG_STICK);
|
|
|
|
ItemMeta itemMeta = itemStack.getItemMeta();
|
|
|
|
itemMeta.setDisplayName(ChatColor.GOLD.toString() + ChatColor.BOLD.toString() + "Stick of Happiness");
|
|
|
|
List<String> lore = Arrays.asList(
|
2018-07-25 02:20:01 +00:00
|
|
|
ChatColor.RED + "This is the most powerful stick in the game.",
|
2018-07-25 02:08:29 +00:00
|
|
|
ChatColor.DARK_BLUE + "You can left click to select what you want to change.",
|
|
|
|
ChatColor.DARK_GREEN + "And then you can right click to change it!",
|
|
|
|
ChatColor.DARK_PURPLE + "Isn't technology amazing?");
|
|
|
|
itemMeta.setLore(lore);
|
|
|
|
itemStack.setItemMeta(itemMeta);
|
|
|
|
playerSender.getInventory().addItem(itemStack);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|