Advertisement
Guest User

Untitled

a guest
Aug 8th, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 213.86 KB | None | 0 0
  1. package com.appromode.CustomItem;
  2.  
  3. import java.util.ArrayList;
  4.  
  5. import org.bukkit.Material;
  6. import org.bukkit.entity.Player;
  7. import org.bukkit.event.Listener;
  8. import org.bukkit.inventory.Inventory;
  9. import org.bukkit.inventory.ItemFlag;
  10. import org.bukkit.inventory.ItemStack;
  11. import org.bukkit.inventory.meta.ItemMeta;
  12.  
  13. import com.google.inject.Inject;
  14.  
  15. import net.md_5.bungee.api.ChatColor;
  16.  
  17. public class CustomInventory implements Listener{
  18.  
  19.     @Inject
  20.     private Core plugin;
  21.  
  22.     public void newInventory(Player player) {
  23.         Inventory i = plugin.getServer().createInventory(null, 27,
  24.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Help Menu");
  25.  
  26.         ItemStack helpmenucore1 = new ItemStack(Material.BOOK, 1);
  27.         ItemMeta helpmenucore1Meta = helpmenucore1.getItemMeta();
  28.         helpmenucore1Meta.setDisplayName(ChatColor.DARK_PURPLE + "Useful Commands");
  29.         ArrayList<String> helpmenucore1lore = new ArrayList<String>();
  30.         helpmenucore1lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  31.         helpmenucore1lore.add(ChatColor.DARK_PURPLE + "Right click me to find out some useful commands!");
  32.         helpmenucore1lore.add(ChatColor.WHITE + "There are several sections in the commands menu");
  33.         helpmenucore1lore.add(ChatColor.WHITE + "that cover the most common aspects of " + ChatColor.DARK_PURPLE
  34.                 + "Atlas" + ChatColor.LIGHT_PURPLE + "MC");
  35.         helpmenucore1lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  36.         helpmenucore1Meta.setLore(helpmenucore1lore);
  37.         helpmenucore1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  38.         helpmenucore1.setItemMeta(helpmenucore1Meta);
  39.  
  40.         ItemStack helpmenucore2 = new ItemStack(Material.INK_SACK, 1);
  41.         ItemMeta helpmenucore2Meta = helpmenucore2.getItemMeta();
  42.         helpmenucore2Meta.setDisplayName(ChatColor.DARK_PURPLE + "Rules");
  43.         ArrayList<String> helpmenucore2lore = new ArrayList<String>();
  44.         helpmenucore2lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  45.         helpmenucore2lore.add(ChatColor.DARK_PURPLE + "Right click me to find out the rules of the server!");
  46.         helpmenucore2lore.add(ChatColor.WHITE + "There are many rules in place that help to keep");
  47.         helpmenucore2lore.add(ChatColor.WHITE + "the server running smoothly and to keep players");
  48.         helpmenucore2lore.add(ChatColor.WHITE + "happy. If any of these are broken, punishments");
  49.         helpmenucore2lore.add(ChatColor.WHITE + "will be given accordingly.");
  50.         helpmenucore2lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  51.         helpmenucore2Meta.setLore(helpmenucore2lore);
  52.         helpmenucore2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  53.         helpmenucore2.setItemMeta(helpmenucore2Meta);
  54.  
  55.         ItemStack helpmenucoreempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  56.         ItemMeta helpmenucoreemptyMeta = helpmenucoreempty.getItemMeta();
  57.         helpmenucoreemptyMeta.setDisplayName(ChatColor.BLACK + ".");
  58.         helpmenucoreemptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  59.         helpmenucoreempty.setItemMeta(helpmenucoreemptyMeta);
  60.  
  61.         i.setItem(0, helpmenucoreempty);
  62.         i.setItem(1, helpmenucoreempty);
  63.         i.setItem(2, helpmenucoreempty);
  64.         i.setItem(3, helpmenucoreempty);
  65.         i.setItem(4, helpmenucoreempty);
  66.         i.setItem(5, helpmenucoreempty);
  67.         i.setItem(6, helpmenucoreempty);
  68.         i.setItem(7, helpmenucoreempty);
  69.         i.setItem(8, helpmenucoreempty);
  70.         i.setItem(9, helpmenucoreempty);
  71.         i.setItem(10, helpmenucoreempty);
  72.         i.setItem(11, helpmenucore1);
  73.         i.setItem(12, helpmenucoreempty);
  74.         i.setItem(13, helpmenucoreempty);
  75.         i.setItem(14, helpmenucoreempty);
  76.         i.setItem(15, helpmenucore2);
  77.         i.setItem(16, helpmenucoreempty);
  78.         i.setItem(17, helpmenucoreempty);
  79.         i.setItem(18, helpmenucoreempty);
  80.         i.setItem(19, helpmenucoreempty);
  81.         i.setItem(20, helpmenucoreempty);
  82.         i.setItem(21, helpmenucoreempty);
  83.         i.setItem(22, helpmenucoreempty);
  84.         i.setItem(23, helpmenucoreempty);
  85.         i.setItem(24, helpmenucoreempty);
  86.         i.setItem(25, helpmenucoreempty);
  87.         i.setItem(26, helpmenucoreempty);
  88.  
  89.         player.openInventory(i);
  90.         // Core help menu
  91.     }
  92.  
  93.     public void newInventory2(Player player) {
  94.         Inventory i = plugin.getServer().createInventory(null, 36,
  95.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Commands");
  96.  
  97.         ItemStack helpmenucommands1 = new ItemStack(Material.GRASS, 1);
  98.         ItemMeta helpmenucommands1Meta = helpmenucommands1.getItemMeta();
  99.         helpmenucommands1Meta.setDisplayName(ChatColor.DARK_PURPLE + "Skyblock Commands");
  100.         ArrayList<String> helpmenucommands1lore = new ArrayList<String>();
  101.         helpmenucommands1lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  102.         helpmenucommands1lore.add(ChatColor.DARK_PURPLE + "Right click me to find out some skyblock");
  103.         helpmenucommands1lore.add(ChatColor.DARK_PURPLE + "commands!");
  104.         helpmenucommands1lore.add(ChatColor.WHITE + "In this section, skyblock commands are listed");
  105.         helpmenucommands1lore.add(ChatColor.WHITE + "that cover the most common aspects of playing");
  106.         helpmenucommands1lore.add(ChatColor.WHITE + "skyblock.");
  107.         helpmenucommands1lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  108.         helpmenucommands1Meta.setLore(helpmenucommands1lore);
  109.         helpmenucommands1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  110.         helpmenucommands1.setItemMeta(helpmenucommands1Meta);
  111.  
  112.         ItemStack helpmenucommands2 = new ItemStack(Material.DIAMOND_SWORD, 1);
  113.         ItemMeta helpmenucommands2Meta = helpmenucommands2.getItemMeta();
  114.         helpmenucommands2Meta.setDisplayName(ChatColor.DARK_PURPLE + "PvP Commands");
  115.         ArrayList<String> helpmenucommands2lore = new ArrayList<String>();
  116.         helpmenucommands2lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  117.         helpmenucommands2lore.add(ChatColor.DARK_PURPLE + "Right click me to find out some PvP commands!");
  118.         helpmenucommands2lore.add(ChatColor.WHITE + "In this section, PvP commands are listed");
  119.         helpmenucommands2lore.add(ChatColor.WHITE + "that cover how to PvP on " + ChatColor.DARK_PURPLE + "Atlas"
  120.                 + ChatColor.LIGHT_PURPLE + "MC");
  121.         helpmenucommands2lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  122.         helpmenucommands2Meta.setLore(helpmenucommands2lore);
  123.         helpmenucommands2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  124.         helpmenucommands2.setItemMeta(helpmenucommands2Meta);
  125.  
  126.         ItemStack helpmenucommands3 = new ItemStack(Material.COMPASS, 1);
  127.         ItemMeta helpmenucommands3Meta = helpmenucommands3.getItemMeta();
  128.         helpmenucommands3Meta.setDisplayName(ChatColor.DARK_PURPLE + "Warp Commands");
  129.         ArrayList<String> helpmenucommands3lore = new ArrayList<String>();
  130.         helpmenucommands3lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  131.         helpmenucommands3lore.add(ChatColor.DARK_PURPLE + "Right click me to find out some warp commands!");
  132.         helpmenucommands3lore.add(ChatColor.WHITE + "In this section, warp commands are listed");
  133.         helpmenucommands3lore.add(ChatColor.WHITE + "which are available so that players can travel");
  134.         helpmenucommands3lore.add(ChatColor.WHITE + "around the server.");
  135.         helpmenucommands3lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  136.         helpmenucommands3Meta.setLore(helpmenucommands3lore);
  137.         helpmenucommands3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  138.         helpmenucommands3.setItemMeta(helpmenucommands3Meta);
  139.  
  140.         ItemStack helpmenucommands4 = new ItemStack(Material.BEACON, 1);
  141.         ItemMeta helpmenucommands4Meta = helpmenucommands4.getItemMeta();
  142.         helpmenucommands4Meta.setDisplayName(ChatColor.DARK_PURPLE + "Shop Commands");
  143.         ArrayList<String> helpmenucommands4lore = new ArrayList<String>();
  144.         helpmenucommands4lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  145.         helpmenucommands4lore.add(ChatColor.DARK_PURPLE + "Right click me to find out some shop commands!");
  146.         helpmenucommands4lore.add(ChatColor.WHITE + "In this section, shop commands are listed");
  147.         helpmenucommands4lore.add(ChatColor.WHITE + "that cover how to sell and purchase items using");
  148.         helpmenucommands4lore.add(ChatColor.WHITE + "different methods.");
  149.         helpmenucommands4lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  150.         helpmenucommands4Meta.setLore(helpmenucommands4lore);
  151.         helpmenucommands4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  152.         helpmenucommands4.setItemMeta(helpmenucommands4Meta);
  153.  
  154.         ItemStack helpmenucommands5 = new ItemStack(Material.MOB_SPAWNER, 1);
  155.         ItemMeta helpmenucommands5Meta = helpmenucommands5.getItemMeta();
  156.         helpmenucommands5Meta.setDisplayName(ChatColor.DARK_PURPLE + "Spawner Commands");
  157.         ArrayList<String> helpmenucommands5lore = new ArrayList<String>();
  158.         helpmenucommands5lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  159.         helpmenucommands5lore.add(ChatColor.DARK_PURPLE + "Right click me to find out some spawner");
  160.         helpmenucommands1lore.add(ChatColor.DARK_PURPLE + "commands!");
  161.         helpmenucommands5lore.add(ChatColor.WHITE + "In this section, spawner commands are listed");
  162.         helpmenucommands5lore.add(ChatColor.WHITE + "which cover how spawners.");
  163.         helpmenucommands5lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  164.         helpmenucommands5Meta.setLore(helpmenucommands5lore);
  165.         helpmenucommands5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  166.         helpmenucommands5.setItemMeta(helpmenucommands5Meta);
  167.  
  168.         ItemStack helpmenucommandsempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  169.         ItemMeta helpmenucommandsemptyMeta = helpmenucommandsempty.getItemMeta();
  170.         helpmenucommandsemptyMeta.setDisplayName(ChatColor.BLACK + ".");
  171.         helpmenucommandsemptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  172.         helpmenucommandsempty.setItemMeta(helpmenucommandsemptyMeta);
  173.  
  174.         ItemStack helpmenucommandsback = new ItemStack(Material.NETHER_STAR, 1);
  175.         ItemMeta helpmenucommandsbackMeta = helpmenucommandsback.getItemMeta();
  176.         helpmenucommandsbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  177.         helpmenucommandsbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  178.         helpmenucommandsback.setItemMeta(helpmenucommandsbackMeta);
  179.  
  180.         i.setItem(0, helpmenucommandsempty);
  181.         i.setItem(1, helpmenucommandsempty);
  182.         i.setItem(2, helpmenucommandsempty);
  183.         i.setItem(3, helpmenucommandsempty);
  184.         i.setItem(4, helpmenucommandsempty);
  185.         i.setItem(5, helpmenucommandsempty);
  186.         i.setItem(6, helpmenucommandsempty);
  187.         i.setItem(7, helpmenucommandsempty);
  188.         i.setItem(8, helpmenucommandsempty);
  189.         i.setItem(9, helpmenucommandsempty);
  190.         i.setItem(10, helpmenucommands1);
  191.         i.setItem(11, helpmenucommandsempty);
  192.         i.setItem(12, helpmenucommandsempty);
  193.         i.setItem(13, helpmenucommands2);
  194.         i.setItem(14, helpmenucommandsempty);
  195.         i.setItem(15, helpmenucommandsempty);
  196.         i.setItem(16, helpmenucommands3);
  197.         i.setItem(17, helpmenucommandsempty);
  198.         i.setItem(18, helpmenucommandsempty);
  199.         i.setItem(19, helpmenucommandsempty);
  200.         i.setItem(20, helpmenucommandsempty);
  201.         i.setItem(21, helpmenucommands4);
  202.         i.setItem(22, helpmenucommandsempty);
  203.         i.setItem(23, helpmenucommands5);
  204.         i.setItem(24, helpmenucommandsempty);
  205.         i.setItem(25, helpmenucommandsempty);
  206.         i.setItem(26, helpmenucommandsempty);
  207.         i.setItem(27, helpmenucommandsback);
  208.         i.setItem(28, helpmenucommandsempty);
  209.         i.setItem(29, helpmenucommandsempty);
  210.         i.setItem(30, helpmenucommandsempty);
  211.         i.setItem(31, helpmenucommandsempty);
  212.         i.setItem(32, helpmenucommandsempty);
  213.         i.setItem(33, helpmenucommandsempty);
  214.         i.setItem(34, helpmenucommandsempty);
  215.         i.setItem(35, helpmenucommandsempty);
  216.  
  217.         player.openInventory(i);
  218.         // Commands - help menu
  219.     }
  220.  
  221.     public void newInventory3(Player player) {
  222.         Inventory i = plugin.getServer().createInventory(null, 27,
  223.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Rules");
  224.  
  225.         ItemStack helpmenurules1 = new ItemStack(Material.DIAMOND, 1);
  226.         ItemMeta helpmenurules1Meta = helpmenurules1.getItemMeta();
  227.         helpmenurules1Meta.setDisplayName(ChatColor.DARK_PURPLE + "Server Rules");
  228.         ArrayList<String> helpmenurules1lore = new ArrayList<String>();
  229.         helpmenurules1lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  230.         helpmenurules1lore.add(ChatColor.DARK_PURPLE + "Right click me to find out some server rules!");
  231.         helpmenurules1lore.add(ChatColor.WHITE + "These rules need to be followed on the sever");
  232.         helpmenurules1lore.add(ChatColor.WHITE + "otherwise punishments will be given out");
  233.         helpmenurules1lore.add(ChatColor.WHITE + "accordingly.");
  234.         helpmenurules1lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  235.         helpmenurules1Meta.setLore(helpmenurules1lore);
  236.         helpmenurules1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  237.         helpmenurules1.setItemMeta(helpmenurules1Meta);
  238.  
  239.         ItemStack helpmenurules2 = new ItemStack(Material.BOOK, 1);
  240.         ItemMeta helpmenurules2Meta = helpmenurules2.getItemMeta();
  241.         helpmenurules2Meta.setDisplayName(ChatColor.DARK_PURPLE + "Other platform Rules");
  242.         ArrayList<String> helpmenurules2lore = new ArrayList<String>();
  243.         helpmenurules2lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  244.         helpmenurules2lore.add(ChatColor.DARK_PURPLE + "Right click me to find out some other rules!");
  245.         helpmenurules2lore.add(ChatColor.WHITE + "These rules will be enforced on platforms such as");
  246.         helpmenurules2lore.add(ChatColor.WHITE + "discord.");
  247.         helpmenurules2lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  248.         helpmenurules2Meta.setLore(helpmenurules2lore);
  249.         helpmenurules2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  250.         helpmenurules2.setItemMeta(helpmenurules2Meta);
  251.  
  252.         ItemStack helpmenurules3 = new ItemStack(Material.EMERALD, 1);
  253.         ItemMeta helpmenurules3Meta = helpmenurules3.getItemMeta();
  254.         helpmenurules3Meta.setDisplayName(ChatColor.DARK_PURPLE + "Website Rules");
  255.         ArrayList<String> helpmenurules3lore = new ArrayList<String>();
  256.         helpmenurules3lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  257.         helpmenurules3lore.add(ChatColor.DARK_PURPLE + "Right click me to find out some website rules!");
  258.         helpmenurules3lore.add(ChatColor.WHITE + "These rules will be enforced on the website to");
  259.         helpmenurules3lore.add(ChatColor.WHITE + "make sure that it is a friendly place open to");
  260.         helpmenurules3lore.add(ChatColor.WHITE + "everyone.");
  261.         helpmenurules3lore.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  262.         helpmenurules3Meta.setLore(helpmenurules3lore);
  263.         helpmenurules3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  264.         helpmenurules3.setItemMeta(helpmenurules3Meta);
  265.  
  266.         ItemStack helpmenurulesempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  267.         ItemMeta helpmenurulesemptyMeta = helpmenurulesempty.getItemMeta();
  268.         helpmenurulesemptyMeta.setDisplayName(ChatColor.BLACK + ".");
  269.         helpmenurulesemptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  270.         helpmenurulesempty.setItemMeta(helpmenurulesemptyMeta);
  271.  
  272.         ItemStack helpmenurulesback = new ItemStack(Material.NETHER_STAR, 1);
  273.         ItemMeta helpmenurulesbackMeta = helpmenurulesback.getItemMeta();
  274.         helpmenurulesbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  275.         helpmenurulesbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  276.         helpmenurulesback.setItemMeta(helpmenurulesbackMeta);
  277.  
  278.         i.setItem(0, helpmenurulesempty);
  279.         i.setItem(1, helpmenurulesempty);
  280.         i.setItem(2, helpmenurulesempty);
  281.         i.setItem(3, helpmenurulesempty);
  282.         i.setItem(4, helpmenurulesempty);
  283.         i.setItem(5, helpmenurulesempty);
  284.         i.setItem(6, helpmenurulesempty);
  285.         i.setItem(7, helpmenurulesempty);
  286.         i.setItem(8, helpmenurulesempty);
  287.         i.setItem(9, helpmenurulesempty);
  288.         i.setItem(10, helpmenurulesempty);
  289.         i.setItem(11, helpmenurules1);
  290.         i.setItem(12, helpmenurulesempty);
  291.         i.setItem(13, helpmenurules2);
  292.         i.setItem(14, helpmenurulesempty);
  293.         i.setItem(15, helpmenurules3);
  294.         i.setItem(16, helpmenurulesempty);
  295.         i.setItem(17, helpmenurulesempty);
  296.         i.setItem(18, helpmenurulesback);
  297.         i.setItem(19, helpmenurulesempty);
  298.         i.setItem(20, helpmenurulesempty);
  299.         i.setItem(21, helpmenurulesempty);
  300.         i.setItem(22, helpmenurulesempty);
  301.         i.setItem(23, helpmenurulesempty);
  302.         i.setItem(24, helpmenurulesempty);
  303.         i.setItem(25, helpmenurulesempty);
  304.         i.setItem(26, helpmenurulesempty);
  305.  
  306.         player.openInventory(i);
  307.         // Rules - help menu
  308.     }
  309.  
  310.     public void newInventory4(Player player) {
  311.         Inventory i = plugin.getServer().createInventory(null, 36, ChatColor.DARK_PURPLE + "Atlas"
  312.                 + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Skyblock Commands");
  313.  
  314.         ItemStack helpmenucommandsskyblock1 = new ItemStack(Material.PAPER, 1);
  315.         ItemMeta helpmenucommandsskyblock1Meta = helpmenucommandsskyblock1.getItemMeta();
  316.         helpmenucommandsskyblock1Meta
  317.                 .setDisplayName(ChatColor.WHITE + "[1]" + ChatColor.DARK_PURPLE + " /is [/island]");
  318.         ArrayList<String> helpmenucommandsskyblocklore1 = new ArrayList<String>();
  319.         helpmenucommandsskyblocklore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  320.         helpmenucommandsskyblocklore1.add(ChatColor.WHITE + "Creates an empty island if one is not already");
  321.         helpmenucommandsskyblocklore1.add(ChatColor.WHITE + "created. You will have a choice when creating");
  322.         helpmenucommandsskyblocklore1.add(ChatColor.WHITE + "and island.");
  323.         helpmenucommandsskyblocklore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  324.         helpmenucommandsskyblock1Meta.setLore(helpmenucommandsskyblocklore1);
  325.         helpmenucommandsskyblock1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  326.         helpmenucommandsskyblock1.setItemMeta(helpmenucommandsskyblock1Meta);
  327.  
  328.         ItemStack helpmenucommandsskyblock2 = new ItemStack(Material.PAPER, 1);
  329.         ItemMeta helpmenucommandsskyblock2Meta = helpmenucommandsskyblock2.getItemMeta();
  330.         helpmenucommandsskyblock2Meta
  331.                 .setDisplayName(ChatColor.WHITE + "[2]" + ChatColor.DARK_PURPLE + " /is controlpanel [/is cp]");
  332.         ArrayList<String> helpmenucommandsskyblocklore2 = new ArrayList<String>();
  333.         helpmenucommandsskyblocklore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  334.         helpmenucommandsskyblocklore2.add(ChatColor.WHITE + "Opens the island control panel. This can control");
  335.         helpmenucommandsskyblocklore2.add(ChatColor.WHITE + "many settings for both visitors and owners of the");
  336.         helpmenucommandsskyblocklore2.add(ChatColor.WHITE + "island.");
  337.         helpmenucommandsskyblocklore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  338.         helpmenucommandsskyblock2Meta.setLore(helpmenucommandsskyblocklore2);
  339.         helpmenucommandsskyblock2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  340.         helpmenucommandsskyblock2.setItemMeta(helpmenucommandsskyblock2Meta);
  341.  
  342.         ItemStack helpmenucommandsskyblock3 = new ItemStack(Material.PAPER, 1);
  343.         ItemMeta helpmenucommandsskyblock3Meta = helpmenucommandsskyblock3.getItemMeta();
  344.         helpmenucommandsskyblock3Meta
  345.                 .setDisplayName(ChatColor.WHITE + "[3]" + ChatColor.DARK_PURPLE + " /is reset [2 resets]");
  346.         ArrayList<String> helpmenucommandsskyblocklore3 = new ArrayList<String>();
  347.         helpmenucommandsskyblocklore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  348.         helpmenucommandsskyblocklore3.add(ChatColor.WHITE + "Resets the island to it's original state. Each");
  349.         helpmenucommandsskyblocklore3.add(ChatColor.WHITE + "player only gets a few resets so use these");
  350.         helpmenucommandsskyblocklore3.add(ChatColor.WHITE + "wisely.");
  351.         helpmenucommandsskyblocklore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  352.         helpmenucommandsskyblock3Meta.setLore(helpmenucommandsskyblocklore3);
  353.         helpmenucommandsskyblock3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  354.         helpmenucommandsskyblock3.setItemMeta(helpmenucommandsskyblock3Meta);
  355.  
  356.         ItemStack helpmenucommandsskyblock4 = new ItemStack(Material.PAPER, 1);
  357.         ItemMeta helpmenucommandsskyblock4Meta = helpmenucommandsskyblock4.getItemMeta();
  358.         helpmenucommandsskyblock4Meta.setDisplayName(ChatColor.WHITE + "[4]" + ChatColor.DARK_PURPLE + " /is sethome");
  359.         ArrayList<String> helpmenucommandsskyblocklore4 = new ArrayList<String>();
  360.         helpmenucommandsskyblocklore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  361.         helpmenucommandsskyblocklore4.add(ChatColor.WHITE + "Use this command to set a home on your island.");
  362.         helpmenucommandsskyblocklore4.add(ChatColor.WHITE + "This will change the position that you spawn on");
  363.         helpmenucommandsskyblocklore4.add(ChatColor.WHITE + "your island.");
  364.         helpmenucommandsskyblocklore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  365.         helpmenucommandsskyblock4Meta.setLore(helpmenucommandsskyblocklore4);
  366.         helpmenucommandsskyblock4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  367.         helpmenucommandsskyblock4.setItemMeta(helpmenucommandsskyblock4Meta);
  368.  
  369.         ItemStack helpmenucommandsskyblock5 = new ItemStack(Material.PAPER, 1);
  370.         ItemMeta helpmenucommandsskyblock5Meta = helpmenucommandsskyblock4.getItemMeta();
  371.         helpmenucommandsskyblock5Meta.setDisplayName(ChatColor.WHITE + "[5]" + ChatColor.DARK_PURPLE + " /is top");
  372.         ArrayList<String> helpmenucommandsskyblocklore5 = new ArrayList<String>();
  373.         helpmenucommandsskyblocklore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  374.         helpmenucommandsskyblocklore5.add(ChatColor.WHITE + "Will display the top 10 islands on the server.");
  375.         helpmenucommandsskyblocklore5.add(ChatColor.WHITE + "These scores are based off of the amount of");
  376.         helpmenucommandsskyblocklore5.add(ChatColor.WHITE + "blocks and money that the owner has amassed.");
  377.         helpmenucommandsskyblocklore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  378.         helpmenucommandsskyblock5Meta.setLore(helpmenucommandsskyblocklore5);
  379.         helpmenucommandsskyblock5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  380.         helpmenucommandsskyblock5.setItemMeta(helpmenucommandsskyblock5Meta);
  381.  
  382.         ItemStack helpmenucommandsskyblock6 = new ItemStack(Material.PAPER, 1);
  383.         ItemMeta helpmenucommandsskyblock6Meta = helpmenucommandsskyblock6.getItemMeta();
  384.         helpmenucommandsskyblock6Meta.setDisplayName(ChatColor.WHITE + "[6]" + ChatColor.DARK_PURPLE + " /is warps");
  385.         ArrayList<String> helpmenucommandsskyblocklore6 = new ArrayList<String>();
  386.         helpmenucommandsskyblocklore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  387.         helpmenucommandsskyblocklore6.add(ChatColor.WHITE + "This will list all the player islands that you can");
  388.         helpmenucommandsskyblocklore6.add(ChatColor.WHITE + "warp to.");
  389.         helpmenucommandsskyblocklore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  390.         helpmenucommandsskyblock6Meta.setLore(helpmenucommandsskyblocklore6);
  391.         helpmenucommandsskyblock6Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  392.         helpmenucommandsskyblock6.setItemMeta(helpmenucommandsskyblock6Meta);
  393.  
  394.         ItemStack helpmenucommandsskyblock7 = new ItemStack(Material.PAPER, 1);
  395.         ItemMeta helpmenucommandsskyblock7Meta = helpmenucommandsskyblock7.getItemMeta();
  396.         helpmenucommandsskyblock7Meta.setDisplayName(ChatColor.WHITE + "[7]" + ChatColor.DARK_PURPLE + " /is team");
  397.         ArrayList<String> helpmenucommandsskyblocklore7 = new ArrayList<String>();
  398.         helpmenucommandsskyblocklore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  399.         helpmenucommandsskyblocklore7.add(ChatColor.WHITE + "This command will list the players that are apart");
  400.         helpmenucommandsskyblocklore7.add(ChatColor.WHITE + "of an island.");
  401.         helpmenucommandsskyblocklore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  402.         helpmenucommandsskyblock7Meta.setLore(helpmenucommandsskyblocklore7);
  403.         helpmenucommandsskyblock7Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  404.         helpmenucommandsskyblock7.setItemMeta(helpmenucommandsskyblock7Meta);
  405.  
  406.         ItemStack helpmenucommandsskyblock8 = new ItemStack(Material.PAPER, 1);
  407.         ItemMeta helpmenucommandsskyblock8Meta = helpmenucommandsskyblock8.getItemMeta();
  408.         helpmenucommandsskyblock8Meta.setDisplayName(ChatColor.WHITE + "[8]" + ChatColor.DARK_PURPLE + " /is invite");
  409.         ArrayList<String> helpmenucommandsskyblocklore8 = new ArrayList<String>();
  410.         helpmenucommandsskyblocklore8.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  411.         helpmenucommandsskyblocklore8.add(ChatColor.WHITE + "To invite a player to an island, this command");
  412.         helpmenucommandsskyblocklore8.add(ChatColor.WHITE + "must be used.");
  413.         helpmenucommandsskyblocklore8.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  414.         helpmenucommandsskyblock8Meta.setLore(helpmenucommandsskyblocklore8);
  415.         helpmenucommandsskyblock8Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  416.         helpmenucommandsskyblock8.setItemMeta(helpmenucommandsskyblock8Meta);
  417.  
  418.         ItemStack helpmenucommandsskyblock9 = new ItemStack(Material.PAPER, 1);
  419.         ItemMeta helpmenucommandsskyblock9Meta = helpmenucommandsskyblock9.getItemMeta();
  420.         helpmenucommandsskyblock9Meta.setDisplayName(ChatColor.WHITE + "[9]" + ChatColor.DARK_PURPLE + " /is leave");
  421.         ArrayList<String> helpmenucommandsskyblocklore9 = new ArrayList<String>();
  422.         helpmenucommandsskyblocklore9.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  423.         helpmenucommandsskyblocklore9.add(ChatColor.WHITE + "This command is used to leave an island. This");
  424.         helpmenucommandsskyblocklore9.add(ChatColor.WHITE + "will remove all items from the players inventory.");
  425.         helpmenucommandsskyblocklore9.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  426.         helpmenucommandsskyblock9Meta.setLore(helpmenucommandsskyblocklore9);
  427.         helpmenucommandsskyblock9Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  428.         helpmenucommandsskyblock9.setItemMeta(helpmenucommandsskyblock9Meta);
  429.  
  430.         ItemStack helpmenucommandsskyblock10 = new ItemStack(Material.PAPER, 1);
  431.         ItemMeta helpmenucommandsskyblock10Meta = helpmenucommandsskyblock10.getItemMeta();
  432.         helpmenucommandsskyblock10Meta.setDisplayName(ChatColor.WHITE + "[10]" + ChatColor.DARK_PURPLE + " /is kick");
  433.         ArrayList<String> helpmenucommandsskyblocklore10 = new ArrayList<String>();
  434.         helpmenucommandsskyblocklore10.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  435.         helpmenucommandsskyblocklore10.add(ChatColor.WHITE + "This command is used to kick players from an island");
  436.         helpmenucommandsskyblocklore10.add(ChatColor.WHITE + "island only the owner of an island can use this");
  437.         helpmenucommandsskyblocklore10.add(ChatColor.WHITE + "command.");
  438.         helpmenucommandsskyblocklore10.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  439.         helpmenucommandsskyblock10Meta.setLore(helpmenucommandsskyblocklore10);
  440.         helpmenucommandsskyblock10Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  441.         helpmenucommandsskyblock10.setItemMeta(helpmenucommandsskyblock10Meta);
  442.  
  443.         ItemStack helpmenucommandsskyblock11 = new ItemStack(Material.PAPER, 1);
  444.         ItemMeta helpmenucommandsskyblock11Meta = helpmenucommandsskyblock11.getItemMeta();
  445.         helpmenucommandsskyblock11Meta
  446.                 .setDisplayName(ChatColor.WHITE + "[11]" + ChatColor.DARK_PURPLE + " /is makeleader");
  447.         ArrayList<String> helpmenucommandsskyblocklore11 = new ArrayList<String>();
  448.         helpmenucommandsskyblocklore11.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  449.         helpmenucommandsskyblocklore11.add(ChatColor.WHITE + "This command is used to make another player");
  450.         helpmenucommandsskyblocklore11.add(ChatColor.WHITE + "on an island the leader of said island. This");
  451.         helpmenucommandsskyblocklore11.add(ChatColor.WHITE + "command can only be used by the island leader.");
  452.         helpmenucommandsskyblocklore11.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  453.         helpmenucommandsskyblock11Meta.setLore(helpmenucommandsskyblocklore11);
  454.         helpmenucommandsskyblock11Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  455.         helpmenucommandsskyblock11.setItemMeta(helpmenucommandsskyblock11Meta);
  456.  
  457.         ItemStack helpmenucommandsskyblock12 = new ItemStack(Material.PAPER, 1);
  458.         ItemMeta helpmenucommandsskyblock12Meta = helpmenucommandsskyblock12.getItemMeta();
  459.         helpmenucommandsskyblock12Meta.setDisplayName(ChatColor.WHITE + "[12]" + ChatColor.DARK_PURPLE + " /is expel");
  460.         ArrayList<String> helpmenucommandsskyblocklore12 = new ArrayList<String>();
  461.         helpmenucommandsskyblocklore12.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  462.         helpmenucommandsskyblocklore12.add(ChatColor.WHITE + "Used to remove specific visitors from an island.");
  463.         helpmenucommandsskyblocklore12.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  464.         helpmenucommandsskyblock12Meta.setLore(helpmenucommandsskyblocklore12);
  465.         helpmenucommandsskyblock12Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  466.         helpmenucommandsskyblock12.setItemMeta(helpmenucommandsskyblock12Meta);
  467.  
  468.         ItemStack helpmenucommandsskyblock13 = new ItemStack(Material.PAPER, 1);
  469.         ItemMeta helpmenucommandsskyblock13Meta = helpmenucommandsskyblock13.getItemMeta();
  470.         helpmenucommandsskyblock13Meta.setDisplayName(ChatColor.WHITE + "[13]" + ChatColor.DARK_PURPLE + " /is ban");
  471.         ArrayList<String> helpmenucommandsskyblocklore13 = new ArrayList<String>();
  472.         helpmenucommandsskyblocklore13.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  473.         helpmenucommandsskyblocklore13.add(ChatColor.WHITE + "Used to ban specific players from an island.");
  474.         helpmenucommandsskyblocklore13.add(ChatColor.WHITE + "This can be used so that 'annoying' players");
  475.         helpmenucommandsskyblocklore13.add(ChatColor.WHITE + "cannot access an island anymore.");
  476.         helpmenucommandsskyblocklore13.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  477.         helpmenucommandsskyblock13Meta.setLore(helpmenucommandsskyblocklore13);
  478.         helpmenucommandsskyblock13Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  479.         helpmenucommandsskyblock13.setItemMeta(helpmenucommandsskyblock13Meta);
  480.  
  481.         ItemStack helpmenucommandsskyblock14 = new ItemStack(Material.PAPER, 1);
  482.         ItemMeta helpmenucommandsskyblock14Meta = helpmenucommandsskyblock14.getItemMeta();
  483.         helpmenucommandsskyblock14Meta
  484.                 .setDisplayName(ChatColor.WHITE + "[14]" + ChatColor.DARK_PURPLE + " /is settings");
  485.         ArrayList<String> helpmenucommandsskyblocklore14 = new ArrayList<String>();
  486.         helpmenucommandsskyblocklore14.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  487.         helpmenucommandsskyblocklore14.add(ChatColor.WHITE + "This command is used to alter island settings");
  488.         helpmenucommandsskyblocklore14.add(ChatColor.WHITE + "for visitors and members of the island alike.");
  489.         helpmenucommandsskyblocklore14.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  490.         helpmenucommandsskyblock14Meta.setLore(helpmenucommandsskyblocklore14);
  491.         helpmenucommandsskyblock14Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  492.         helpmenucommandsskyblock14.setItemMeta(helpmenucommandsskyblock14Meta);
  493.  
  494.         ItemStack helpmenucommandsskyblockback = new ItemStack(Material.NETHER_STAR, 1);
  495.         ItemMeta helpmenucommandsskyblockbackMeta = helpmenucommandsskyblockback.getItemMeta();
  496.         helpmenucommandsskyblockbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  497.         helpmenucommandsskyblockbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  498.         helpmenucommandsskyblockback.setItemMeta(helpmenucommandsskyblockbackMeta);
  499.  
  500.         ItemStack helpmenucommandsskyblockempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  501.         ItemMeta helpmenucommandsskyblockemptyMeta = helpmenucommandsskyblockempty.getItemMeta();
  502.         helpmenucommandsskyblockemptyMeta.setDisplayName(ChatColor.BLACK + ".");
  503.         helpmenucommandsskyblockemptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  504.         helpmenucommandsskyblockempty.setItemMeta(helpmenucommandsskyblockemptyMeta);
  505.  
  506.         i.setItem(0, helpmenucommandsskyblockempty);
  507.         i.setItem(1, helpmenucommandsskyblockempty);
  508.         i.setItem(2, helpmenucommandsskyblockempty);
  509.         i.setItem(3, helpmenucommandsskyblockempty);
  510.         i.setItem(4, helpmenucommandsskyblockempty);
  511.         i.setItem(5, helpmenucommandsskyblockempty);
  512.         i.setItem(6, helpmenucommandsskyblockempty);
  513.         i.setItem(7, helpmenucommandsskyblockempty);
  514.         i.setItem(8, helpmenucommandsskyblockempty);
  515.         i.setItem(9, helpmenucommandsskyblockempty);
  516.         i.setItem(10, helpmenucommandsskyblock1);
  517.         i.setItem(11, helpmenucommandsskyblock2);
  518.         i.setItem(12, helpmenucommandsskyblock3);
  519.         i.setItem(13, helpmenucommandsskyblock4);
  520.         i.setItem(14, helpmenucommandsskyblock5);
  521.         i.setItem(15, helpmenucommandsskyblock6);
  522.         i.setItem(16, helpmenucommandsskyblock7);
  523.         i.setItem(17, helpmenucommandsskyblockempty);
  524.         i.setItem(18, helpmenucommandsskyblockempty);
  525.         i.setItem(19, helpmenucommandsskyblock8);
  526.         i.setItem(20, helpmenucommandsskyblock9);
  527.         i.setItem(21, helpmenucommandsskyblock10);
  528.         i.setItem(22, helpmenucommandsskyblock11);
  529.         i.setItem(23, helpmenucommandsskyblock12);
  530.         i.setItem(24, helpmenucommandsskyblock13);
  531.         i.setItem(25, helpmenucommandsskyblock14);
  532.         i.setItem(26, helpmenucommandsskyblockempty);
  533.         i.setItem(27, helpmenucommandsskyblockback);
  534.         i.setItem(28, helpmenucommandsskyblockempty);
  535.         i.setItem(29, helpmenucommandsskyblockempty);
  536.         i.setItem(30, helpmenucommandsskyblockempty);
  537.         i.setItem(31, helpmenucommandsskyblockempty);
  538.         i.setItem(32, helpmenucommandsskyblockempty);
  539.         i.setItem(33, helpmenucommandsskyblockempty);
  540.         i.setItem(34, helpmenucommandsskyblockempty);
  541.         i.setItem(35, helpmenucommandsskyblockempty);
  542.  
  543.         player.openInventory(i);
  544.         // Commands 1 - help menu
  545.     }
  546.  
  547.     public void newInventory5(Player player) {
  548.  
  549.         Inventory i = plugin.getServer().createInventory(null, 27,
  550.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " PvP Commands");
  551.  
  552.         ItemStack helpmenucommandspvp1 = new ItemStack(Material.PAPER, 1);
  553.         ItemMeta helpmenucommandspvp1Meta = helpmenucommandspvp1.getItemMeta();
  554.         helpmenucommandspvp1Meta.setDisplayName(ChatColor.WHITE + "[1]" + ChatColor.DARK_PURPLE + " /duel");
  555.         ArrayList<String> helpmenucommandspvplore1 = new ArrayList<String>();
  556.         helpmenucommandspvplore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  557.         helpmenucommandspvplore1.add(ChatColor.WHITE + "This is the core command to duel other players");
  558.         helpmenucommandspvplore1.add(ChatColor.WHITE + "on the server. You will be told to choose a kit");
  559.         helpmenucommandspvplore1.add(ChatColor.WHITE + "and then teleport to the duels arena.");
  560.         helpmenucommandspvplore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  561.         helpmenucommandspvp1Meta.setLore(helpmenucommandspvplore1);
  562.         helpmenucommandspvp1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  563.         helpmenucommandspvp1.setItemMeta(helpmenucommandspvp1Meta);
  564.        
  565.         ItemStack helpmenucommandspvp2 = new ItemStack(Material.PAPER, 1);
  566.         ItemMeta helpmenucommandspvp2Meta = helpmenucommandspvp2.getItemMeta();
  567.         helpmenucommandspvp2Meta.setDisplayName(ChatColor.WHITE + "[2]" + ChatColor.DARK_PURPLE + " /ct");
  568.         ArrayList<String> helpmenucommandspvplore2 = new ArrayList<String>();
  569.         helpmenucommandspvplore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  570.         helpmenucommandspvplore2.add(ChatColor.WHITE + "This command is used to check whether you are in");
  571.         helpmenucommandspvplore2.add(ChatColor.WHITE + "combat or not. It will also describe how long");
  572.         helpmenucommandspvplore2.add(ChatColor.WHITE + "until the combat tag expires.");
  573.         helpmenucommandspvplore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  574.         helpmenucommandspvp2Meta.setLore(helpmenucommandspvplore2);
  575.         helpmenucommandspvp2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  576.         helpmenucommandspvp2.setItemMeta(helpmenucommandspvp2Meta);
  577.        
  578.         ItemStack helpmenucommandspvp3 = new ItemStack(Material.PAPER, 1);
  579.         ItemMeta helpmenucommandspvp3Meta = helpmenucommandspvp3.getItemMeta();
  580.         helpmenucommandspvp3Meta.setDisplayName(ChatColor.WHITE + "[3]" + ChatColor.DARK_PURPLE + " /duel accept");
  581.         ArrayList<String> helpmenucommandspvplore3 = new ArrayList<String>();
  582.         helpmenucommandspvplore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  583.         helpmenucommandspvplore3.add(ChatColor.WHITE + "This command is used to accept duels from other");
  584.         helpmenucommandspvplore3.add(ChatColor.WHITE + "players.");
  585.         helpmenucommandspvplore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  586.         helpmenucommandspvp3Meta.setLore(helpmenucommandspvplore3);
  587.         helpmenucommandspvp3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  588.         helpmenucommandspvp3.setItemMeta(helpmenucommandspvp3Meta);
  589.        
  590.         ItemStack helpmenucommandspvp4 = new ItemStack(Material.PAPER, 1);
  591.         ItemMeta helpmenucommandspvp4Meta = helpmenucommandspvp4.getItemMeta();
  592.         helpmenucommandspvp4Meta.setDisplayName(ChatColor.WHITE + "[4]" + ChatColor.DARK_PURPLE + " /duel deny");
  593.         ArrayList<String> helpmenucommandspvplore4 = new ArrayList<String>();
  594.         helpmenucommandspvplore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  595.         helpmenucommandspvplore4.add(ChatColor.WHITE + "This command is used to deny duels from other");
  596.         helpmenucommandspvplore4.add(ChatColor.WHITE + "players.");
  597.         helpmenucommandspvplore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  598.         helpmenucommandspvp4Meta.setLore(helpmenucommandspvplore4);
  599.         helpmenucommandspvp4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  600.         helpmenucommandspvp4.setItemMeta(helpmenucommandspvp4Meta);
  601.  
  602.         ItemStack helpmenucommandspvp5 = new ItemStack(Material.PAPER, 1);
  603.         ItemMeta helpmenucommandspvp5Meta = helpmenucommandspvp5.getItemMeta();
  604.         helpmenucommandspvp5Meta.setDisplayName(ChatColor.WHITE + "[5]" + ChatColor.DARK_PURPLE + " [TBD]");
  605.         helpmenucommandspvp5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  606.         helpmenucommandspvp5.setItemMeta(helpmenucommandspvp5Meta);
  607.  
  608.         ItemStack helpmenucommandspvpback = new ItemStack(Material.NETHER_STAR, 1);
  609.         ItemMeta helpmenucommandspvpbackMeta = helpmenucommandspvpback.getItemMeta();
  610.         helpmenucommandspvpbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  611.         helpmenucommandspvpbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  612.         helpmenucommandspvpback.setItemMeta(helpmenucommandspvpbackMeta);
  613.  
  614.         ItemStack helpmenucommandspvpempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  615.         ItemMeta helpmenucommandspvpemptyMeta = helpmenucommandspvpempty.getItemMeta();
  616.         helpmenucommandspvpemptyMeta.setDisplayName(ChatColor.BLACK + ".");
  617.         helpmenucommandspvpemptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  618.         helpmenucommandspvpempty.setItemMeta(helpmenucommandspvpemptyMeta);
  619.  
  620.         i.setItem(0, helpmenucommandspvpempty);
  621.         i.setItem(1, helpmenucommandspvpempty);
  622.         i.setItem(2, helpmenucommandspvpempty);
  623.         i.setItem(3, helpmenucommandspvpempty);
  624.         i.setItem(4, helpmenucommandspvpempty);
  625.         i.setItem(5, helpmenucommandspvpempty);
  626.         i.setItem(6, helpmenucommandspvpempty);
  627.         i.setItem(7, helpmenucommandspvpempty);
  628.         i.setItem(8, helpmenucommandspvpempty);
  629.         i.setItem(9, helpmenucommandspvpempty);
  630.         i.setItem(10, helpmenucommandspvpempty);
  631.         i.setItem(11, helpmenucommandspvp1);
  632.         i.setItem(12, helpmenucommandspvp2);
  633.         i.setItem(13, helpmenucommandspvp3);
  634.         i.setItem(14, helpmenucommandspvp4);
  635.         i.setItem(15, helpmenucommandspvp5);
  636.         i.setItem(16, helpmenucommandspvpempty);
  637.         i.setItem(17, helpmenucommandspvpempty);
  638.         i.setItem(18, helpmenucommandspvpback);
  639.         i.setItem(19, helpmenucommandspvpempty);
  640.         i.setItem(20, helpmenucommandspvpempty);
  641.         i.setItem(21, helpmenucommandspvpempty);
  642.         i.setItem(22, helpmenucommandspvpempty);
  643.         i.setItem(23, helpmenucommandspvpempty);
  644.         i.setItem(24, helpmenucommandspvpempty);
  645.         i.setItem(25, helpmenucommandspvpempty);
  646.         i.setItem(26, helpmenucommandspvpempty);
  647.  
  648.         player.openInventory(i);
  649.         // Commands 2 - help menu
  650.     }
  651.  
  652.     public void newInventory6(Player player) {
  653.  
  654.         Inventory i = plugin.getServer().createInventory(null, 27,
  655.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Warp Commands");
  656.  
  657.         ItemStack helpmenucommandswarp1 = new ItemStack(Material.PAPER, 1);
  658.         ItemMeta helpmenucommandswarp1Meta = helpmenucommandswarp1.getItemMeta();
  659.         helpmenucommandswarp1Meta.setDisplayName(ChatColor.WHITE + "[1]" + ChatColor.DARK_PURPLE + " /warp spawn");
  660.         helpmenucommandswarp1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  661.         helpmenucommandswarp1.setItemMeta(helpmenucommandswarp1Meta);
  662.  
  663.         ItemStack helpmenucommandswarp2 = new ItemStack(Material.PAPER, 1);
  664.         ItemMeta helpmenucommandswarp2Meta = helpmenucommandswarp2.getItemMeta();
  665.         helpmenucommandswarp2Meta.setDisplayName(ChatColor.WHITE + "[2]" + ChatColor.DARK_PURPLE + " /warp warzone");
  666.         helpmenucommandswarp2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  667.         helpmenucommandswarp2.setItemMeta(helpmenucommandswarp2Meta);
  668.  
  669.         ItemStack helpmenucommandswarp3 = new ItemStack(Material.PAPER, 1);
  670.         ItemMeta helpmenucommandswarp3Meta = helpmenucommandswarp3.getItemMeta();
  671.         helpmenucommandswarp3Meta.setDisplayName(ChatColor.WHITE + "[3]" + ChatColor.DARK_PURPLE + " /warp duellobby");
  672.         helpmenucommandswarp3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  673.         helpmenucommandswarp3.setItemMeta(helpmenucommandswarp3Meta);
  674.  
  675.         ItemStack helpmenucommandswarp4 = new ItemStack(Material.PAPER, 1);
  676.         ItemMeta helpmenucommandswarp4Meta = helpmenucommandswarp4.getItemMeta();
  677.         helpmenucommandswarp4Meta.setDisplayName(ChatColor.WHITE + "[4]" + ChatColor.DARK_PURPLE + " /warp parkour");
  678.         helpmenucommandswarp4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  679.         helpmenucommandswarp4.setItemMeta(helpmenucommandswarp4Meta);
  680.  
  681.         ItemStack helpmenucommandswarp5 = new ItemStack(Material.PAPER, 1);
  682.         ItemMeta helpmenucommandswarp5Meta = helpmenucommandswarp5.getItemMeta();
  683.         helpmenucommandswarp5Meta.setDisplayName(ChatColor.WHITE + "[5]" + ChatColor.DARK_PURPLE + " [TBD]");
  684.         helpmenucommandswarp5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  685.         helpmenucommandswarp5.setItemMeta(helpmenucommandswarp5Meta);
  686.  
  687.         ItemStack helpmenucommandswarpback = new ItemStack(Material.NETHER_STAR, 1);
  688.         ItemMeta helpmenucommandswarpbackMeta = helpmenucommandswarpback.getItemMeta();
  689.         helpmenucommandswarpbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  690.         helpmenucommandswarpbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  691.         helpmenucommandswarpback.setItemMeta(helpmenucommandswarpbackMeta);
  692.  
  693.         ItemStack helpmenucommandswarpempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  694.         ItemMeta helpmenucommandswarpemptyMeta = helpmenucommandswarpempty.getItemMeta();
  695.         helpmenucommandswarpemptyMeta.setDisplayName(ChatColor.BLACK + ".");
  696.         helpmenucommandswarpemptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  697.         helpmenucommandswarpempty.setItemMeta(helpmenucommandswarpemptyMeta);
  698.  
  699.         i.setItem(0, helpmenucommandswarpempty);
  700.         i.setItem(1, helpmenucommandswarpempty);
  701.         i.setItem(2, helpmenucommandswarpempty);
  702.         i.setItem(3, helpmenucommandswarpempty);
  703.         i.setItem(4, helpmenucommandswarpempty);
  704.         i.setItem(5, helpmenucommandswarpempty);
  705.         i.setItem(6, helpmenucommandswarpempty);
  706.         i.setItem(7, helpmenucommandswarpempty);
  707.         i.setItem(8, helpmenucommandswarpempty);
  708.         i.setItem(9, helpmenucommandswarpempty);
  709.         i.setItem(10, helpmenucommandswarpempty);
  710.         i.setItem(11, helpmenucommandswarp1);
  711.         i.setItem(12, helpmenucommandswarp2);
  712.         i.setItem(13, helpmenucommandswarp3);
  713.         i.setItem(14, helpmenucommandswarp4);
  714.         i.setItem(15, helpmenucommandswarp5);
  715.         i.setItem(16, helpmenucommandswarpempty);
  716.         i.setItem(17, helpmenucommandswarpempty);
  717.         i.setItem(18, helpmenucommandswarpback);
  718.         i.setItem(19, helpmenucommandswarpempty);
  719.         i.setItem(20, helpmenucommandswarpempty);
  720.         i.setItem(21, helpmenucommandswarpempty);
  721.         i.setItem(22, helpmenucommandswarpempty);
  722.         i.setItem(23, helpmenucommandswarpempty);
  723.         i.setItem(24, helpmenucommandswarpempty);
  724.         i.setItem(25, helpmenucommandswarpempty);
  725.         i.setItem(26, helpmenucommandswarpempty);
  726.  
  727.         player.openInventory(i);
  728.         // Commands 3 - help menu
  729.     }
  730.  
  731.     public void newInventory7(Player player) {
  732.  
  733.         Inventory i = plugin.getServer().createInventory(null, 27,
  734.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Shop Commands");
  735.  
  736.         ItemStack helpmenucommandsshop1 = new ItemStack(Material.PAPER, 1);
  737.         ItemMeta helpmenucommandsshop1Meta = helpmenucommandsshop1.getItemMeta();
  738.         helpmenucommandsshop1Meta.setDisplayName(ChatColor.WHITE + "[1]" + ChatColor.DARK_PURPLE + " /ah");
  739.         helpmenucommandsshop1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  740.         helpmenucommandsshop1.setItemMeta(helpmenucommandsshop1Meta);
  741.  
  742.         ItemStack helpmenucommandsshop2 = new ItemStack(Material.PAPER, 1);
  743.         ItemMeta helpmenucommandsshop2Meta = helpmenucommandsshop2.getItemMeta();
  744.         helpmenucommandsshop2Meta.setDisplayName(ChatColor.WHITE + "[2]" + ChatColor.DARK_PURPLE + " /ah view");
  745.         helpmenucommandsshop2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  746.         helpmenucommandsshop2.setItemMeta(helpmenucommandsshop2Meta);
  747.  
  748.         ItemStack helpmenucommandsshop3 = new ItemStack(Material.PAPER, 1);
  749.         ItemMeta helpmenucommandsshop3Meta = helpmenucommandsshop1.getItemMeta();
  750.         helpmenucommandsshop3Meta.setDisplayName(ChatColor.WHITE + "[3]" + ChatColor.DARK_PURPLE + " /ah sell [price]");
  751.         helpmenucommandsshop3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  752.         helpmenucommandsshop3.setItemMeta(helpmenucommandsshop3Meta);
  753.  
  754.         ItemStack helpmenucommandsshop4 = new ItemStack(Material.PAPER, 1);
  755.         ItemMeta helpmenucommandsshop4Meta = helpmenucommandsshop1.getItemMeta();
  756.         helpmenucommandsshop4Meta.setDisplayName(ChatColor.WHITE + "[4]" + ChatColor.DARK_PURPLE + " /ah bid [price]");
  757.         helpmenucommandsshop4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  758.         helpmenucommandsshop4.setItemMeta(helpmenucommandsshop4Meta);
  759.  
  760.         ItemStack helpmenucommandsshop5 = new ItemStack(Material.PAPER, 1);
  761.         ItemMeta helpmenucommandsshop5Meta = helpmenucommandsshop1.getItemMeta();
  762.         helpmenucommandsshop5Meta.setDisplayName(ChatColor.WHITE + "[5]" + ChatColor.DARK_PURPLE + " /ah expired");
  763.         helpmenucommandsshop5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  764.         helpmenucommandsshop5.setItemMeta(helpmenucommandsshop5Meta);
  765.  
  766.         ItemStack helpmenucommandsshop6 = new ItemStack(Material.PAPER, 1);
  767.         ItemMeta helpmenucommandsshop6Meta = helpmenucommandsshop1.getItemMeta();
  768.         helpmenucommandsshop6Meta.setDisplayName(ChatColor.WHITE + "[6]" + ChatColor.DARK_PURPLE + " /ah collect");
  769.         helpmenucommandsshop6Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  770.         helpmenucommandsshop6.setItemMeta(helpmenucommandsshop6Meta);
  771.  
  772.         ItemStack helpmenucommandsshop7 = new ItemStack(Material.PAPER, 1);
  773.         ItemMeta helpmenucommandsshop7Meta = helpmenucommandsshop1.getItemMeta();
  774.         helpmenucommandsshop7Meta.setDisplayName(ChatColor.WHITE + "[7]" + ChatColor.DARK_PURPLE + " /ah listed");
  775.         helpmenucommandsshop7Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  776.         helpmenucommandsshop7.setItemMeta(helpmenucommandsshop7Meta);
  777.  
  778.         ItemStack helpmenucommandsshopback = new ItemStack(Material.NETHER_STAR, 1);
  779.         ItemMeta helpmenucommandsshopbackMeta = helpmenucommandsshopback.getItemMeta();
  780.         helpmenucommandsshopbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  781.         helpmenucommandsshopbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  782.         helpmenucommandsshopback.setItemMeta(helpmenucommandsshopbackMeta);
  783.  
  784.         ItemStack helpmenucommandsshopempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  785.         ItemMeta helpmenucommandsshopemptyMeta = helpmenucommandsshopempty.getItemMeta();
  786.         helpmenucommandsshopemptyMeta.setDisplayName(ChatColor.BLACK + ".");
  787.         helpmenucommandsshopemptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  788.         helpmenucommandsshopempty.setItemMeta(helpmenucommandsshopemptyMeta);
  789.  
  790.         i.setItem(0, helpmenucommandsshopempty);
  791.         i.setItem(1, helpmenucommandsshopempty);
  792.         i.setItem(2, helpmenucommandsshopempty);
  793.         i.setItem(3, helpmenucommandsshopempty);
  794.         i.setItem(4, helpmenucommandsshopempty);
  795.         i.setItem(5, helpmenucommandsshopempty);
  796.         i.setItem(6, helpmenucommandsshopempty);
  797.         i.setItem(7, helpmenucommandsshopempty);
  798.         i.setItem(8, helpmenucommandsshopempty);
  799.         i.setItem(9, helpmenucommandsshopempty);
  800.         i.setItem(10, helpmenucommandsshop1);
  801.         i.setItem(11, helpmenucommandsshop2);
  802.         i.setItem(12, helpmenucommandsshop3);
  803.         i.setItem(13, helpmenucommandsshop4);
  804.         i.setItem(14, helpmenucommandsshop5);
  805.         i.setItem(15, helpmenucommandsshop6);
  806.         i.setItem(16, helpmenucommandsshop7);
  807.         i.setItem(17, helpmenucommandsshopempty);
  808.         i.setItem(18, helpmenucommandsshopback);
  809.         i.setItem(19, helpmenucommandsshopempty);
  810.         i.setItem(20, helpmenucommandsshopempty);
  811.         i.setItem(21, helpmenucommandsshopempty);
  812.         i.setItem(22, helpmenucommandsshopempty);
  813.         i.setItem(23, helpmenucommandsshopempty);
  814.         i.setItem(24, helpmenucommandsshopempty);
  815.         i.setItem(25, helpmenucommandsshopempty);
  816.         i.setItem(26, helpmenucommandsshopempty);
  817.  
  818.         player.openInventory(i);
  819.         // Commands 4 - help menu
  820.     }
  821.  
  822.     public void newInventory8(Player player) {
  823.  
  824.         Inventory i = plugin.getServer().createInventory(null, 27, ChatColor.DARK_PURPLE + "Atlas"
  825.                 + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Spawner Commands");
  826.  
  827.         ItemStack helpmenucommandsspawner1 = new ItemStack(Material.PAPER, 1);
  828.         ItemMeta helpmenucommandsspawner1Meta = helpmenucommandsspawner1.getItemMeta();
  829.         helpmenucommandsspawner1Meta.setDisplayName(ChatColor.WHITE + "[1]" + ChatColor.DARK_PURPLE + " /spawnershop");
  830.         helpmenucommandsspawner1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  831.         helpmenucommandsspawner1.setItemMeta(helpmenucommandsspawner1Meta);
  832.  
  833.         ItemStack helpmenucommandsspawner2 = new ItemStack(Material.PAPER, 1);
  834.         ItemMeta helpmenucommandsspawner2Meta = helpmenucommandsspawner2.getItemMeta();
  835.         helpmenucommandsspawner2Meta.setDisplayName(ChatColor.WHITE + "[2]" + ChatColor.DARK_PURPLE + " /spawnerstats");
  836.         helpmenucommandsspawner2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  837.         helpmenucommandsspawner2.setItemMeta(helpmenucommandsspawner2Meta);
  838.  
  839.         ItemStack helpmenucommandsspawner3 = new ItemStack(Material.PAPER, 1);
  840.         ItemMeta helpmenucommandsspawner3Meta = helpmenucommandsspawner1.getItemMeta();
  841.         helpmenucommandsspawner3Meta.setDisplayName(ChatColor.WHITE + "[3]" + ChatColor.DARK_PURPLE + " /es help");
  842.         helpmenucommandsspawner3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  843.         helpmenucommandsspawner3.setItemMeta(helpmenucommandsspawner3Meta);
  844.  
  845.         ItemStack helpmenucommandsspawner4 = new ItemStack(Material.PAPER, 1);
  846.         ItemMeta helpmenucommandsspawner4Meta = helpmenucommandsspawner1.getItemMeta();
  847.         helpmenucommandsspawner4Meta.setDisplayName(ChatColor.WHITE + "[4]" + ChatColor.DARK_PURPLE + " /es editor");
  848.         helpmenucommandsspawner4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  849.         helpmenucommandsspawner4.setItemMeta(helpmenucommandsspawner4Meta);
  850.  
  851.         ItemStack helpmenucommandsspawner5 = new ItemStack(Material.PAPER, 1);
  852.         ItemMeta helpmenucommandsspawner5Meta = helpmenucommandsspawner1.getItemMeta();
  853.         helpmenucommandsspawner5Meta.setDisplayName(ChatColor.WHITE + "[5]" + ChatColor.DARK_PURPLE + " [TBD]");
  854.         helpmenucommandsspawner5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  855.         helpmenucommandsspawner5.setItemMeta(helpmenucommandsspawner5Meta);
  856.  
  857.         ItemStack helpmenucommandsspawnerback = new ItemStack(Material.NETHER_STAR, 1);
  858.         ItemMeta helpmenucommandsspawnerbackMeta = helpmenucommandsspawnerback.getItemMeta();
  859.         helpmenucommandsspawnerbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  860.         helpmenucommandsspawnerbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  861.         helpmenucommandsspawnerback.setItemMeta(helpmenucommandsspawnerbackMeta);
  862.  
  863.         ItemStack helpmenucommandsspawnerempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  864.         ItemMeta helpmenucommandsspawneremptyMeta = helpmenucommandsspawnerempty.getItemMeta();
  865.         helpmenucommandsspawneremptyMeta.setDisplayName(ChatColor.BLACK + ".");
  866.         helpmenucommandsspawneremptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  867.         helpmenucommandsspawnerempty.setItemMeta(helpmenucommandsspawneremptyMeta);
  868.  
  869.         i.setItem(0, helpmenucommandsspawnerempty);
  870.         i.setItem(1, helpmenucommandsspawnerempty);
  871.         i.setItem(2, helpmenucommandsspawnerempty);
  872.         i.setItem(3, helpmenucommandsspawnerempty);
  873.         i.setItem(4, helpmenucommandsspawnerempty);
  874.         i.setItem(5, helpmenucommandsspawnerempty);
  875.         i.setItem(6, helpmenucommandsspawnerempty);
  876.         i.setItem(7, helpmenucommandsspawnerempty);
  877.         i.setItem(8, helpmenucommandsspawnerempty);
  878.         i.setItem(9, helpmenucommandsspawnerempty);
  879.         i.setItem(10, helpmenucommandsspawnerempty);
  880.         i.setItem(11, helpmenucommandsspawner1);
  881.         i.setItem(12, helpmenucommandsspawner2);
  882.         i.setItem(13, helpmenucommandsspawner3);
  883.         i.setItem(14, helpmenucommandsspawner4);
  884.         i.setItem(15, helpmenucommandsspawner5);
  885.         i.setItem(16, helpmenucommandsspawnerempty);
  886.         i.setItem(17, helpmenucommandsspawnerempty);
  887.         i.setItem(18, helpmenucommandsspawnerback);
  888.         i.setItem(19, helpmenucommandsspawnerempty);
  889.         i.setItem(20, helpmenucommandsspawnerempty);
  890.         i.setItem(21, helpmenucommandsspawnerempty);
  891.         i.setItem(22, helpmenucommandsspawnerempty);
  892.         i.setItem(23, helpmenucommandsspawnerempty);
  893.         i.setItem(24, helpmenucommandsspawnerempty);
  894.         i.setItem(25, helpmenucommandsspawnerempty);
  895.         i.setItem(26, helpmenucommandsspawnerempty);
  896.  
  897.         player.openInventory(i);
  898.         // Commands 5 - help menu
  899.     }
  900.  
  901.     public void newInventory9(Player player) {
  902.  
  903.         Inventory i = plugin.getServer().createInventory(null, 36,
  904.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Server Rules");
  905.  
  906.         ItemStack helpmenurulesserver1 = new ItemStack(Material.PAPER, 1);
  907.         ItemMeta helpmenurulesserver1Meta = helpmenurulesserver1.getItemMeta();
  908.         helpmenurulesserver1Meta.setDisplayName(
  909.                 ChatColor.WHITE + "[1]" + ChatColor.DARK_PURPLE + " Don't ask for 'OP' or free donor / staff ranks");
  910.         ArrayList<String> helpmenurulesserverlore1 = new ArrayList<String>();
  911.         helpmenurulesserverlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  912.         helpmenurulesserverlore1.add(ChatColor.WHITE + "Please do not ask for donor / staff ranks or OP");
  913.         helpmenurulesserverlore1.add(ChatColor.WHITE + "as this will most likely result in a punishment.");
  914.         helpmenurulesserverlore1.add(ChatColor.WHITE + "If you persist in asking for ranks then you will");
  915.         helpmenurulesserverlore1.add(ChatColor.WHITE + "be banned from this server.");
  916.         helpmenurulesserverlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  917.         helpmenurulesserver1Meta.setLore(helpmenurulesserverlore1);
  918.         helpmenurulesserver1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  919.         helpmenurulesserver1.setItemMeta(helpmenurulesserver1Meta);
  920.  
  921.         ItemStack helpmenurulesserver2 = new ItemStack(Material.PAPER, 1);
  922.         ItemMeta helpmenurulesserver2Meta = helpmenurulesserver2.getItemMeta();
  923.         helpmenurulesserver2Meta.setDisplayName(
  924.                 ChatColor.WHITE + "[2]" + ChatColor.DARK_PURPLE + " Do not attempt to ban / mute evade");
  925.         ArrayList<String> helpmenurulesserverlore2 = new ArrayList<String>();
  926.         helpmenurulesserverlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  927.         helpmenurulesserverlore2.add(ChatColor.WHITE + "You were banned / muted for a reason so if");
  928.         helpmenurulesserverlore2.add(ChatColor.WHITE + "you attempt to evade these punishments you");
  929.         helpmenurulesserverlore2.add(ChatColor.WHITE + "will get the alternate account permanently muted");
  930.         helpmenurulesserverlore2.add(ChatColor.WHITE + "or banned. Repeatedly doing this will result in an");
  931.         helpmenurulesserverlore2.add(ChatColor.WHITE + "IP ban.");
  932.         helpmenurulesserverlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  933.         helpmenurulesserver2Meta.setLore(helpmenurulesserverlore2);
  934.         helpmenurulesserver2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  935.         helpmenurulesserver2.setItemMeta(helpmenurulesserver2Meta);
  936.  
  937.         ItemStack helpmenurulesserver3 = new ItemStack(Material.PAPER, 1);
  938.         ItemMeta helpmenurulesserver3Meta = helpmenurulesserver3.getItemMeta();
  939.         helpmenurulesserver3Meta.setDisplayName(
  940.                 ChatColor.WHITE + "[3]" + ChatColor.DARK_PURPLE + " Don't hack or use unauthorised mods");
  941.         ArrayList<String> helpmenurulesserverlore3 = new ArrayList<String>();
  942.         helpmenurulesserverlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  943.         helpmenurulesserverlore3.add(ChatColor.WHITE + "Using a hacked client or unauthorised mod will");
  944.         helpmenurulesserverlore3.add(ChatColor.WHITE + "result in a ban without warning. A list of allowed");
  945.         helpmenurulesserverlore3.add(ChatColor.WHITE + "mods can be found on the website.");
  946.         helpmenurulesserverlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  947.         helpmenurulesserver3Meta.setLore(helpmenurulesserverlore3);
  948.         helpmenurulesserver3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  949.         helpmenurulesserver3.setItemMeta(helpmenurulesserver3Meta);
  950.  
  951.         ItemStack helpmenurulesserver4 = new ItemStack(Material.PAPER, 1);
  952.         ItemMeta helpmenurulesserver4Meta = helpmenurulesserver4.getItemMeta();
  953.         helpmenurulesserver4Meta
  954.                 .setDisplayName(ChatColor.WHITE + "[4]" + ChatColor.DARK_PURPLE + " Don't spam in chat");
  955.         ArrayList<String> helpmenurulesserverlore4 = new ArrayList<String>();
  956.         helpmenurulesserverlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  957.         helpmenurulesserverlore4.add(ChatColor.WHITE + "Don't spam in chat as this becomes annoying");
  958.         helpmenurulesserverlore4.add(ChatColor.WHITE + "and will irritate players on the server. If you");
  959.         helpmenurulesserverlore4.add(ChatColor.WHITE + "manage to spam in chat then you will be punished.");
  960.         helpmenurulesserverlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  961.         helpmenurulesserver4Meta.setLore(helpmenurulesserverlore4);
  962.         helpmenurulesserver4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  963.         helpmenurulesserver4.setItemMeta(helpmenurulesserver4Meta);
  964.  
  965.         ItemStack helpmenurulesserver5 = new ItemStack(Material.PAPER, 1);
  966.         ItemMeta helpmenurulesserver5Meta = helpmenurulesserver5.getItemMeta();
  967.         helpmenurulesserver5Meta.setDisplayName(
  968.                 ChatColor.WHITE + "[5]" + ChatColor.DARK_PURPLE + " Don't exploit server bugs or gitches");
  969.         ArrayList<String> helpmenurulesserverlore5 = new ArrayList<String>();
  970.         helpmenurulesserverlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  971.         helpmenurulesserverlore5.add(ChatColor.WHITE + "The staff team understands that there will be");
  972.         helpmenurulesserverlore5.add(ChatColor.WHITE + "bugs and exploits but please don't exploit them");
  973.         helpmenurulesserverlore5.add(ChatColor.WHITE + "however tempting it may be. Please report these");
  974.         helpmenurulesserverlore5.add(ChatColor.WHITE + "exploits and bugs to the staff team so they can");
  975.         helpmenurulesserverlore5.add(ChatColor.WHITE + "be dealt with.");
  976.         helpmenurulesserverlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  977.         helpmenurulesserver5Meta.setLore(helpmenurulesserverlore5);
  978.         helpmenurulesserver5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  979.         helpmenurulesserver5.setItemMeta(helpmenurulesserver5Meta);
  980.  
  981.         ItemStack helpmenurulesserver6 = new ItemStack(Material.PAPER, 1);
  982.         ItemMeta helpmenurulesserver6Meta = helpmenurulesserver6.getItemMeta();
  983.         helpmenurulesserver6Meta.setDisplayName(ChatColor.WHITE + "[6]" + ChatColor.DARK_PURPLE + " Don't island farm");
  984.         ArrayList<String> helpmenurulesserverlore6 = new ArrayList<String>();
  985.         helpmenurulesserverlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  986.         helpmenurulesserverlore6.add(ChatColor.WHITE + "Don't island farm as this will provide an unfair");
  987.         helpmenurulesserverlore6.add(ChatColor.WHITE + "advantage to the player doing the farming.");
  988.         helpmenurulesserverlore6.add(ChatColor.WHITE + "Island farming is the act of restarting an island");
  989.         helpmenurulesserverlore6.add(ChatColor.WHITE + "multiple times to gain resources from the island.");
  990.         helpmenurulesserverlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  991.         helpmenurulesserver6Meta.setLore(helpmenurulesserverlore6);
  992.         helpmenurulesserver6Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  993.         helpmenurulesserver6.setItemMeta(helpmenurulesserver6Meta);
  994.  
  995.         ItemStack helpmenurulesserver7 = new ItemStack(Material.PAPER, 1);
  996.         ItemMeta helpmenurulesserver7Meta = helpmenurulesserver7.getItemMeta();
  997.         helpmenurulesserver7Meta.setDisplayName(
  998.                 ChatColor.WHITE + "[7]" + ChatColor.DARK_PURPLE + " Don't issue threats towards other players");
  999.         ArrayList<String> helpmenurulesserverlore7 = new ArrayList<String>();
  1000.         helpmenurulesserverlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1001.         helpmenurulesserverlore7.add(ChatColor.WHITE + "Don't threaten other players such as Doxing or");
  1002.         helpmenurulesserverlore7.add(ChatColor.WHITE + "Ddosing. These acts will result in a mute being");
  1003.         helpmenurulesserverlore7.add(ChatColor.WHITE + "issued depending on the severity of the threat or");
  1004.         helpmenurulesserverlore7.add(ChatColor.WHITE + "the action. The act of Ddosing is illegal in most");
  1005.         helpmenurulesserverlore7.add(ChatColor.WHITE + "if not all countries currently.");
  1006.         helpmenurulesserverlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1007.         helpmenurulesserver7Meta.setLore(helpmenurulesserverlore7);
  1008.         helpmenurulesserver7Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1009.         helpmenurulesserver7.setItemMeta(helpmenurulesserver7Meta);
  1010.  
  1011.         ItemStack helpmenurulesserver8 = new ItemStack(Material.PAPER, 1);
  1012.         ItemMeta helpmenurulesserver8Meta = helpmenurulesserver8.getItemMeta();
  1013.         helpmenurulesserver8Meta
  1014.                 .setDisplayName(ChatColor.WHITE + "[8]" + ChatColor.DARK_PURPLE + " Don't make offensive or explicit builds");
  1015.         ArrayList<String> helpmenurulesserverlore8 = new ArrayList<String>();
  1016.         helpmenurulesserverlore8.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1017.         helpmenurulesserverlore8.add(ChatColor.WHITE + "Making offensive or explicit builds may be fun");
  1018.         helpmenurulesserverlore8.add(ChatColor.WHITE + "but are punishable by a kick for a first offence");
  1019.         helpmenurulesserverlore8.add(ChatColor.WHITE + "and then a ban for the next offence as the");
  1020.         helpmenurulesserverlore8.add(ChatColor.WHITE + "server needs to be child friendly.");
  1021.         helpmenurulesserverlore8.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1022.         helpmenurulesserver8Meta.setLore(helpmenurulesserverlore8);
  1023.         helpmenurulesserver8Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1024.         helpmenurulesserver8.setItemMeta(helpmenurulesserver8Meta);
  1025.  
  1026.         ItemStack helpmenurulesserver9 = new ItemStack(Material.PAPER, 1);
  1027.         ItemMeta helpmenurulesserver9Meta = helpmenurulesserver9.getItemMeta();
  1028.         helpmenurulesserver9Meta
  1029.                 .setDisplayName(ChatColor.WHITE + "[9]" + ChatColor.DARK_PURPLE + " AFK machines are not allowed");
  1030.         ArrayList<String> helpmenurulesserverlore9 = new ArrayList<String>();
  1031.         helpmenurulesserverlore9.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1032.         helpmenurulesserverlore9.add(ChatColor.WHITE + "AFK pools and machines are not allowed due to");
  1033.         helpmenurulesserverlore9.add(ChatColor.WHITE + "them giving an unfair advantage and rendering");
  1034.         helpmenurulesserverlore9.add(ChatColor.WHITE + "chunks on the server that do not need to be rendered");
  1035.         helpmenurulesserverlore9.add(ChatColor.WHITE + "if the player is AFKing. This causes unnecassary");
  1036.         helpmenurulesserverlore9.add(ChatColor.WHITE + "lag for other players.");
  1037.         helpmenurulesserverlore9.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1038.         helpmenurulesserver9Meta.setLore(helpmenurulesserverlore9);
  1039.         helpmenurulesserver9Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1040.         helpmenurulesserver9.setItemMeta(helpmenurulesserver9Meta);
  1041.  
  1042.         ItemStack helpmenurulesserver10 = new ItemStack(Material.PAPER, 1);
  1043.         ItemMeta helpmenurulesserver10Meta = helpmenurulesserver10.getItemMeta();
  1044.         helpmenurulesserver10Meta.setDisplayName(
  1045.                 ChatColor.WHITE + "[10]" + ChatColor.DARK_PURPLE + " Don't make redstone contraptions intended to cause lag");
  1046.         ArrayList<String> helpmenurulesserverlore10 = new ArrayList<String>();
  1047.         helpmenurulesserverlore10.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1048.         helpmenurulesserverlore10.add(ChatColor.WHITE + "These contraptions will likely result in the");
  1049.         helpmenurulesserverlore10.add(ChatColor.WHITE + "player who made it getting banned. Lagging the");
  1050.         helpmenurulesserverlore10.add(ChatColor.WHITE + "server intentionally makes it less enjoyable");
  1051.         helpmenurulesserverlore10.add(ChatColor.WHITE + "for others who want to play.");
  1052.         helpmenurulesserverlore10.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1053.         helpmenurulesserver10Meta.setLore(helpmenurulesserverlore10);
  1054.         helpmenurulesserver10Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1055.         helpmenurulesserver10.setItemMeta(helpmenurulesserver10Meta);
  1056.  
  1057.         ItemStack helpmenurulesserver11 = new ItemStack(Material.PAPER, 1);
  1058.         ItemMeta helpmenurulesserver11Meta = helpmenurulesserver11.getItemMeta();
  1059.         helpmenurulesserver11Meta
  1060.                 .setDisplayName(ChatColor.WHITE + "[11]" + ChatColor.DARK_PURPLE + " Donor abuse is not allowed");
  1061.         ArrayList<String> helpmenurulesserverlore11 = new ArrayList<String>();
  1062.         helpmenurulesserverlore11.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1063.         helpmenurulesserverlore11.add(ChatColor.WHITE + "Donor abuse such as spawning animals for");
  1064.         helpmenurulesserverlore11.add(ChatColor.WHITE + "other players who do not have a rank or fixing");
  1065.         helpmenurulesserverlore11.add(ChatColor.WHITE + "their items. These perks are only available to");
  1066.         helpmenurulesserverlore11.add(ChatColor.WHITE + "those who bought the rank or perk.");
  1067.         helpmenurulesserverlore11.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1068.         helpmenurulesserver11Meta.setLore(helpmenurulesserverlore11);
  1069.         helpmenurulesserver11Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1070.         helpmenurulesserver11.setItemMeta(helpmenurulesserver11Meta);
  1071.  
  1072.         ItemStack helpmenurulesserver12 = new ItemStack(Material.PAPER, 1);
  1073.         ItemMeta helpmenurulesserver12Meta = helpmenurulesserver12.getItemMeta();
  1074.         helpmenurulesserver12Meta
  1075.                 .setDisplayName(ChatColor.WHITE + "[12]" + ChatColor.DARK_PURPLE + " Don't discriminate or be racist");
  1076.         ArrayList<String> helpmenurulesserverlore12 = new ArrayList<String>();
  1077.         helpmenurulesserverlore12.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1078.         helpmenurulesserverlore12.add(ChatColor.WHITE + "Discrimination, racism and hate speech of any kind");
  1079.         helpmenurulesserverlore12.add(ChatColor.WHITE + "is not tolerated and will be punished accordingly.");
  1080.         helpmenurulesserverlore12.add(ChatColor.WHITE + "The server needs to be kept child friendly which");
  1081.         helpmenurulesserverlore12.add(ChatColor.WHITE + "means that this kind of behaviour needs to be");
  1082.         helpmenurulesserverlore12.add(ChatColor.WHITE + "stopped.");
  1083.         helpmenurulesserverlore12.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1084.         helpmenurulesserver12Meta.setLore(helpmenurulesserverlore12);
  1085.         helpmenurulesserver12Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1086.         helpmenurulesserver12.setItemMeta(helpmenurulesserver12Meta);
  1087.  
  1088.         ItemStack helpmenurulesserver13 = new ItemStack(Material.PAPER, 1);
  1089.         ItemMeta helpmenurulesserver13Meta = helpmenurulesserver13.getItemMeta();
  1090.         helpmenurulesserver13Meta
  1091.                 .setDisplayName(ChatColor.WHITE + "[13]" + ChatColor.DARK_PURPLE + " Don't impersonate staff members");
  1092.         ArrayList<String> helpmenurulesserverlore13 = new ArrayList<String>();
  1093.         helpmenurulesserverlore13.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1094.         helpmenurulesserverlore13.add(ChatColor.WHITE + "Impersonating staff members is not allowed");
  1095.         helpmenurulesserverlore13.add(ChatColor.WHITE + "which includes nicknames, saying you are an alt");
  1096.         helpmenurulesserverlore13.add(ChatColor.WHITE + "of a staff member and any other impersonation");
  1097.         helpmenurulesserverlore13.add(ChatColor.WHITE + "method.");
  1098.         helpmenurulesserverlore13.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1099.         helpmenurulesserver13Meta.setLore(helpmenurulesserverlore13);
  1100.         helpmenurulesserver13Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1101.         helpmenurulesserver13.setItemMeta(helpmenurulesserver13Meta);
  1102.  
  1103.         ItemStack helpmenurulesserver14 = new ItemStack(Material.PAPER, 1);
  1104.         ItemMeta helpmenurulesserver14Meta = helpmenurulesserver14.getItemMeta();
  1105.         helpmenurulesserver14Meta.setDisplayName(
  1106.                 ChatColor.WHITE + "[14]" + ChatColor.DARK_PURPLE + " A full list of rules can be found on our website");
  1107.         ArrayList<String> helpmenurulesserverlore14 = new ArrayList<String>();
  1108.         helpmenurulesserverlore14.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1109.         helpmenurulesserverlore14.add(ChatColor.WHITE + "[Insert Website Address Here]");
  1110.         helpmenurulesserverlore14.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1111.         helpmenurulesserver14Meta.setLore(helpmenurulesserverlore14);
  1112.         helpmenurulesserver14Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1113.         helpmenurulesserver14.setItemMeta(helpmenurulesserver14Meta);
  1114.  
  1115.         ItemStack helpmenurulesserverback = new ItemStack(Material.NETHER_STAR, 1);
  1116.         ItemMeta helpmenurulesserverbackMeta = helpmenurulesserverback.getItemMeta();
  1117.         helpmenurulesserverbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  1118.         helpmenurulesserverbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1119.         helpmenurulesserverback.setItemMeta(helpmenurulesserverbackMeta);
  1120.  
  1121.         ItemStack helpmenurulesserverempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  1122.         ItemMeta helpmenurulesserveremptyMeta = helpmenurulesserverempty.getItemMeta();
  1123.         helpmenurulesserveremptyMeta.setDisplayName(ChatColor.BLACK + ".");
  1124.         helpmenurulesserveremptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1125.         helpmenurulesserverempty.setItemMeta(helpmenurulesserveremptyMeta);
  1126.  
  1127.         i.setItem(0, helpmenurulesserverempty);
  1128.         i.setItem(1, helpmenurulesserverempty);
  1129.         i.setItem(2, helpmenurulesserverempty);
  1130.         i.setItem(3, helpmenurulesserverempty);
  1131.         i.setItem(4, helpmenurulesserverempty);
  1132.         i.setItem(5, helpmenurulesserverempty);
  1133.         i.setItem(6, helpmenurulesserverempty);
  1134.         i.setItem(7, helpmenurulesserverempty);
  1135.         i.setItem(8, helpmenurulesserverempty);
  1136.         i.setItem(9, helpmenurulesserverempty);
  1137.         i.setItem(10, helpmenurulesserver1);
  1138.         i.setItem(11, helpmenurulesserver2);
  1139.         i.setItem(12, helpmenurulesserver3);
  1140.         i.setItem(13, helpmenurulesserver4);
  1141.         i.setItem(14, helpmenurulesserver5);
  1142.         i.setItem(15, helpmenurulesserver6);
  1143.         i.setItem(16, helpmenurulesserver7);
  1144.         i.setItem(17, helpmenurulesserverempty);
  1145.         i.setItem(18, helpmenurulesserverempty);
  1146.         i.setItem(19, helpmenurulesserver8);
  1147.         i.setItem(20, helpmenurulesserver9);
  1148.         i.setItem(21, helpmenurulesserver10);
  1149.         i.setItem(22, helpmenurulesserver11);
  1150.         i.setItem(23, helpmenurulesserver12);
  1151.         i.setItem(24, helpmenurulesserver13);
  1152.         i.setItem(25, helpmenurulesserver14);
  1153.         i.setItem(26, helpmenurulesserverempty);
  1154.         i.setItem(27, helpmenurulesserverback);
  1155.         i.setItem(28, helpmenurulesserverempty);
  1156.         i.setItem(29, helpmenurulesserverempty);
  1157.         i.setItem(30, helpmenurulesserverempty);
  1158.         i.setItem(31, helpmenurulesserverempty);
  1159.         i.setItem(32, helpmenurulesserverempty);
  1160.         i.setItem(33, helpmenurulesserverempty);
  1161.         i.setItem(34, helpmenurulesserverempty);
  1162.         i.setItem(35, helpmenurulesserverempty);
  1163.  
  1164.         player.openInventory(i);
  1165.         // Rules 1 - help menu
  1166.     }
  1167.  
  1168.     public void newInventory10(Player player) {
  1169.  
  1170.         Inventory i = plugin.getServer().createInventory(null, 36,
  1171.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Other Platform Rules");
  1172.  
  1173.         ItemStack helpmenurulesother1 = new ItemStack(Material.PAPER, 1);
  1174.         ItemMeta helpmenurulesother1Meta = helpmenurulesother1.getItemMeta();
  1175.         helpmenurulesother1Meta
  1176.                 .setDisplayName(ChatColor.WHITE + "[1]" + ChatColor.DARK_PURPLE + " Respecting Community Members");
  1177.         ArrayList<String> helpmenurulesotherlore1 = new ArrayList<String>();
  1178.         helpmenurulesotherlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1179.         helpmenurulesotherlore1.add(ChatColor.WHITE + "Please remain respectful when speaking in our");
  1180.         helpmenurulesotherlore1.add(ChatColor.WHITE + "community chats such as on Discord and the");
  1181.         helpmenurulesotherlore1.add(ChatColor.WHITE + "server. We would like to keep this community");
  1182.         helpmenurulesotherlore1.add(ChatColor.WHITE + "free of inappropriate behaviour and disrespect");
  1183.         helpmenurulesotherlore1.add(ChatColor.WHITE + "but we do understand that this is not always");
  1184.         helpmenurulesotherlore1.add(ChatColor.WHITE + "possible. Please be aware of how you are treating");
  1185.         helpmenurulesotherlore1.add(ChatColor.WHITE + "others and make sure to keep inappropriate");
  1186.         helpmenurulesotherlore1.add(ChatColor.WHITE + "language to a minimum. A large proportion of our");
  1187.         helpmenurulesotherlore1.add(ChatColor.WHITE + "community are young children or adults and the ");
  1188.         helpmenurulesotherlore1.add(ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " staff team want to make sure that our");
  1189.         helpmenurulesotherlore1.add(ChatColor.WHITE + "services stay professional. Discrimination,");
  1190.         helpmenurulesotherlore1.add(ChatColor.WHITE + "harassment and toxicity will not be tolerated and");
  1191.         helpmenurulesotherlore1.add(ChatColor.WHITE + "depending on the severity, the user could be");
  1192.         helpmenurulesotherlore1.add(ChatColor.WHITE + "verbally warned or permanently removed from");
  1193.         helpmenurulesotherlore1.add(ChatColor.WHITE + "our community.");
  1194.         helpmenurulesotherlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1195.         helpmenurulesother1Meta.setLore(helpmenurulesotherlore1);
  1196.         helpmenurulesother1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1197.         helpmenurulesother1.setItemMeta(helpmenurulesother1Meta);
  1198.  
  1199.         ItemStack helpmenurulesother2 = new ItemStack(Material.PAPER, 1);
  1200.         ItemMeta helpmenurulesother2Meta = helpmenurulesother2.getItemMeta();
  1201.         helpmenurulesother2Meta.setDisplayName(ChatColor.WHITE + "[2]" + ChatColor.DARK_PURPLE + " Account Security");
  1202.         ArrayList<String> helpmenurulesotherlore2 = new ArrayList<String>();
  1203.         helpmenurulesotherlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1204.         helpmenurulesotherlore2.add(ChatColor.WHITE + "Make sure that you have full control over");
  1205.         helpmenurulesotherlore2.add(ChatColor.WHITE + "your account. You will be held accountable");
  1206.         helpmenurulesotherlore2.add(ChatColor.WHITE + "for any inappropriate action that any other");
  1207.         helpmenurulesotherlore2.add(ChatColor.WHITE + "user does while using your account. If you hold");
  1208.         helpmenurulesotherlore2.add(ChatColor.WHITE + "an " + ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " official staff rank then you are");
  1209.         helpmenurulesotherlore2.add(ChatColor.WHITE + "required to use two factor authentication");
  1210.         helpmenurulesotherlore2.add(ChatColor.WHITE + "which must be enabled at all times.");
  1211.         helpmenurulesotherlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1212.         helpmenurulesother2Meta.setLore(helpmenurulesotherlore2);
  1213.         helpmenurulesother2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1214.         helpmenurulesother2.setItemMeta(helpmenurulesother2Meta);
  1215.  
  1216.         ItemStack helpmenurulesother3 = new ItemStack(Material.PAPER, 1);
  1217.         ItemMeta helpmenurulesother3Meta = helpmenurulesother3.getItemMeta();
  1218.         helpmenurulesother3Meta.setDisplayName(ChatColor.WHITE + "[3]" + ChatColor.DARK_PURPLE + " File sharing (Direct uploads)");
  1219.         ArrayList<String> helpmenurulesotherlore3 = new ArrayList<String>();
  1220.         helpmenurulesotherlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1221.         helpmenurulesotherlore3.add(ChatColor.WHITE + "Only images or gifs should be shared in the");
  1222.         helpmenurulesotherlore3.add(ChatColor.WHITE + "discord. Any other type of file will be treated");
  1223.         helpmenurulesotherlore3.add(ChatColor.WHITE + "as malicious. Any files that members want to");
  1224.         helpmenurulesotherlore3.add(ChatColor.WHITE + "upload can be reviewed by a moderator. Any");
  1225.         helpmenurulesotherlore3.add(ChatColor.WHITE + "malicious or inappropriate images or files will");
  1226.         helpmenurulesotherlore3.add(ChatColor.WHITE + "result in the user getting banned.");
  1227.         helpmenurulesotherlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1228.         helpmenurulesother3Meta.setLore(helpmenurulesotherlore3);
  1229.         helpmenurulesother3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1230.         helpmenurulesother3.setItemMeta(helpmenurulesother3Meta);
  1231.  
  1232.         ItemStack helpmenurulesother4 = new ItemStack(Material.PAPER, 1);
  1233.         ItemMeta helpmenurulesother4Meta = helpmenurulesother4.getItemMeta();
  1234.         helpmenurulesother4Meta.setDisplayName(ChatColor.WHITE + "[4]" + ChatColor.DARK_PURPLE + " Giveaways");
  1235.         ArrayList<String> helpmenurulesotherlore4 = new ArrayList<String>();
  1236.         helpmenurulesotherlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1237.         helpmenurulesotherlore4.add(ChatColor.WHITE + "No giveaways are to be done via the discord");
  1238.         helpmenurulesotherlore4.add(ChatColor.WHITE + "besides official " + ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " giveaways. These are");
  1239.         helpmenurulesotherlore4.add(ChatColor.WHITE + "not guarenteed to be held but could happen.");
  1240.         helpmenurulesotherlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1241.         helpmenurulesother4Meta.setLore(helpmenurulesotherlore4);
  1242.         helpmenurulesother4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1243.         helpmenurulesother4.setItemMeta(helpmenurulesother4Meta);
  1244.  
  1245.         ItemStack helpmenurulesother5 = new ItemStack(Material.PAPER, 1);
  1246.         ItemMeta helpmenurulesother5Meta = helpmenurulesother5.getItemMeta();
  1247.         helpmenurulesother5Meta.setDisplayName(ChatColor.WHITE + "[5]" + ChatColor.DARK_PURPLE + " Help / Support Channels");
  1248.         ArrayList<String> helpmenurulesotherlore5 = new ArrayList<String>();
  1249.         helpmenurulesotherlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1250.         helpmenurulesotherlore5.add(ChatColor.WHITE + "Please do not spam help and support channels.");
  1251.         helpmenurulesotherlore5.add(ChatColor.WHITE + "These channels are to be used for concerns");
  1252.         helpmenurulesotherlore5.add(ChatColor.WHITE + "and questions only about our platforms.");
  1253.         helpmenurulesotherlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1254.         helpmenurulesother5Meta.setLore(helpmenurulesotherlore5);
  1255.         helpmenurulesother5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1256.         helpmenurulesother5.setItemMeta(helpmenurulesother5Meta);
  1257.  
  1258.         ItemStack helpmenurulesother6 = new ItemStack(Material.PAPER, 1);
  1259.         ItemMeta helpmenurulesother6Meta = helpmenurulesother6.getItemMeta();
  1260.         helpmenurulesother6Meta.setDisplayName(ChatColor.WHITE + "[6]" + ChatColor.DARK_PURPLE + " Link / URL Sharing");
  1261.         ArrayList<String> helpmenurulesotherlore6 = new ArrayList<String>();
  1262.         helpmenurulesotherlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1263.         helpmenurulesotherlore6.add(ChatColor.WHITE + "We ask that you keep any and all links shared");
  1264.         helpmenurulesotherlore6.add(ChatColor.WHITE + "free from inappropriate and harmful content");
  1265.         helpmenurulesotherlore6.add(ChatColor.WHITE + "that we do not deem PG. Any members sharing");
  1266.         helpmenurulesotherlore6.add(ChatColor.WHITE + "inappropriate or harmful URLs will be removed");
  1267.         helpmenurulesotherlore6.add(ChatColor.WHITE + "from the discord without question. Depending");
  1268.         helpmenurulesotherlore6.add(ChatColor.WHITE + "on the severity we will also further revoke");
  1269.         helpmenurulesotherlore6.add(ChatColor.WHITE + "access to either or both the server and forums.");
  1270.         helpmenurulesotherlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1271.         helpmenurulesother6Meta.setLore(helpmenurulesotherlore6);
  1272.         helpmenurulesother6Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1273.         helpmenurulesother6.setItemMeta(helpmenurulesother6Meta);
  1274.  
  1275.         ItemStack helpmenurulesother7 = new ItemStack(Material.PAPER, 1);
  1276.         ItemMeta helpmenurulesother7Meta = helpmenurulesother7.getItemMeta();
  1277.         helpmenurulesother7Meta.setDisplayName(ChatColor.WHITE + "[7]" + ChatColor.DARK_PURPLE + " Punishment Related Concerns");
  1278.         ArrayList<String> helpmenurulesotherlore7 = new ArrayList<String>();
  1279.         helpmenurulesotherlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1280.         helpmenurulesotherlore7.add(ChatColor.WHITE + "The " + ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " staff team do not discuss");
  1281.         helpmenurulesotherlore7.add(ChatColor.WHITE + "punishments on the discord and will not engage");
  1282.         helpmenurulesotherlore7.add(ChatColor.WHITE + "in any discussions about 'wrongful' punishments.");
  1283.         helpmenurulesotherlore7.add(ChatColor.WHITE + "These matters are to be handled only on");
  1284.         helpmenurulesotherlore7.add(ChatColor.WHITE + "the " + ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " official forums. Any user found");
  1285.         helpmenurulesotherlore7.add(ChatColor.WHITE + "spamming, tagging or causing issues regarding");
  1286.         helpmenurulesotherlore7.add(ChatColor.WHITE + "their punishment may be punished further and");
  1287.         helpmenurulesotherlore7.add(ChatColor.WHITE + "have their appeal overlooked.");
  1288.         helpmenurulesotherlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1289.         helpmenurulesother7Meta.setLore(helpmenurulesotherlore7);
  1290.         helpmenurulesother7Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1291.         helpmenurulesother7.setItemMeta(helpmenurulesother7Meta);
  1292.  
  1293.         ItemStack helpmenurulesother8 = new ItemStack(Material.PAPER, 1);
  1294.         ItemMeta helpmenurulesother8Meta = helpmenurulesother8.getItemMeta();
  1295.         helpmenurulesother8Meta.setDisplayName(ChatColor.WHITE + "[8]" + ChatColor.DARK_PURPLE + " Respecting Community Members");
  1296.         ArrayList<String> helpmenurulesotherlore8 = new ArrayList<String>();
  1297.         helpmenurulesotherlore8.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1298.         helpmenurulesotherlore8.add(ChatColor.WHITE + "");
  1299.         helpmenurulesotherlore8.add(ChatColor.WHITE + "");
  1300.         helpmenurulesotherlore8.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1301.         helpmenurulesother8Meta.setLore(helpmenurulesotherlore8);
  1302.         helpmenurulesother8Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1303.         helpmenurulesother8.setItemMeta(helpmenurulesother8Meta);
  1304.  
  1305.         ItemStack helpmenurulesother9 = new ItemStack(Material.PAPER, 1);
  1306.         ItemMeta helpmenurulesother9Meta = helpmenurulesother9.getItemMeta();
  1307.         helpmenurulesother9Meta.setDisplayName(ChatColor.WHITE + "[8]" + ChatColor.DARK_PURPLE + " Staff Impersonations");
  1308.         ArrayList<String> helpmenurulesotherlore9 = new ArrayList<String>();
  1309.         helpmenurulesotherlore9.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1310.         helpmenurulesotherlore9.add(ChatColor.WHITE + "Please do not impersonate or pretend to be a");
  1311.         helpmenurulesotherlore9.add(ChatColor.WHITE + "staff member under any circumstance. If you");
  1312.         helpmenurulesotherlore9.add(ChatColor.WHITE + "cannot deal with an issue you are having or");
  1313.         helpmenurulesotherlore9.add(ChatColor.WHITE + "another user is having then you can contact");
  1314.         helpmenurulesotherlore9.add(ChatColor.WHITE + "a helper, moderator or admin. If the issue");
  1315.         helpmenurulesotherlore9.add(ChatColor.WHITE + "still cannot be solved then another member of");
  1316.         helpmenurulesotherlore9.add(ChatColor.WHITE + "staff will be contacted.");
  1317.         helpmenurulesotherlore9.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1318.         helpmenurulesother9Meta.setLore(helpmenurulesotherlore9);
  1319.         helpmenurulesother9Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1320.         helpmenurulesother9.setItemMeta(helpmenurulesother9Meta);
  1321.  
  1322.         ItemStack helpmenurulesother10 = new ItemStack(Material.PAPER, 1);
  1323.         ItemMeta helpmenurulesother10Meta = helpmenurulesother10.getItemMeta();
  1324.         helpmenurulesother10Meta.setDisplayName(ChatColor.WHITE + "[9]" + ChatColor.DARK_PURPLE + " Tagging Staff");
  1325.         ArrayList<String> helpmenurulesotherlore10 = new ArrayList<String>();
  1326.         helpmenurulesotherlore10.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1327.         helpmenurulesotherlore10.add(ChatColor.WHITE + "Please do not harass staff members for any reason");
  1328.         helpmenurulesotherlore10.add(ChatColor.WHITE + "what so ever. We are here to help and have");
  1329.         helpmenurulesotherlore10.add(ChatColor.WHITE + "provided methods of which you can contact us");
  1330.         helpmenurulesotherlore10.add(ChatColor.WHITE + "with but tagging staff unnecessarily does not");
  1331.         helpmenurulesotherlore10.add(ChatColor.WHITE + "help anyone. Please keep it to a minimum.");
  1332.         helpmenurulesotherlore10.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1333.         helpmenurulesother10Meta.setLore(helpmenurulesotherlore10);
  1334.         helpmenurulesother10Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1335.         helpmenurulesother10.setItemMeta(helpmenurulesother10Meta);
  1336.  
  1337.         ItemStack helpmenurulesother11 = new ItemStack(Material.PAPER, 1);
  1338.         ItemMeta helpmenurulesother11Meta = helpmenurulesother11.getItemMeta();
  1339.         helpmenurulesother11Meta.setDisplayName(ChatColor.WHITE + "[10]" + ChatColor.DARK_PURPLE + " Voice Channels");
  1340.         ArrayList<String> helpmenurulesotherlore11 = new ArrayList<String>();
  1341.         helpmenurulesotherlore11.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1342.         helpmenurulesotherlore11.add(ChatColor.WHITE + "Those participating in voice chats and found to");
  1343.         helpmenurulesotherlore11.add(ChatColor.WHITE + "be disruptive or disrespectful will have this");
  1344.         helpmenurulesotherlore11.add(ChatColor.WHITE + "priviledge revoked. Depending on the severity");
  1345.         helpmenurulesotherlore11.add(ChatColor.WHITE + "other priviledges will be revoked as well.");
  1346.         helpmenurulesotherlore11.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1347.         helpmenurulesother11Meta.setLore(helpmenurulesotherlore11);
  1348.         helpmenurulesother11Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1349.         helpmenurulesother11.setItemMeta(helpmenurulesother11Meta);
  1350.  
  1351.         ItemStack helpmenurulesother12 = new ItemStack(Material.PAPER, 1);
  1352.         ItemMeta helpmenurulesother12Meta = helpmenurulesother12.getItemMeta();
  1353.         helpmenurulesother12Meta.setDisplayName(ChatColor.WHITE + "[11]" + ChatColor.DARK_PURPLE + " [TBD]");
  1354.         ArrayList<String> helpmenurulesotherlore12 = new ArrayList<String>();
  1355.         helpmenurulesotherlore12.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1356.         helpmenurulesotherlore12.add(ChatColor.WHITE + "");
  1357.         helpmenurulesotherlore12.add(ChatColor.WHITE + "");
  1358.         helpmenurulesotherlore12.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1359.         helpmenurulesother12Meta.setLore(helpmenurulesotherlore12);
  1360.         helpmenurulesother12Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1361.         helpmenurulesother12.setItemMeta(helpmenurulesother12Meta);
  1362.  
  1363.         ItemStack helpmenurulesother13 = new ItemStack(Material.PAPER, 1);
  1364.         ItemMeta helpmenurulesother13Meta = helpmenurulesother13.getItemMeta();
  1365.         helpmenurulesother13Meta.setDisplayName(ChatColor.WHITE + "[13]" + ChatColor.DARK_PURPLE + " [TBD]");
  1366.         ArrayList<String> helpmenurulesotherlore13 = new ArrayList<String>();
  1367.         helpmenurulesotherlore13.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1368.         helpmenurulesotherlore13.add(ChatColor.WHITE + "");
  1369.         helpmenurulesotherlore13.add(ChatColor.WHITE + "");
  1370.         helpmenurulesotherlore13.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1371.         helpmenurulesother13Meta.setLore(helpmenurulesotherlore13);
  1372.         helpmenurulesother13Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1373.         helpmenurulesother13.setItemMeta(helpmenurulesother13Meta);
  1374.  
  1375.         ItemStack helpmenurulesother14 = new ItemStack(Material.PAPER, 1);
  1376.         ItemMeta helpmenurulesother14Meta = helpmenurulesother14.getItemMeta();
  1377.         helpmenurulesother14Meta.setDisplayName(
  1378.                 ChatColor.WHITE + "[11]" + ChatColor.DARK_PURPLE + " A full list of rules can be found on our website");
  1379.         ArrayList<String> helpmenurulesotherlore14 = new ArrayList<String>();
  1380.         helpmenurulesotherlore14.add(ChatColor.WHITE + "[Insert Website Address Here]");
  1381.         helpmenurulesother14Meta.setLore(helpmenurulesotherlore14);
  1382.         helpmenurulesother14Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1383.         helpmenurulesother14.setItemMeta(helpmenurulesother14Meta);
  1384.  
  1385.         ItemStack helpmenurulesotherback = new ItemStack(Material.NETHER_STAR, 1);
  1386.         ItemMeta helpmenurulesotherbackMeta = helpmenurulesotherback.getItemMeta();
  1387.         helpmenurulesotherbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  1388.         helpmenurulesotherbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1389.         helpmenurulesotherback.setItemMeta(helpmenurulesotherbackMeta);
  1390.  
  1391.         ItemStack helpmenurulesotherempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  1392.         ItemMeta helpmenurulesotheremptyMeta = helpmenurulesotherempty.getItemMeta();
  1393.         helpmenurulesotheremptyMeta.setDisplayName(ChatColor.BLACK + ".");
  1394.         helpmenurulesotheremptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1395.         helpmenurulesotherempty.setItemMeta(helpmenurulesotheremptyMeta);
  1396.  
  1397.         i.setItem(0, helpmenurulesotherempty);
  1398.         i.setItem(1, helpmenurulesotherempty);
  1399.         i.setItem(2, helpmenurulesotherempty);
  1400.         i.setItem(3, helpmenurulesotherempty);
  1401.         i.setItem(4, helpmenurulesotherempty);
  1402.         i.setItem(5, helpmenurulesotherempty);
  1403.         i.setItem(6, helpmenurulesotherempty);
  1404.         i.setItem(7, helpmenurulesotherempty);
  1405.         i.setItem(8, helpmenurulesotherempty);
  1406.         i.setItem(9, helpmenurulesotherempty);
  1407.         i.setItem(10, helpmenurulesother1);
  1408.         i.setItem(11, helpmenurulesother2);
  1409.         i.setItem(12, helpmenurulesother3);
  1410.         i.setItem(13, helpmenurulesother4);
  1411.         i.setItem(14, helpmenurulesother5);
  1412.         i.setItem(15, helpmenurulesother6);
  1413.         i.setItem(16, helpmenurulesother7);
  1414.         i.setItem(17, helpmenurulesotherempty);
  1415.         i.setItem(18, helpmenurulesotherempty);
  1416.         i.setItem(19, helpmenurulesother9);
  1417.         i.setItem(20, helpmenurulesother10);
  1418.         i.setItem(21, helpmenurulesother11);
  1419.         i.setItem(22, helpmenurulesother14);
  1420.         i.setItem(23, helpmenurulesotherempty);
  1421.         i.setItem(24, helpmenurulesotherempty);
  1422.         i.setItem(25, helpmenurulesotherempty);
  1423.         i.setItem(26, helpmenurulesotherempty);
  1424.         i.setItem(27, helpmenurulesotherback);
  1425.         i.setItem(28, helpmenurulesotherempty);
  1426.         i.setItem(29, helpmenurulesotherempty);
  1427.         i.setItem(30, helpmenurulesotherempty);
  1428.         i.setItem(31, helpmenurulesotherempty);
  1429.         i.setItem(32, helpmenurulesotherempty);
  1430.         i.setItem(33, helpmenurulesotherempty);
  1431.         i.setItem(34, helpmenurulesotherempty);
  1432.         i.setItem(35, helpmenurulesotherempty);
  1433.  
  1434.         player.openInventory(i);
  1435.         // Rules 2 - help menu
  1436.     }
  1437.  
  1438.     public void newInventory11(Player player) {
  1439.  
  1440.         Inventory i = plugin.getServer().createInventory(null, 36,
  1441.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Website Rules");
  1442.  
  1443.         ItemStack helpmenurulesdiscord1 = new ItemStack(Material.PAPER, 1);
  1444.         ItemMeta helpmenurulesdiscord1Meta = helpmenurulesdiscord1.getItemMeta();
  1445.         helpmenurulesdiscord1Meta
  1446.                 .setDisplayName(ChatColor.WHITE + "[1]" + ChatColor.DARK_PURPLE + " Reporting Players");
  1447.         ArrayList<String> helpmenurulesdiscordlore1 = new ArrayList<String>();
  1448.         helpmenurulesdiscordlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1449.         helpmenurulesdiscordlore1.add(ChatColor.WHITE + "When reporting a player, please follow the");
  1450.         helpmenurulesdiscordlore1.add(ChatColor.WHITE + "correct format. This makes it easier for staff");
  1451.         helpmenurulesdiscordlore1.add(ChatColor.WHITE + "members to handle the report. Sufficient");
  1452.         helpmenurulesdiscordlore1.add(ChatColor.WHITE + "evidence needs to be uploaded when making a");
  1453.         helpmenurulesdiscordlore1.add(ChatColor.WHITE + "report otherwise nothing can be done about");
  1454.         helpmenurulesdiscordlore1.add(ChatColor.WHITE + "it. There are guieds on the forums on how");
  1455.         helpmenurulesdiscordlore1.add(ChatColor.WHITE + "to report players, the format and what");
  1456.         helpmenurulesdiscordlore1.add(ChatColor.WHITE + "evidence is sufficient for staff members to");
  1457.         helpmenurulesdiscordlore1.add(ChatColor.WHITE + "act upon.");
  1458.         helpmenurulesdiscordlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1459.         helpmenurulesdiscord1Meta.setLore(helpmenurulesdiscordlore1);
  1460.         helpmenurulesdiscord1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1461.         helpmenurulesdiscord1.setItemMeta(helpmenurulesdiscord1Meta);
  1462.  
  1463.         ItemStack helpmenurulesdiscord2 = new ItemStack(Material.PAPER, 1);
  1464.         ItemMeta helpmenurulesdiscord2Meta = helpmenurulesdiscord2.getItemMeta();
  1465.         helpmenurulesdiscord2Meta.setDisplayName(ChatColor.WHITE + "[2]" + ChatColor.DARK_PURPLE + " Shoutbox");
  1466.         ArrayList<String> helpmenurulesdiscordlore2 = new ArrayList<String>();
  1467.         helpmenurulesdiscordlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1468.         helpmenurulesdiscordlore2.add(ChatColor.WHITE + "Server chat rules apply here. Please be respectful");
  1469.         helpmenurulesdiscordlore2.add(ChatColor.WHITE + "and treat others how you would like to be");
  1470.         helpmenurulesdiscordlore2.add(ChatColor.WHITE + "treated. ");
  1471.         helpmenurulesdiscordlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1472.         helpmenurulesdiscord2Meta.setLore(helpmenurulesdiscordlore2);
  1473.         helpmenurulesdiscord2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1474.         helpmenurulesdiscord2.setItemMeta(helpmenurulesdiscord2Meta);
  1475.  
  1476.         ItemStack helpmenurulesdiscord3 = new ItemStack(Material.PAPER, 1);
  1477.         ItemMeta helpmenurulesdiscord3Meta = helpmenurulesdiscord3.getItemMeta();
  1478.         helpmenurulesdiscord3Meta.setDisplayName(ChatColor.WHITE + "[3]" + ChatColor.DARK_PURPLE + " Double+ Posting");
  1479.         ArrayList<String> helpmenurulesdiscordlore3 = new ArrayList<String>();
  1480.         helpmenurulesdiscordlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1481.         helpmenurulesdiscordlore3.add(ChatColor.WHITE + "Double posting is the act of posting two or more");
  1482.         helpmenurulesdiscordlore3.add(ChatColor.WHITE + "responses on a thread. There is an edit button");
  1483.         helpmenurulesdiscordlore3.add(ChatColor.WHITE + "that can be used if anything needs to be added");
  1484.         helpmenurulesdiscordlore3.add(ChatColor.WHITE + "to a previous message.");
  1485.         helpmenurulesdiscordlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1486.         helpmenurulesdiscord3Meta.setLore(helpmenurulesdiscordlore3);
  1487.         helpmenurulesdiscord3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1488.         helpmenurulesdiscord3.setItemMeta(helpmenurulesdiscord3Meta);
  1489.  
  1490.         ItemStack helpmenurulesdiscord4 = new ItemStack(Material.PAPER, 1);
  1491.         ItemMeta helpmenurulesdiscord4Meta = helpmenurulesdiscord4.getItemMeta();
  1492.         helpmenurulesdiscord4Meta.setDisplayName(ChatColor.WHITE + "[4]" + ChatColor.DARK_PURPLE + " Respect Other Users");
  1493.         ArrayList<String> helpmenurulesdiscordlore4 = new ArrayList<String>();
  1494.         helpmenurulesdiscordlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1495.         helpmenurulesdiscordlore4.add(ChatColor.WHITE + "Please remain respectful when speaking in our");
  1496.         helpmenurulesdiscordlore4.add(ChatColor.WHITE + "community chats such as on the website and the");
  1497.         helpmenurulesdiscordlore4.add(ChatColor.WHITE + "server. We would like to keep this community");
  1498.         helpmenurulesdiscordlore4.add(ChatColor.WHITE + "free of inappropriate behaviour and disrespect");
  1499.         helpmenurulesdiscordlore4.add(ChatColor.WHITE + "but we do understand that this is not always");
  1500.         helpmenurulesdiscordlore4.add(ChatColor.WHITE + "possible. Please be aware of how you are treating");
  1501.         helpmenurulesdiscordlore4.add(ChatColor.WHITE + "others and make sure to keep inappropriate");
  1502.         helpmenurulesdiscordlore4.add(ChatColor.WHITE + "language to a minimum. A large proportion of our");
  1503.         helpmenurulesdiscordlore4.add(ChatColor.WHITE + "community are young children or adults and the ");
  1504.         helpmenurulesdiscordlore4.add(ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " staff team want to make sure that our");
  1505.         helpmenurulesdiscordlore4.add(ChatColor.WHITE + "services stay professional. Discrimination,");
  1506.         helpmenurulesdiscordlore4.add(ChatColor.WHITE + "harassment and toxicity will not be tolerated and");
  1507.         helpmenurulesdiscordlore4.add(ChatColor.WHITE + "depending on the severity, the user could be");
  1508.         helpmenurulesdiscordlore4.add(ChatColor.WHITE + "verbally warned or permanently removed from");
  1509.         helpmenurulesdiscordlore4.add(ChatColor.WHITE + "our community.");
  1510.         helpmenurulesdiscordlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1511.         helpmenurulesdiscord4Meta.setLore(helpmenurulesdiscordlore4);
  1512.         helpmenurulesdiscord4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1513.         helpmenurulesdiscord4.setItemMeta(helpmenurulesdiscord4Meta);
  1514.  
  1515.         ItemStack helpmenurulesdiscord5 = new ItemStack(Material.PAPER, 1);
  1516.         ItemMeta helpmenurulesdiscord5Meta = helpmenurulesdiscord5.getItemMeta();
  1517.         helpmenurulesdiscord5Meta.setDisplayName(ChatColor.WHITE + "[5]" + ChatColor.DARK_PURPLE + " Advertising");
  1518.         ArrayList<String> helpmenurulesdiscordlore5 = new ArrayList<String>();
  1519.         helpmenurulesdiscordlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1520.         helpmenurulesdiscordlore5.add(ChatColor.WHITE + "Please do not advertise other server's ip");
  1521.         helpmenurulesdiscordlore5.add(ChatColor.WHITE + "addresses while on the forums. This will");
  1522.         helpmenurulesdiscordlore5.add(ChatColor.WHITE + "result in being removed from the forums");
  1523.         helpmenurulesdiscordlore5.add(ChatColor.WHITE + "permanently. Mentioning server names in");
  1524.         helpmenurulesdiscordlore5.add(ChatColor.WHITE + "private message is perfectly fine but abuse of");
  1525.         helpmenurulesdiscordlore5.add(ChatColor.WHITE + "this or mentioning server names in public chat");
  1526.         helpmenurulesdiscordlore5.add(ChatColor.WHITE + "/ posts will result in punishment.");
  1527.         helpmenurulesdiscordlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1528.         helpmenurulesdiscord5Meta.setLore(helpmenurulesdiscordlore5);
  1529.         helpmenurulesdiscord5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1530.         helpmenurulesdiscord5.setItemMeta(helpmenurulesdiscord5Meta);
  1531.  
  1532.         ItemStack helpmenurulesdiscord6 = new ItemStack(Material.PAPER, 1);
  1533.         ItemMeta helpmenurulesdiscord6Meta = helpmenurulesdiscord6.getItemMeta();
  1534.         helpmenurulesdiscord6Meta.setDisplayName(ChatColor.WHITE + "[6]" + ChatColor.DARK_PURPLE + " Criticsm / opinion");
  1535.         ArrayList<String> helpmenurulesdiscordlore6 = new ArrayList<String>();
  1536.         helpmenurulesdiscordlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1537.         helpmenurulesdiscordlore6.add(ChatColor.WHITE + "Criticsm and opinion are perfectly fine but");
  1538.         helpmenurulesdiscordlore6.add(ChatColor.WHITE + "attacking a member or staff member");
  1539.         helpmenurulesdiscordlore6.add(ChatColor.WHITE + "unecassarily or continually will result");
  1540.         helpmenurulesdiscordlore6.add(ChatColor.WHITE + "in punishment. Similarly unecassary negative");
  1541.         helpmenurulesdiscordlore6.add(ChatColor.WHITE + "language such as repeatedly posting 'This");
  1542.         helpmenurulesdiscordlore6.add(ChatColor.WHITE + "server is so dead' will also result in a");
  1543.         helpmenurulesdiscordlore6.add(ChatColor.WHITE + "punishment.");
  1544.         helpmenurulesdiscordlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1545.         helpmenurulesdiscord6Meta.setLore(helpmenurulesdiscordlore6);
  1546.         helpmenurulesdiscord6Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1547.         helpmenurulesdiscord6.setItemMeta(helpmenurulesdiscord6Meta);
  1548.  
  1549.         ItemStack helpmenurulesdiscord7 = new ItemStack(Material.PAPER, 1);
  1550.         ItemMeta helpmenurulesdiscord7Meta = helpmenurulesdiscord7.getItemMeta();
  1551.         helpmenurulesdiscord7Meta.setDisplayName(ChatColor.WHITE + "[7]" + ChatColor.DARK_PURPLE + " Stealing threads");
  1552.         ArrayList<String> helpmenurulesdiscordlore7 = new ArrayList<String>();
  1553.         helpmenurulesdiscordlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1554.         helpmenurulesdiscordlore7.add(ChatColor.WHITE + "Please do not hijack other user's threads");
  1555.         helpmenurulesdiscordlore7.add(ChatColor.WHITE + "to steer the conversation away from the");
  1556.         helpmenurulesdiscordlore7.add(ChatColor.WHITE + "original topic to your issue. Please make");
  1557.         helpmenurulesdiscordlore7.add(ChatColor.WHITE + "your own thread and it will be dealt with");
  1558.         helpmenurulesdiscordlore7.add(ChatColor.WHITE + "equally.");
  1559.         helpmenurulesdiscordlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1560.         helpmenurulesdiscord7Meta.setLore(helpmenurulesdiscordlore7);
  1561.         helpmenurulesdiscord7Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1562.         helpmenurulesdiscord7.setItemMeta(helpmenurulesdiscord7Meta);
  1563.  
  1564.         ItemStack helpmenurulesdiscord8 = new ItemStack(Material.PAPER, 1);
  1565.         ItemMeta helpmenurulesdiscord8Meta = helpmenurulesdiscord8.getItemMeta();
  1566.         helpmenurulesdiscord8Meta.setDisplayName(ChatColor.WHITE + "[8]" + ChatColor.DARK_PURPLE + " Reviving Dead Threads");
  1567.         ArrayList<String> helpmenurulesdiscordlore8 = new ArrayList<String>();
  1568.         helpmenurulesdiscordlore8.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1569.         helpmenurulesdiscordlore8.add(ChatColor.WHITE + "If a thread has not had a reply in more than a");
  1570.         helpmenurulesdiscordlore8.add(ChatColor.WHITE + "month then it is classed as 'dead'. Revival of");
  1571.         helpmenurulesdiscordlore8.add(ChatColor.WHITE + "said threads are allowed but as long as the post");
  1572.         helpmenurulesdiscordlore8.add(ChatColor.WHITE + "adds meaningful content to the thread. Posting");
  1573.         helpmenurulesdiscordlore8.add(ChatColor.WHITE + "useless content to a dead thread will result");
  1574.         helpmenurulesdiscordlore8.add(ChatColor.WHITE + "in punishment. If you cannot be sure that the");
  1575.         helpmenurulesdiscordlore8.add(ChatColor.WHITE + "post will add anything meaningful to the thread");
  1576.         helpmenurulesdiscordlore8.add(ChatColor.WHITE + "then do not post it.");
  1577.         helpmenurulesdiscordlore8.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1578.         helpmenurulesdiscord8Meta.setLore(helpmenurulesdiscordlore8);
  1579.         helpmenurulesdiscord8Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1580.         helpmenurulesdiscord8.setItemMeta(helpmenurulesdiscord8Meta);
  1581.  
  1582.         ItemStack helpmenurulesdiscord9 = new ItemStack(Material.PAPER, 1);
  1583.         ItemMeta helpmenurulesdiscord9Meta = helpmenurulesdiscord9.getItemMeta();
  1584.         helpmenurulesdiscord9Meta.setDisplayName(ChatColor.WHITE + "[9]" + ChatColor.DARK_PURPLE + " [TBD]");
  1585.         ArrayList<String> helpmenurulesdiscordlore9 = new ArrayList<String>();
  1586.         helpmenurulesdiscordlore9.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1587.         helpmenurulesdiscordlore9.add(ChatColor.WHITE + "");
  1588.         helpmenurulesdiscordlore9.add(ChatColor.WHITE + "");
  1589.         helpmenurulesdiscordlore9.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1590.         helpmenurulesdiscord9Meta.setLore(helpmenurulesdiscordlore9);
  1591.         helpmenurulesdiscord9Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1592.         helpmenurulesdiscord9.setItemMeta(helpmenurulesdiscord9Meta);
  1593.  
  1594.         ItemStack helpmenurulesdiscord10 = new ItemStack(Material.PAPER, 1);
  1595.         ItemMeta helpmenurulesdiscord10Meta = helpmenurulesdiscord10.getItemMeta();
  1596.         helpmenurulesdiscord10Meta.setDisplayName(ChatColor.WHITE + "[10]" + ChatColor.DARK_PURPLE + " [TBD]");
  1597.         ArrayList<String> helpmenurulesdiscordlore10 = new ArrayList<String>();
  1598.         helpmenurulesdiscordlore10.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1599.         helpmenurulesdiscordlore10.add(ChatColor.WHITE + "");
  1600.         helpmenurulesdiscordlore10.add(ChatColor.WHITE + "");
  1601.         helpmenurulesdiscordlore10.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1602.         helpmenurulesdiscord10Meta.setLore(helpmenurulesdiscordlore10);
  1603.         helpmenurulesdiscord10Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1604.         helpmenurulesdiscord10.setItemMeta(helpmenurulesdiscord10Meta);
  1605.  
  1606.         ItemStack helpmenurulesdiscord11 = new ItemStack(Material.PAPER, 1);
  1607.         ItemMeta helpmenurulesdiscord11Meta = helpmenurulesdiscord11.getItemMeta();
  1608.         helpmenurulesdiscord11Meta.setDisplayName(ChatColor.WHITE + "[11]" + ChatColor.DARK_PURPLE + " [TBD]");
  1609.         ArrayList<String> helpmenurulesdiscordlore11 = new ArrayList<String>();
  1610.         helpmenurulesdiscordlore11.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1611.         helpmenurulesdiscordlore11.add(ChatColor.WHITE + "");
  1612.         helpmenurulesdiscordlore11.add(ChatColor.WHITE + "");
  1613.         helpmenurulesdiscordlore11.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1614.         helpmenurulesdiscord11Meta.setLore(helpmenurulesdiscordlore11);
  1615.         helpmenurulesdiscord11Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1616.         helpmenurulesdiscord11.setItemMeta(helpmenurulesdiscord11Meta);
  1617.  
  1618.         ItemStack helpmenurulesdiscord12 = new ItemStack(Material.PAPER, 1);
  1619.         ItemMeta helpmenurulesdiscord12Meta = helpmenurulesdiscord12.getItemMeta();
  1620.         helpmenurulesdiscord12Meta.setDisplayName(ChatColor.WHITE + "[12]" + ChatColor.DARK_PURPLE + " [TBD]");
  1621.         ArrayList<String> helpmenurulesdiscordlore12 = new ArrayList<String>();
  1622.         helpmenurulesdiscordlore12.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1623.         helpmenurulesdiscordlore12.add(ChatColor.WHITE + "");
  1624.         helpmenurulesdiscordlore12.add(ChatColor.WHITE + "");
  1625.         helpmenurulesdiscordlore12.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1626.         helpmenurulesdiscord12Meta.setLore(helpmenurulesdiscordlore12);
  1627.         helpmenurulesdiscord12Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1628.         helpmenurulesdiscord12.setItemMeta(helpmenurulesdiscord12Meta);
  1629.  
  1630.         ItemStack helpmenurulesdiscord13 = new ItemStack(Material.PAPER, 1);
  1631.         ItemMeta helpmenurulesdiscord13Meta = helpmenurulesdiscord13.getItemMeta();
  1632.         helpmenurulesdiscord13Meta.setDisplayName(ChatColor.WHITE + "[13]" + ChatColor.DARK_PURPLE + " [TBD]");
  1633.         ArrayList<String> helpmenurulesdiscordlore13 = new ArrayList<String>();
  1634.         helpmenurulesdiscordlore13.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1635.         helpmenurulesdiscordlore13.add(ChatColor.WHITE + "");
  1636.         helpmenurulesdiscordlore13.add(ChatColor.WHITE + "");
  1637.         helpmenurulesdiscordlore13.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1638.         helpmenurulesdiscord13Meta.setLore(helpmenurulesdiscordlore13);
  1639.         helpmenurulesdiscord13Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1640.         helpmenurulesdiscord13.setItemMeta(helpmenurulesdiscord13Meta);
  1641.  
  1642.         ItemStack helpmenurulesdiscord14 = new ItemStack(Material.PAPER, 1);
  1643.         ItemMeta helpmenurulesdiscord14Meta = helpmenurulesdiscord14.getItemMeta();
  1644.         helpmenurulesdiscord14Meta.setDisplayName(
  1645.                 ChatColor.WHITE + "[8]" + ChatColor.DARK_PURPLE + " A full list of rules can be found on our website");
  1646.         ArrayList<String> helpmenurulesdiscordlore14 = new ArrayList<String>();
  1647.         helpmenurulesdiscordlore14.add(ChatColor.WHITE + "[Insert Website Address Here]");
  1648.         helpmenurulesdiscord14Meta.setLore(helpmenurulesdiscordlore14);
  1649.         helpmenurulesdiscord14Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1650.         helpmenurulesdiscord14.setItemMeta(helpmenurulesdiscord14Meta);
  1651.  
  1652.         ItemStack helpmenurulesdiscordback = new ItemStack(Material.NETHER_STAR, 1);
  1653.         ItemMeta helpmenurulesdiscordbackMeta = helpmenurulesdiscordback.getItemMeta();
  1654.         helpmenurulesdiscordbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  1655.         helpmenurulesdiscordbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1656.         helpmenurulesdiscordback.setItemMeta(helpmenurulesdiscordbackMeta);
  1657.  
  1658.         ItemStack helpmenurulesdiscordempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  1659.         ItemMeta helpmenurulesdiscordemptyMeta = helpmenurulesdiscordempty.getItemMeta();
  1660.         helpmenurulesdiscordemptyMeta.setDisplayName(ChatColor.BLACK + ".");
  1661.         helpmenurulesdiscordemptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1662.         helpmenurulesdiscordempty.setItemMeta(helpmenurulesdiscordemptyMeta);
  1663.  
  1664.         i.setItem(0, helpmenurulesdiscordempty);
  1665.         i.setItem(1, helpmenurulesdiscordempty);
  1666.         i.setItem(2, helpmenurulesdiscordempty);
  1667.         i.setItem(3, helpmenurulesdiscordempty);
  1668.         i.setItem(4, helpmenurulesdiscordempty);
  1669.         i.setItem(5, helpmenurulesdiscordempty);
  1670.         i.setItem(6, helpmenurulesdiscordempty);
  1671.         i.setItem(7, helpmenurulesdiscordempty);
  1672.         i.setItem(8, helpmenurulesdiscordempty);
  1673.         i.setItem(9, helpmenurulesdiscordempty);
  1674.         i.setItem(10, helpmenurulesdiscord1);
  1675.         i.setItem(11, helpmenurulesdiscord2);
  1676.         i.setItem(12, helpmenurulesdiscord3);
  1677.         i.setItem(13, helpmenurulesdiscord4);
  1678.         i.setItem(14, helpmenurulesdiscord5);
  1679.         i.setItem(15, helpmenurulesdiscord6);
  1680.         i.setItem(16, helpmenurulesdiscord7);
  1681.         i.setItem(17, helpmenurulesdiscordempty);
  1682.         i.setItem(18, helpmenurulesdiscordempty);
  1683.         i.setItem(19, helpmenurulesdiscord8);
  1684.         i.setItem(20, helpmenurulesdiscord14);
  1685.         i.setItem(21, helpmenurulesdiscordempty);
  1686.         i.setItem(22, helpmenurulesdiscordempty);
  1687.         i.setItem(23, helpmenurulesdiscordempty);
  1688.         i.setItem(24, helpmenurulesdiscordempty);
  1689.         i.setItem(25, helpmenurulesdiscordempty);
  1690.         i.setItem(26, helpmenurulesdiscordempty);
  1691.         i.setItem(27, helpmenurulesdiscordback);
  1692.         i.setItem(28, helpmenurulesdiscordempty);
  1693.         i.setItem(29, helpmenurulesdiscordempty);
  1694.         i.setItem(30, helpmenurulesdiscordempty);
  1695.         i.setItem(31, helpmenurulesdiscordempty);
  1696.         i.setItem(32, helpmenurulesdiscordempty);
  1697.         i.setItem(33, helpmenurulesdiscordempty);
  1698.         i.setItem(34, helpmenurulesdiscordempty);
  1699.         i.setItem(35, helpmenurulesdiscordempty);
  1700.  
  1701.         player.openInventory(i);
  1702.         // rules 3 - help menu
  1703.     }
  1704.  
  1705.     public void newInventory12(Player player) {
  1706.  
  1707.         Inventory i = plugin.getServer().createInventory(null, 27,
  1708.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Staff Help Menu");
  1709.  
  1710.         ItemStack shelpmenucore1 = new ItemStack(Material.LEATHER, 1);
  1711.         ItemMeta shelpmenucore1Meta = shelpmenucore1.getItemMeta();
  1712.         shelpmenucore1Meta.setDisplayName(ChatColor.WHITE + "Helper" + ChatColor.DARK_PURPLE + " Menu");
  1713.         shelpmenucore1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1714.         shelpmenucore1.setItemMeta(shelpmenucore1Meta);
  1715.  
  1716.         ItemStack shelpmenucore2 = new ItemStack(Material.COAL, 1);
  1717.         ItemMeta shelpmenucore2Meta = shelpmenucore2.getItemMeta();
  1718.         shelpmenucore2Meta.setDisplayName(ChatColor.WHITE + "Moderator" + ChatColor.DARK_PURPLE + " Menu");
  1719.         shelpmenucore2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1720.         shelpmenucore2.setItemMeta(shelpmenucore2Meta);
  1721.  
  1722.         ItemStack shelpmenucore3 = new ItemStack(Material.IRON_INGOT, 1);
  1723.         ItemMeta shelpmenucore3Meta = shelpmenucore3.getItemMeta();
  1724.         shelpmenucore3Meta.setDisplayName(ChatColor.WHITE + "Administrator" + ChatColor.DARK_PURPLE + " Menu");
  1725.         shelpmenucore3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1726.         shelpmenucore3.setItemMeta(shelpmenucore3Meta);
  1727.  
  1728.         ItemStack shelpmenucore4 = new ItemStack(Material.GOLD_INGOT, 1);
  1729.         ItemMeta shelpmenucore4Meta = shelpmenucore1.getItemMeta();
  1730.         shelpmenucore4Meta.setDisplayName(ChatColor.WHITE + "Operator" + ChatColor.DARK_PURPLE + " Menu");
  1731.         shelpmenucore4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1732.         shelpmenucore4.setItemMeta(shelpmenucore4Meta);
  1733.  
  1734.         ItemStack shelpmenucore5 = new ItemStack(Material.DIAMOND, 1);
  1735.         ItemMeta shelpmenucore5Meta = shelpmenucore5.getItemMeta();
  1736.         shelpmenucore5Meta.setDisplayName(ChatColor.WHITE + "Manager" + ChatColor.DARK_PURPLE + " Menu");
  1737.         shelpmenucore5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1738.         shelpmenucore5.setItemMeta(shelpmenucore5Meta);
  1739.  
  1740.         ItemStack shelpmenucore6 = new ItemStack(Material.EMERALD, 1);
  1741.         ItemMeta shelpmenucore6Meta = shelpmenucore6.getItemMeta();
  1742.         shelpmenucore6Meta.setDisplayName(ChatColor.WHITE + "Developer" + ChatColor.DARK_PURPLE + " Menu");
  1743.         shelpmenucore6Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1744.         shelpmenucore6.setItemMeta(shelpmenucore6Meta);
  1745.  
  1746.         ItemStack shelpmenucore7 = new ItemStack(Material.NETHER_STAR, 1);
  1747.         ItemMeta shelpmenucore7Meta = shelpmenucore7.getItemMeta();
  1748.         shelpmenucore7Meta.setDisplayName(ChatColor.WHITE + "Owner" + ChatColor.DARK_PURPLE + " Menu");
  1749.         shelpmenucore7Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1750.         shelpmenucore7.setItemMeta(shelpmenucore7Meta);
  1751.  
  1752.         ItemStack shelpmenucoreempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  1753.         ItemMeta shelpmenucoreemptyMeta = shelpmenucoreempty.getItemMeta();
  1754.         shelpmenucoreemptyMeta.setDisplayName(ChatColor.BLACK + ".");
  1755.         shelpmenucoreemptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1756.         shelpmenucoreempty.setItemMeta(shelpmenucoreemptyMeta);
  1757.  
  1758.         i.setItem(0, shelpmenucoreempty);
  1759.         i.setItem(1, shelpmenucoreempty);
  1760.         i.setItem(2, shelpmenucoreempty);
  1761.         i.setItem(3, shelpmenucoreempty);
  1762.         i.setItem(4, shelpmenucoreempty);
  1763.         i.setItem(5, shelpmenucoreempty);
  1764.         i.setItem(6, shelpmenucoreempty);
  1765.         i.setItem(7, shelpmenucoreempty);
  1766.         i.setItem(8, shelpmenucoreempty);
  1767.         i.setItem(9, shelpmenucoreempty);
  1768.         i.setItem(10, shelpmenucore1);
  1769.         i.setItem(11, shelpmenucore2);
  1770.         i.setItem(12, shelpmenucore3);
  1771.         i.setItem(13, shelpmenucore4);
  1772.         i.setItem(14, shelpmenucore5);
  1773.         i.setItem(15, shelpmenucore6);
  1774.         i.setItem(16, shelpmenucore7);
  1775.         i.setItem(17, shelpmenucoreempty);
  1776.         i.setItem(18, shelpmenucoreempty);
  1777.         i.setItem(19, shelpmenucoreempty);
  1778.         i.setItem(20, shelpmenucoreempty);
  1779.         i.setItem(21, shelpmenucoreempty);
  1780.         i.setItem(22, shelpmenucoreempty);
  1781.         i.setItem(23, shelpmenucoreempty);
  1782.         i.setItem(24, shelpmenucoreempty);
  1783.         i.setItem(25, shelpmenucoreempty);
  1784.         i.setItem(26, shelpmenucoreempty);
  1785.  
  1786.         player.openInventory(i);
  1787.         // Staff Help menu
  1788.     }
  1789.  
  1790.     public void newInventory13(Player player) {
  1791.  
  1792.         Inventory i = plugin.getServer().createInventory(null, 36,
  1793.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Helper Menu");
  1794.  
  1795.         ItemStack shelpmenuhelper1 = new ItemStack(Material.EXP_BOTTLE, 1);
  1796.         ItemMeta shelpmenuhelper1Meta = shelpmenuhelper1.getItemMeta();
  1797.         shelpmenuhelper1Meta.setDisplayName(ChatColor.DARK_PURPLE + "Introduction");
  1798.         ArrayList<String> shelpmenuhelperlore1 = new ArrayList<String>();
  1799.         shelpmenuhelperlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1800.         shelpmenuhelperlore1.add(ChatColor.WHITE + "Congratulations you have been awarded the");
  1801.         shelpmenuhelperlore1.add(ChatColor.DARK_PURPLE + "Helper " + ChatColor.WHITE + "rank!" + ChatColor.WHITE + " This is a big responsibility as");
  1802.         shelpmenuhelperlore1.add(ChatColor.WHITE + "this is the route to becoming a full member of");
  1803.         shelpmenuhelperlore1.add(ChatColor.WHITE + "the staff team. As you have shown interest in");
  1804.         shelpmenuhelperlore1.add(ChatColor.WHITE + "becoming a staff member you need to prove that");
  1805.         shelpmenuhelperlore1.add(ChatColor.WHITE + "you can act responsibly and maturely to be a");
  1806.         shelpmenuhelperlore1.add(ChatColor.WHITE + "role model to every player on the server.");
  1807.         shelpmenuhelperlore1.add(ChatColor.WHITE + "Listed in this menu are a few commands that");
  1808.         shelpmenuhelperlore1.add(ChatColor.WHITE + "you now have access to and some rules which");
  1809.         shelpmenuhelperlore1.add(ChatColor.WHITE + "you need to follow. This is not a complete!");
  1810.         shelpmenuhelperlore1.add(ChatColor.WHITE + "list which can be found in the staff chat");
  1811.         shelpmenuhelperlore1.add(ChatColor.WHITE + "if requested if not pinned in the chat.");
  1812.         shelpmenuhelperlore1.add(ChatColor.WHITE + "Good Luck!");
  1813.         shelpmenuhelperlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1814.         shelpmenuhelper1Meta.setLore(shelpmenuhelperlore1);
  1815.         shelpmenuhelper1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1816.         shelpmenuhelper1.setItemMeta(shelpmenuhelper1Meta);
  1817.  
  1818.         ItemStack shelpmenuhelper2 = new ItemStack(Material.PAPER, 1);
  1819.         ItemMeta shelpmenuhelper2Meta = shelpmenuhelper2.getItemMeta();
  1820.         shelpmenuhelper2Meta
  1821.                 .setDisplayName(ChatColor.WHITE + "Command [1]" + ChatColor.DARK_PURPLE + " /warn [player] [reason]");
  1822.         ArrayList<String> shelpmenuhelperlore2 = new ArrayList<String>();
  1823.         shelpmenuhelperlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1824.         shelpmenuhelperlore2.add(ChatColor.WHITE + "This command will warn the desired player");
  1825.         shelpmenuhelperlore2.add(ChatColor.WHITE + "and do so in public chat. You must provide");
  1826.         shelpmenuhelperlore2.add(ChatColor.WHITE + "a reason for the warn.");
  1827.         shelpmenuhelperlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1828.         shelpmenuhelper2Meta.setLore(shelpmenuhelperlore2);
  1829.         shelpmenuhelper2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1830.         shelpmenuhelper2.setItemMeta(shelpmenuhelper2Meta);
  1831.  
  1832.         ItemStack shelpmenuhelper3 = new ItemStack(Material.PAPER, 1);
  1833.         ItemMeta shelpmenuhelper3Meta = shelpmenuhelper3.getItemMeta();
  1834.         shelpmenuhelper3Meta
  1835.                 .setDisplayName(ChatColor.WHITE + "Command [2]" + ChatColor.DARK_PURPLE + " /kick [player] [reason]");
  1836.         ArrayList<String> shelpmenuhelperlore3 = new ArrayList<String>();
  1837.         shelpmenuhelperlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1838.         shelpmenuhelperlore3.add(ChatColor.WHITE + "This command will kick the desired player");
  1839.         shelpmenuhelperlore3.add(ChatColor.WHITE + "from the server. You must provide a reason");
  1840.         shelpmenuhelperlore3.add(ChatColor.WHITE + "for the kick. You will be notified about the");
  1841.         shelpmenuhelperlore3.add(ChatColor.WHITE + "kick if one is performed.");
  1842.         shelpmenuhelperlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1843.         shelpmenuhelper3Meta.setLore(shelpmenuhelperlore3);
  1844.         shelpmenuhelper3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1845.         shelpmenuhelper3.setItemMeta(shelpmenuhelper3Meta);
  1846.  
  1847.         ItemStack shelpmenuhelper4 = new ItemStack(Material.PAPER, 1);
  1848.         ItemMeta shelpmenuhelper4Meta = shelpmenuhelper1.getItemMeta();
  1849.         shelpmenuhelper4Meta.setDisplayName(ChatColor.WHITE + "Command [3]" + ChatColor.DARK_PURPLE + " /helpop");
  1850.         ArrayList<String> shelpmenuhelperlore4 = new ArrayList<String>();
  1851.         shelpmenuhelperlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1852.         shelpmenuhelperlore4.add(ChatColor.WHITE + "You will now be able to communicate with");
  1853.         shelpmenuhelperlore4.add(ChatColor.WHITE + "staff using helpop. You will receive messages");
  1854.         shelpmenuhelperlore4.add(ChatColor.WHITE + "and be able to send them using helpop. Players");
  1855.         shelpmenuhelperlore4.add(ChatColor.WHITE + "will communicate using helpop but will not");
  1856.         shelpmenuhelperlore4.add(ChatColor.WHITE + "be able to receive messages.");
  1857.         shelpmenuhelperlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1858.         shelpmenuhelper4Meta.setLore(shelpmenuhelperlore4);
  1859.         shelpmenuhelper4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1860.         shelpmenuhelper4.setItemMeta(shelpmenuhelper4Meta);
  1861.  
  1862.         ItemStack shelpmenuhelper5 = new ItemStack(Material.PAPER, 1);
  1863.         ItemMeta shelpmenuhelper5Meta = shelpmenuhelper5.getItemMeta();
  1864.         shelpmenuhelper5Meta.setDisplayName(ChatColor.WHITE + "Command [4]" + ChatColor.DARK_PURPLE + " /");
  1865.         ArrayList<String> shelpmenuhelperlore5 = new ArrayList<String>();
  1866.         shelpmenuhelperlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1867.         shelpmenuhelperlore5.add(ChatColor.WHITE + "");
  1868.         shelpmenuhelperlore5.add(ChatColor.WHITE + "");
  1869.         shelpmenuhelperlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1870.         shelpmenuhelper5Meta.setLore(shelpmenuhelperlore5);
  1871.         shelpmenuhelper5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1872.         shelpmenuhelper5.setItemMeta(shelpmenuhelper5Meta);
  1873.  
  1874.         ItemStack shelpmenuhelper6 = new ItemStack(Material.PAPER, 1);
  1875.         ItemMeta shelpmenuhelper6Meta = shelpmenuhelper6.getItemMeta();
  1876.         shelpmenuhelper6Meta.setDisplayName(ChatColor.WHITE + "Command [5]" + ChatColor.DARK_PURPLE + " /");
  1877.         ArrayList<String> shelpmenuhelperlore6 = new ArrayList<String>();
  1878.         shelpmenuhelperlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1879.         shelpmenuhelperlore6.add(ChatColor.WHITE + "");
  1880.         shelpmenuhelperlore6.add(ChatColor.WHITE + "");
  1881.         shelpmenuhelperlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1882.         shelpmenuhelper6Meta.setLore(shelpmenuhelperlore6);
  1883.         shelpmenuhelper6Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1884.         shelpmenuhelper6.setItemMeta(shelpmenuhelper6Meta);
  1885.  
  1886.         ItemStack shelpmenuhelper7 = new ItemStack(Material.PAPER, 1);
  1887.         ItemMeta shelpmenuhelper7Meta = shelpmenuhelper7.getItemMeta();
  1888.         shelpmenuhelper7Meta.setDisplayName(ChatColor.WHITE + "Command [6]" + ChatColor.DARK_PURPLE + " /");
  1889.         ArrayList<String> shelpmenuhelperlore7 = new ArrayList<String>();
  1890.         shelpmenuhelperlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1891.         shelpmenuhelperlore7.add(ChatColor.WHITE + "");
  1892.         shelpmenuhelperlore7.add(ChatColor.WHITE + "");
  1893.         shelpmenuhelperlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1894.         shelpmenuhelper7Meta.setLore(shelpmenuhelperlore7);
  1895.         shelpmenuhelper7Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1896.         shelpmenuhelper7.setItemMeta(shelpmenuhelper7Meta);
  1897.  
  1898.         ItemStack shelpmenuhelper8 = new ItemStack(Material.BOOK, 1);
  1899.         ItemMeta shelpmenuhelper8Meta = shelpmenuhelper8.getItemMeta();
  1900.         shelpmenuhelper8Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [1]" + ChatColor.DARK_PURPLE + " Maturity");
  1901.         ArrayList<String> shelpmenuhelperlore8 = new ArrayList<String>();
  1902.         shelpmenuhelperlore8.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1903.         shelpmenuhelperlore8.add(ChatColor.WHITE + "Maturity is key when becoming a staff member.");
  1904.         shelpmenuhelperlore8.add(ChatColor.WHITE + "");
  1905.         shelpmenuhelperlore8.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1906.         shelpmenuhelper8Meta.setLore(shelpmenuhelperlore8);
  1907.         shelpmenuhelper8Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1908.         shelpmenuhelper8.setItemMeta(shelpmenuhelper8Meta);
  1909.  
  1910.         ItemStack shelpmenuhelper9 = new ItemStack(Material.BOOK, 1);
  1911.         ItemMeta shelpmenuhelper9Meta = shelpmenuhelper9.getItemMeta();
  1912.         shelpmenuhelper9Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [2]" + ChatColor.DARK_PURPLE + " Responsibility");
  1913.         ArrayList<String> shelpmenuhelperlore9 = new ArrayList<String>();
  1914.         shelpmenuhelperlore9.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1915.         shelpmenuhelperlore9.add(ChatColor.WHITE + "");
  1916.         shelpmenuhelperlore9.add(ChatColor.WHITE + "");
  1917.         shelpmenuhelperlore9.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1918.         shelpmenuhelper9Meta.setLore(shelpmenuhelperlore9);
  1919.         shelpmenuhelper9Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1920.         shelpmenuhelper9.setItemMeta(shelpmenuhelper9Meta);
  1921.  
  1922.         ItemStack shelpmenuhelper10 = new ItemStack(Material.BOOK, 1);
  1923.         ItemMeta shelpmenuhelper10Meta = shelpmenuhelper10.getItemMeta();
  1924.         shelpmenuhelper10Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [3]" + ChatColor.DARK_PURPLE + " Commands");
  1925.         ArrayList<String> shelpmenuhelperlore10 = new ArrayList<String>();
  1926.         shelpmenuhelperlore10.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1927.         shelpmenuhelperlore10.add(ChatColor.WHITE + "");
  1928.         shelpmenuhelperlore10.add(ChatColor.WHITE + "");
  1929.         shelpmenuhelperlore10.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1930.         shelpmenuhelper10Meta.setLore(shelpmenuhelperlore10);
  1931.         shelpmenuhelper10Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1932.         shelpmenuhelper10.setItemMeta(shelpmenuhelper10Meta);
  1933.  
  1934.         ItemStack shelpmenuhelper11 = new ItemStack(Material.BOOK, 1);
  1935.         ItemMeta shelpmenuhelper11Meta = shelpmenuhelper11.getItemMeta();
  1936.         shelpmenuhelper11Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [4]" + ChatColor.DARK_PURPLE + " Asking For Help");
  1937.         ArrayList<String> shelpmenuhelperlore11 = new ArrayList<String>();
  1938.         shelpmenuhelperlore11.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1939.         shelpmenuhelperlore11.add(ChatColor.WHITE + "");
  1940.         shelpmenuhelperlore11.add(ChatColor.WHITE + "");
  1941.         shelpmenuhelperlore11.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1942.         shelpmenuhelper11Meta.setLore(shelpmenuhelperlore11);
  1943.         shelpmenuhelper11Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1944.         shelpmenuhelper11.setItemMeta(shelpmenuhelper11Meta);
  1945.  
  1946.         ItemStack shelpmenuhelper12 = new ItemStack(Material.BOOK, 1);
  1947.         ItemMeta shelpmenuhelper12Meta = shelpmenuhelper12.getItemMeta();
  1948.         shelpmenuhelper12Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [5]" + ChatColor.DARK_PURPLE + " Abuse");
  1949.         ArrayList<String> shelpmenuhelperlore12 = new ArrayList<String>();
  1950.         shelpmenuhelperlore12.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1951.         shelpmenuhelperlore12.add(ChatColor.WHITE + "");
  1952.         shelpmenuhelperlore12.add(ChatColor.WHITE + "");
  1953.         shelpmenuhelperlore12.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1954.         shelpmenuhelper12Meta.setLore(shelpmenuhelperlore12);
  1955.         shelpmenuhelper12Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1956.         shelpmenuhelper12.setItemMeta(shelpmenuhelper12Meta);
  1957.  
  1958.         ItemStack shelpmenuhelper13 = new ItemStack(Material.BOOK, 1);
  1959.         ItemMeta shelpmenuhelper13Meta = shelpmenuhelper13.getItemMeta();
  1960.         shelpmenuhelper13Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [6]" + ChatColor.DARK_PURPLE + " Promotions / Moderator");
  1961.         ArrayList<String> shelpmenuhelperlore13 = new ArrayList<String>();
  1962.         shelpmenuhelperlore13.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1963.         shelpmenuhelperlore13.add(ChatColor.WHITE + "");
  1964.         shelpmenuhelperlore13.add(ChatColor.WHITE + "");
  1965.         shelpmenuhelperlore13.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1966.         shelpmenuhelper13Meta.setLore(shelpmenuhelperlore13);
  1967.         shelpmenuhelper13Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1968.         shelpmenuhelper13.setItemMeta(shelpmenuhelper13Meta);
  1969.  
  1970.         ItemStack shelpmenuhelper14 = new ItemStack(Material.BOOK, 1);
  1971.         ItemMeta shelpmenuhelper14Meta = shelpmenuhelper14.getItemMeta();
  1972.         shelpmenuhelper14Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [7]" + ChatColor.DARK_PURPLE + " Enjoyment");
  1973.         ArrayList<String> shelpmenuhelperlore14 = new ArrayList<String>();
  1974.         shelpmenuhelperlore14.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1975.         shelpmenuhelperlore14.add(ChatColor.WHITE + "");
  1976.         shelpmenuhelperlore14.add(ChatColor.WHITE + "");
  1977.         shelpmenuhelperlore14.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  1978.         shelpmenuhelper14Meta.setLore(shelpmenuhelperlore14);
  1979.         shelpmenuhelper14Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1980.         shelpmenuhelper14.setItemMeta(shelpmenuhelper14Meta);
  1981.  
  1982.         ItemStack shelpmenuhelperempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  1983.         ItemMeta shelpmenuhelperemptyMeta = shelpmenuhelperempty.getItemMeta();
  1984.         shelpmenuhelperemptyMeta.setDisplayName(ChatColor.BLACK + ".");
  1985.         shelpmenuhelperemptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1986.         shelpmenuhelperempty.setItemMeta(shelpmenuhelperemptyMeta);
  1987.  
  1988.         ItemStack shelpmenuhelperback = new ItemStack(Material.NETHER_STAR, 1);
  1989.         ItemMeta shelpmenuhelperbackMeta = shelpmenuhelperback.getItemMeta();
  1990.         shelpmenuhelperbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  1991.         shelpmenuhelperbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  1992.         shelpmenuhelperback.setItemMeta(shelpmenuhelperbackMeta);
  1993.  
  1994.         i.setItem(0, shelpmenuhelperempty);
  1995.         i.setItem(1, shelpmenuhelperempty);
  1996.         i.setItem(2, shelpmenuhelperempty);
  1997.         i.setItem(3, shelpmenuhelperempty);
  1998.         i.setItem(4, shelpmenuhelperempty);
  1999.         i.setItem(5, shelpmenuhelperempty);
  2000.         i.setItem(6, shelpmenuhelperempty);
  2001.         i.setItem(7, shelpmenuhelperempty);
  2002.         i.setItem(8, shelpmenuhelperempty);
  2003.         i.setItem(9, shelpmenuhelperempty);
  2004.         i.setItem(10, shelpmenuhelper1);
  2005.         i.setItem(11, shelpmenuhelper2);
  2006.         i.setItem(12, shelpmenuhelper3);
  2007.         i.setItem(13, shelpmenuhelper4);
  2008.         i.setItem(14, shelpmenuhelper5);
  2009.         i.setItem(15, shelpmenuhelper6);
  2010.         i.setItem(16, shelpmenuhelper7);
  2011.         i.setItem(17, shelpmenuhelperempty);
  2012.         i.setItem(18, shelpmenuhelperempty);
  2013.         i.setItem(19, shelpmenuhelper8);
  2014.         i.setItem(20, shelpmenuhelper9);
  2015.         i.setItem(21, shelpmenuhelper10);
  2016.         i.setItem(22, shelpmenuhelper11);
  2017.         i.setItem(23, shelpmenuhelper12);
  2018.         i.setItem(24, shelpmenuhelper13);
  2019.         i.setItem(25, shelpmenuhelper14);
  2020.         i.setItem(26, shelpmenuhelperempty);
  2021.         i.setItem(27, shelpmenuhelperback);
  2022.         i.setItem(28, shelpmenuhelperempty);
  2023.         i.setItem(29, shelpmenuhelperempty);
  2024.         i.setItem(30, shelpmenuhelperempty);
  2025.         i.setItem(31, shelpmenuhelperempty);
  2026.         i.setItem(32, shelpmenuhelperempty);
  2027.         i.setItem(33, shelpmenuhelperempty);
  2028.         i.setItem(34, shelpmenuhelperempty);
  2029.         i.setItem(35, shelpmenuhelperempty);
  2030.  
  2031.         player.openInventory(i);
  2032.         // Staff Help menu - Helper commands/Rules
  2033.     }
  2034.  
  2035.     public void newInventory14(Player player) {
  2036.  
  2037.         Inventory i = plugin.getServer().createInventory(null, 36,
  2038.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Moderator Menu");
  2039.  
  2040.         ItemStack shelpmenumod1 = new ItemStack(Material.EXP_BOTTLE, 1);
  2041.         ItemMeta shelpmenumod1Meta = shelpmenumod1.getItemMeta();
  2042.         shelpmenumod1Meta.setDisplayName(ChatColor.DARK_PURPLE + "Introduction");
  2043.         ArrayList<String> shelpmenumodlore1 = new ArrayList<String>();
  2044.         shelpmenumodlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2045.         shelpmenumodlore1.add(ChatColor.WHITE + "Congratulations you have been awarded the" + ChatColor.DARK_PURPLE
  2046.                 + " Moderator " + ChatColor.WHITE + "rank!");
  2047.         shelpmenumodlore1.add(ChatColor.WHITE + "This is a big responsibility as this is the route to");
  2048.         shelpmenumodlore1.add(ChatColor.WHITE + "becoming a full member of the staff team. As you have");
  2049.         shelpmenumodlore1.add(ChatColor.WHITE + "shown interest in becoming a staff member you need to");
  2050.         shelpmenumodlore1.add(ChatColor.WHITE + "prove that you can act responsiblely and maturely to be");
  2051.         shelpmenumodlore1.add(ChatColor.WHITE + "a role model to every player on the server. Listed in this");
  2052.         shelpmenumodlore1.add(ChatColor.WHITE + "menu are a few commands that you now have access to and");
  2053.         shelpmenumodlore1.add(ChatColor.WHITE + "some rules which you need to follow. This is not a complete");
  2054.         shelpmenumodlore1.add(ChatColor.WHITE + "list which can be found in the staff chat if requested if");
  2055.         shelpmenumodlore1.add(ChatColor.WHITE + "not pinned in the chat. Good Luck!");
  2056.         shelpmenumodlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2057.         shelpmenumod1Meta.setLore(shelpmenumodlore1);
  2058.         shelpmenumod1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2059.         shelpmenumod1.setItemMeta(shelpmenumod1Meta);
  2060.  
  2061.         ItemStack shelpmenumod2 = new ItemStack(Material.PAPER, 1);
  2062.         ItemMeta shelpmenumod2Meta = shelpmenumod2.getItemMeta();
  2063.         shelpmenumod2Meta
  2064.                 .setDisplayName(ChatColor.WHITE + "Command [1]" + ChatColor.DARK_PURPLE + " /kick [player] [reason]");
  2065.         ArrayList<String> shelpmenumodlore2 = new ArrayList<String>();
  2066.         shelpmenumodlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2067.         shelpmenumodlore2.add(ChatColor.WHITE + "");
  2068.         shelpmenumodlore2.add(ChatColor.WHITE + "");
  2069.         shelpmenumodlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2070.         shelpmenumod2Meta.setLore(shelpmenumodlore2);
  2071.         shelpmenumod2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2072.         shelpmenumod2.setItemMeta(shelpmenumod2Meta);
  2073.  
  2074.         ItemStack shelpmenumod3 = new ItemStack(Material.PAPER, 1);
  2075.         ItemMeta shelpmenumod3Meta = shelpmenumod3.getItemMeta();
  2076.         shelpmenumod3Meta
  2077.                 .setDisplayName(ChatColor.WHITE + "Command [2]" + ChatColor.DARK_PURPLE + " /warn [player] [reason]");
  2078.         ArrayList<String> shelpmenumodlore3 = new ArrayList<String>();
  2079.         shelpmenumodlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2080.         shelpmenumodlore3.add(ChatColor.WHITE + "");
  2081.         shelpmenumodlore3.add(ChatColor.WHITE + "");
  2082.         shelpmenumodlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2083.         shelpmenumod3Meta.setLore(shelpmenumodlore3);
  2084.         shelpmenumod3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2085.         shelpmenumod3.setItemMeta(shelpmenumod3Meta);
  2086.  
  2087.         ItemStack shelpmenumod4 = new ItemStack(Material.PAPER, 1);
  2088.         ItemMeta shelpmenumod4Meta = shelpmenumod1.getItemMeta();
  2089.         shelpmenumod4Meta.setDisplayName(ChatColor.WHITE + "Command [3]" + ChatColor.DARK_PURPLE + " /");
  2090.         ArrayList<String> shelpmenumodlore4 = new ArrayList<String>();
  2091.         shelpmenumodlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2092.         shelpmenumodlore4.add(ChatColor.WHITE + "");
  2093.         shelpmenumodlore4.add(ChatColor.WHITE + "");
  2094.         shelpmenumodlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2095.         shelpmenumod4Meta.setLore(shelpmenumodlore4);
  2096.         shelpmenumod4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2097.         shelpmenumod4.setItemMeta(shelpmenumod4Meta);
  2098.  
  2099.         ItemStack shelpmenumod5 = new ItemStack(Material.PAPER, 1);
  2100.         ItemMeta shelpmenumod5Meta = shelpmenumod5.getItemMeta();
  2101.         shelpmenumod5Meta.setDisplayName(ChatColor.WHITE + "Command [4]" + ChatColor.DARK_PURPLE + " /");
  2102.         ArrayList<String> shelpmenumodlore5 = new ArrayList<String>();
  2103.         shelpmenumodlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2104.         shelpmenumodlore5.add(ChatColor.WHITE + "");
  2105.         shelpmenumodlore5.add(ChatColor.WHITE + "");
  2106.         shelpmenumodlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2107.         shelpmenumod5Meta.setLore(shelpmenumodlore5);
  2108.         shelpmenumod5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2109.         shelpmenumod5.setItemMeta(shelpmenumod5Meta);
  2110.  
  2111.         ItemStack shelpmenumod6 = new ItemStack(Material.PAPER, 1);
  2112.         ItemMeta shelpmenumod6Meta = shelpmenumod6.getItemMeta();
  2113.         shelpmenumod6Meta.setDisplayName(ChatColor.WHITE + "Command [5]" + ChatColor.DARK_PURPLE + " /");
  2114.         ArrayList<String> shelpmenumodlore6 = new ArrayList<String>();
  2115.         shelpmenumodlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2116.         shelpmenumodlore6.add(ChatColor.WHITE + "");
  2117.         shelpmenumodlore6.add(ChatColor.WHITE + "");
  2118.         shelpmenumodlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2119.         shelpmenumod6Meta.setLore(shelpmenumodlore6);
  2120.         shelpmenumod6Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2121.         shelpmenumod6.setItemMeta(shelpmenumod6Meta);
  2122.  
  2123.         ItemStack shelpmenumod7 = new ItemStack(Material.PAPER, 1);
  2124.         ItemMeta shelpmenumod7Meta = shelpmenumod7.getItemMeta();
  2125.         shelpmenumod7Meta.setDisplayName(ChatColor.WHITE + "Command [6]" + ChatColor.DARK_PURPLE + " /");
  2126.         ArrayList<String> shelpmenumodlore7 = new ArrayList<String>();
  2127.         shelpmenumodlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2128.         shelpmenumodlore7.add(ChatColor.WHITE + "");
  2129.         shelpmenumodlore7.add(ChatColor.WHITE + "");
  2130.         shelpmenumodlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2131.         shelpmenumod7Meta.setLore(shelpmenumodlore7);
  2132.         shelpmenumod7Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2133.         shelpmenumod7.setItemMeta(shelpmenumod7Meta);
  2134.  
  2135.         ItemStack shelpmenumod8 = new ItemStack(Material.BOOK, 1);
  2136.         ItemMeta shelpmenumod8Meta = shelpmenumod8.getItemMeta();
  2137.         shelpmenumod8Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [1]" + ChatColor.DARK_PURPLE + " ");
  2138.         ArrayList<String> shelpmenumodlore8 = new ArrayList<String>();
  2139.         shelpmenumodlore8.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2140.         shelpmenumodlore8.add(ChatColor.WHITE + "");
  2141.         shelpmenumodlore8.add(ChatColor.WHITE + "");
  2142.         shelpmenumodlore8.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2143.         shelpmenumod8Meta.setLore(shelpmenumodlore8);
  2144.         shelpmenumod8Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2145.         shelpmenumod8.setItemMeta(shelpmenumod8Meta);
  2146.  
  2147.         ItemStack shelpmenumod9 = new ItemStack(Material.BOOK, 1);
  2148.         ItemMeta shelpmenumod9Meta = shelpmenumod9.getItemMeta();
  2149.         shelpmenumod9Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [2]" + ChatColor.DARK_PURPLE + " ");
  2150.         ArrayList<String> shelpmenumodlore9 = new ArrayList<String>();
  2151.         shelpmenumodlore9.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2152.         shelpmenumodlore9.add(ChatColor.WHITE + "");
  2153.         shelpmenumodlore9.add(ChatColor.WHITE + "");
  2154.         shelpmenumodlore9.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2155.         shelpmenumod9Meta.setLore(shelpmenumodlore9);
  2156.         shelpmenumod9Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2157.         shelpmenumod9.setItemMeta(shelpmenumod9Meta);
  2158.  
  2159.         ItemStack shelpmenumod10 = new ItemStack(Material.BOOK, 1);
  2160.         ItemMeta shelpmenumod10Meta = shelpmenumod10.getItemMeta();
  2161.         shelpmenumod10Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [3]" + ChatColor.DARK_PURPLE + " ");
  2162.         ArrayList<String> shelpmenumodlore10 = new ArrayList<String>();
  2163.         shelpmenumodlore10.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2164.         shelpmenumodlore10.add(ChatColor.WHITE + "");
  2165.         shelpmenumodlore10.add(ChatColor.WHITE + "");
  2166.         shelpmenumodlore10.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2167.         shelpmenumod10Meta.setLore(shelpmenumodlore10);
  2168.         shelpmenumod10Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2169.         shelpmenumod10.setItemMeta(shelpmenumod10Meta);
  2170.  
  2171.         ItemStack shelpmenumod11 = new ItemStack(Material.BOOK, 1);
  2172.         ItemMeta shelpmenumod11Meta = shelpmenumod11.getItemMeta();
  2173.         shelpmenumod11Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [4]" + ChatColor.DARK_PURPLE + " ");
  2174.         ArrayList<String> shelpmenumodlore11 = new ArrayList<String>();
  2175.         shelpmenumodlore11.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2176.         shelpmenumodlore11.add(ChatColor.WHITE + "");
  2177.         shelpmenumodlore11.add(ChatColor.WHITE + "");
  2178.         shelpmenumodlore11.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2179.         shelpmenumod11Meta.setLore(shelpmenumodlore11);
  2180.         shelpmenumod11Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2181.         shelpmenumod11.setItemMeta(shelpmenumod11Meta);
  2182.  
  2183.         ItemStack shelpmenumod12 = new ItemStack(Material.BOOK, 1);
  2184.         ItemMeta shelpmenumod12Meta = shelpmenumod12.getItemMeta();
  2185.         shelpmenumod12Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [5]" + ChatColor.DARK_PURPLE + " ");
  2186.         ArrayList<String> shelpmenumodlore12 = new ArrayList<String>();
  2187.         shelpmenumodlore12.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2188.         shelpmenumodlore12.add(ChatColor.WHITE + "");
  2189.         shelpmenumodlore12.add(ChatColor.WHITE + "");
  2190.         shelpmenumodlore12.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2191.         shelpmenumod12Meta.setLore(shelpmenumodlore12);
  2192.         shelpmenumod12Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2193.         shelpmenumod12.setItemMeta(shelpmenumod12Meta);
  2194.  
  2195.         ItemStack shelpmenumod13 = new ItemStack(Material.BOOK, 1);
  2196.         ItemMeta shelpmenumod13Meta = shelpmenumod13.getItemMeta();
  2197.         shelpmenumod13Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [6]" + ChatColor.DARK_PURPLE + " ");
  2198.         ArrayList<String> shelpmenumodlore13 = new ArrayList<String>();
  2199.         shelpmenumodlore13.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2200.         shelpmenumodlore13.add(ChatColor.WHITE + "");
  2201.         shelpmenumodlore13.add(ChatColor.WHITE + "");
  2202.         shelpmenumodlore13.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2203.         shelpmenumod13Meta.setLore(shelpmenumodlore13);
  2204.         shelpmenumod13Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2205.         shelpmenumod13.setItemMeta(shelpmenumod13Meta);
  2206.  
  2207.         ItemStack shelpmenumod14 = new ItemStack(Material.BOOK, 1);
  2208.         ItemMeta shelpmenumod14Meta = shelpmenumod14.getItemMeta();
  2209.         shelpmenumod14Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [7]" + ChatColor.DARK_PURPLE + " ");
  2210.         ArrayList<String> shelpmenumodlore14 = new ArrayList<String>();
  2211.         shelpmenumodlore14.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2212.         shelpmenumodlore14.add(ChatColor.WHITE + "");
  2213.         shelpmenumodlore14.add(ChatColor.WHITE + "");
  2214.         shelpmenumodlore14.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2215.         shelpmenumod14Meta.setLore(shelpmenumodlore14);
  2216.         shelpmenumod14Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2217.         shelpmenumod14.setItemMeta(shelpmenumod14Meta);
  2218.  
  2219.         ItemStack shelpmenumodempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  2220.         ItemMeta shelpmenumodemptyMeta = shelpmenumodempty.getItemMeta();
  2221.         shelpmenumodemptyMeta.setDisplayName(ChatColor.BLACK + ".");
  2222.         shelpmenumodemptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2223.         shelpmenumodempty.setItemMeta(shelpmenumodemptyMeta);
  2224.  
  2225.         ItemStack shelpmenumodback = new ItemStack(Material.NETHER_STAR, 1);
  2226.         ItemMeta shelpmenumodbackMeta = shelpmenumodback.getItemMeta();
  2227.         shelpmenumodbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  2228.         shelpmenumodbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2229.         shelpmenumodback.setItemMeta(shelpmenumodbackMeta);
  2230.  
  2231.         i.setItem(0, shelpmenumodempty);
  2232.         i.setItem(1, shelpmenumodempty);
  2233.         i.setItem(2, shelpmenumodempty);
  2234.         i.setItem(3, shelpmenumodempty);
  2235.         i.setItem(4, shelpmenumodempty);
  2236.         i.setItem(5, shelpmenumodempty);
  2237.         i.setItem(6, shelpmenumodempty);
  2238.         i.setItem(7, shelpmenumodempty);
  2239.         i.setItem(8, shelpmenumodempty);
  2240.         i.setItem(9, shelpmenumodempty);
  2241.         i.setItem(10, shelpmenumod1);
  2242.         i.setItem(11, shelpmenumod2);
  2243.         i.setItem(12, shelpmenumod3);
  2244.         i.setItem(13, shelpmenumod4);
  2245.         i.setItem(14, shelpmenumod5);
  2246.         i.setItem(15, shelpmenumod6);
  2247.         i.setItem(16, shelpmenumod7);
  2248.         i.setItem(17, shelpmenumodempty);
  2249.         i.setItem(18, shelpmenumodempty);
  2250.         i.setItem(19, shelpmenumod8);
  2251.         i.setItem(20, shelpmenumod9);
  2252.         i.setItem(21, shelpmenumod10);
  2253.         i.setItem(22, shelpmenumod11);
  2254.         i.setItem(23, shelpmenumod12);
  2255.         i.setItem(24, shelpmenumod13);
  2256.         i.setItem(25, shelpmenumod14);
  2257.         i.setItem(26, shelpmenumodempty);
  2258.         i.setItem(27, shelpmenumodback);
  2259.         i.setItem(28, shelpmenumodempty);
  2260.         i.setItem(29, shelpmenumodempty);
  2261.         i.setItem(30, shelpmenumodempty);
  2262.         i.setItem(31, shelpmenumodempty);
  2263.         i.setItem(32, shelpmenumodempty);
  2264.         i.setItem(33, shelpmenumodempty);
  2265.         i.setItem(34, shelpmenumodempty);
  2266.         i.setItem(35, shelpmenumodempty);
  2267.  
  2268.         player.openInventory(i);
  2269.         // Staff Help menu - Mod commands/rules
  2270.     }
  2271.  
  2272.     public void newInventory15(Player player) {
  2273.  
  2274.         Inventory i = plugin.getServer().createInventory(null, 36, ChatColor.DARK_PURPLE + "Atlas"
  2275.                 + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Administrator Menu");
  2276.  
  2277.         ItemStack shelpmenuadmin1 = new ItemStack(Material.EXP_BOTTLE, 1);
  2278.         ItemMeta shelpmenuadmin1Meta = shelpmenuadmin1.getItemMeta();
  2279.         shelpmenuadmin1Meta.setDisplayName(ChatColor.DARK_PURPLE + "Introduction");
  2280.         ArrayList<String> shelpmenuadminlore1 = new ArrayList<String>();
  2281.         shelpmenuadminlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2282.         shelpmenuadminlore1.add(ChatColor.WHITE + "Congratulations you have been awarded the" + ChatColor.DARK_PURPLE
  2283.                 + " Administrator " + ChatColor.WHITE + "rank!");
  2284.         shelpmenuadminlore1.add(ChatColor.WHITE + "This is a big responsibility as this is the route to");
  2285.         shelpmenuadminlore1.add(ChatColor.WHITE + "becoming a full member of the staff team. As you have");
  2286.         shelpmenuadminlore1.add(ChatColor.WHITE + "shown interest in becoming a staff member you need to");
  2287.         shelpmenuadminlore1.add(ChatColor.WHITE + "prove that you can act responsiblely and maturely to be");
  2288.         shelpmenuadminlore1.add(ChatColor.WHITE + "a role model to every player on the server. Listed in this");
  2289.         shelpmenuadminlore1.add(ChatColor.WHITE + "menu are a few commands that you now have access to and");
  2290.         shelpmenuadminlore1.add(ChatColor.WHITE + "some rules which you need to follow. This is not a complete");
  2291.         shelpmenuadminlore1.add(ChatColor.WHITE + "list which can be found in the staff chat if requested if");
  2292.         shelpmenuadminlore1.add(ChatColor.WHITE + "not pinned in the chat. Good Luck!");
  2293.         shelpmenuadminlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2294.         shelpmenuadmin1Meta.setLore(shelpmenuadminlore1);
  2295.         shelpmenuadmin1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2296.         shelpmenuadmin1.setItemMeta(shelpmenuadmin1Meta);
  2297.  
  2298.         ItemStack shelpmenuadmin2 = new ItemStack(Material.PAPER, 1);
  2299.         ItemMeta shelpmenuadmin2Meta = shelpmenuadmin2.getItemMeta();
  2300.         shelpmenuadmin2Meta
  2301.                 .setDisplayName(ChatColor.WHITE + "Command [1]" + ChatColor.DARK_PURPLE + " /kick [player] [reason]");
  2302.         ArrayList<String> shelpmenuadminlore2 = new ArrayList<String>();
  2303.         shelpmenuadminlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2304.         shelpmenuadminlore2.add(ChatColor.WHITE + "");
  2305.         shelpmenuadminlore2.add(ChatColor.WHITE + "");
  2306.         shelpmenuadminlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2307.         shelpmenuadmin2Meta.setLore(shelpmenuadminlore2);
  2308.         shelpmenuadmin2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2309.         shelpmenuadmin2.setItemMeta(shelpmenuadmin2Meta);
  2310.  
  2311.         ItemStack shelpmenuadmin3 = new ItemStack(Material.PAPER, 1);
  2312.         ItemMeta shelpmenuadmin3Meta = shelpmenuadmin3.getItemMeta();
  2313.         shelpmenuadmin3Meta
  2314.                 .setDisplayName(ChatColor.WHITE + "Command [2]" + ChatColor.DARK_PURPLE + " /warn [player] [reason]");
  2315.         ArrayList<String> shelpmenuadminlore3 = new ArrayList<String>();
  2316.         shelpmenuadminlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2317.         shelpmenuadminlore3.add(ChatColor.WHITE + "");
  2318.         shelpmenuadminlore3.add(ChatColor.WHITE + "");
  2319.         shelpmenuadminlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2320.         shelpmenuadmin3Meta.setLore(shelpmenuadminlore3);
  2321.         shelpmenuadmin3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2322.         shelpmenuadmin3.setItemMeta(shelpmenuadmin3Meta);
  2323.  
  2324.         ItemStack shelpmenuadmin4 = new ItemStack(Material.PAPER, 1);
  2325.         ItemMeta shelpmenuadmin4Meta = shelpmenuadmin1.getItemMeta();
  2326.         shelpmenuadmin4Meta.setDisplayName(ChatColor.WHITE + "Command [3]" + ChatColor.DARK_PURPLE + " /");
  2327.         ArrayList<String> shelpmenuadminlore4 = new ArrayList<String>();
  2328.         shelpmenuadminlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2329.         shelpmenuadminlore4.add(ChatColor.WHITE + "");
  2330.         shelpmenuadminlore4.add(ChatColor.WHITE + "");
  2331.         shelpmenuadminlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2332.         shelpmenuadmin4Meta.setLore(shelpmenuadminlore4);
  2333.         shelpmenuadmin4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2334.         shelpmenuadmin4.setItemMeta(shelpmenuadmin4Meta);
  2335.  
  2336.         ItemStack shelpmenuadmin5 = new ItemStack(Material.PAPER, 1);
  2337.         ItemMeta shelpmenuadmin5Meta = shelpmenuadmin5.getItemMeta();
  2338.         shelpmenuadmin5Meta.setDisplayName(ChatColor.WHITE + "Command [4]" + ChatColor.DARK_PURPLE + " /");
  2339.         ArrayList<String> shelpmenuadminlore5 = new ArrayList<String>();
  2340.         shelpmenuadminlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2341.         shelpmenuadminlore5.add(ChatColor.WHITE + "");
  2342.         shelpmenuadminlore5.add(ChatColor.WHITE + "");
  2343.         shelpmenuadminlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2344.         shelpmenuadmin5Meta.setLore(shelpmenuadminlore5);
  2345.         shelpmenuadmin5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2346.         shelpmenuadmin5.setItemMeta(shelpmenuadmin5Meta);
  2347.  
  2348.         ItemStack shelpmenuadmin6 = new ItemStack(Material.PAPER, 1);
  2349.         ItemMeta shelpmenuadmin6Meta = shelpmenuadmin6.getItemMeta();
  2350.         shelpmenuadmin6Meta.setDisplayName(ChatColor.WHITE + "Command [5]" + ChatColor.DARK_PURPLE + " /");
  2351.         ArrayList<String> shelpmenuadminlore6 = new ArrayList<String>();
  2352.         shelpmenuadminlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2353.         shelpmenuadminlore6.add(ChatColor.WHITE + "");
  2354.         shelpmenuadminlore6.add(ChatColor.WHITE + "");
  2355.         shelpmenuadminlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2356.         shelpmenuadmin6Meta.setLore(shelpmenuadminlore6);
  2357.         shelpmenuadmin6Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2358.         shelpmenuadmin6.setItemMeta(shelpmenuadmin6Meta);
  2359.  
  2360.         ItemStack shelpmenuadmin7 = new ItemStack(Material.PAPER, 1);
  2361.         ItemMeta shelpmenuadmin7Meta = shelpmenuadmin7.getItemMeta();
  2362.         shelpmenuadmin7Meta.setDisplayName(ChatColor.WHITE + "Command [6]" + ChatColor.DARK_PURPLE + " /");
  2363.         ArrayList<String> shelpmenuadminlore7 = new ArrayList<String>();
  2364.         shelpmenuadminlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2365.         shelpmenuadminlore7.add(ChatColor.WHITE + "");
  2366.         shelpmenuadminlore7.add(ChatColor.WHITE + "");
  2367.         shelpmenuadminlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2368.         shelpmenuadmin7Meta.setLore(shelpmenuadminlore7);
  2369.         shelpmenuadmin7Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2370.         shelpmenuadmin7.setItemMeta(shelpmenuadmin7Meta);
  2371.  
  2372.         ItemStack shelpmenuadmin8 = new ItemStack(Material.BOOK, 1);
  2373.         ItemMeta shelpmenuadmin8Meta = shelpmenuadmin8.getItemMeta();
  2374.         shelpmenuadmin8Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [1]" + ChatColor.DARK_PURPLE + " ");
  2375.         ArrayList<String> shelpmenuadminlore8 = new ArrayList<String>();
  2376.         shelpmenuadminlore8.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2377.         shelpmenuadminlore8.add(ChatColor.WHITE + "");
  2378.         shelpmenuadminlore8.add(ChatColor.WHITE + "");
  2379.         shelpmenuadminlore8.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2380.         shelpmenuadmin8Meta.setLore(shelpmenuadminlore8);
  2381.         shelpmenuadmin8Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2382.         shelpmenuadmin8.setItemMeta(shelpmenuadmin8Meta);
  2383.  
  2384.         ItemStack shelpmenuadmin9 = new ItemStack(Material.BOOK, 1);
  2385.         ItemMeta shelpmenuadmin9Meta = shelpmenuadmin9.getItemMeta();
  2386.         shelpmenuadmin9Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [2]" + ChatColor.DARK_PURPLE + " ");
  2387.         ArrayList<String> shelpmenuadminlore9 = new ArrayList<String>();
  2388.         shelpmenuadminlore9.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2389.         shelpmenuadminlore9.add(ChatColor.WHITE + "");
  2390.         shelpmenuadminlore9.add(ChatColor.WHITE + "");
  2391.         shelpmenuadminlore9.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2392.         shelpmenuadmin9Meta.setLore(shelpmenuadminlore9);
  2393.         shelpmenuadmin9Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2394.         shelpmenuadmin9.setItemMeta(shelpmenuadmin9Meta);
  2395.  
  2396.         ItemStack shelpmenuadmin10 = new ItemStack(Material.BOOK, 1);
  2397.         ItemMeta shelpmenuadmin10Meta = shelpmenuadmin10.getItemMeta();
  2398.         shelpmenuadmin10Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [3]" + ChatColor.DARK_PURPLE + " ");
  2399.         ArrayList<String> shelpmenuadminlore10 = new ArrayList<String>();
  2400.         shelpmenuadminlore10.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2401.         shelpmenuadminlore10.add(ChatColor.WHITE + "");
  2402.         shelpmenuadminlore10.add(ChatColor.WHITE + "");
  2403.         shelpmenuadminlore10.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2404.         shelpmenuadmin10Meta.setLore(shelpmenuadminlore10);
  2405.         shelpmenuadmin10Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2406.         shelpmenuadmin10.setItemMeta(shelpmenuadmin10Meta);
  2407.  
  2408.         ItemStack shelpmenuadmin11 = new ItemStack(Material.BOOK, 1);
  2409.         ItemMeta shelpmenuadmin11Meta = shelpmenuadmin11.getItemMeta();
  2410.         shelpmenuadmin11Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [4]" + ChatColor.DARK_PURPLE + " ");
  2411.         ArrayList<String> shelpmenuadminlore11 = new ArrayList<String>();
  2412.         shelpmenuadminlore11.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2413.         shelpmenuadminlore11.add(ChatColor.WHITE + "");
  2414.         shelpmenuadminlore11.add(ChatColor.WHITE + "");
  2415.         shelpmenuadminlore11.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2416.         shelpmenuadmin11Meta.setLore(shelpmenuadminlore11);
  2417.         shelpmenuadmin11Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2418.         shelpmenuadmin11.setItemMeta(shelpmenuadmin11Meta);
  2419.  
  2420.         ItemStack shelpmenuadmin12 = new ItemStack(Material.BOOK, 1);
  2421.         ItemMeta shelpmenuadmin12Meta = shelpmenuadmin12.getItemMeta();
  2422.         shelpmenuadmin12Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [5]" + ChatColor.DARK_PURPLE + " ");
  2423.         ArrayList<String> shelpmenuadminlore12 = new ArrayList<String>();
  2424.         shelpmenuadminlore12.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2425.         shelpmenuadminlore12.add(ChatColor.WHITE + "");
  2426.         shelpmenuadminlore12.add(ChatColor.WHITE + "");
  2427.         shelpmenuadminlore12.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2428.         shelpmenuadmin12Meta.setLore(shelpmenuadminlore12);
  2429.         shelpmenuadmin12Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2430.         shelpmenuadmin12.setItemMeta(shelpmenuadmin12Meta);
  2431.  
  2432.         ItemStack shelpmenuadmin13 = new ItemStack(Material.BOOK, 1);
  2433.         ItemMeta shelpmenuadmin13Meta = shelpmenuadmin13.getItemMeta();
  2434.         shelpmenuadmin13Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [6]" + ChatColor.DARK_PURPLE + " ");
  2435.         ArrayList<String> shelpmenuadminlore13 = new ArrayList<String>();
  2436.         shelpmenuadminlore13.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2437.         shelpmenuadminlore13.add(ChatColor.WHITE + "");
  2438.         shelpmenuadminlore13.add(ChatColor.WHITE + "");
  2439.         shelpmenuadminlore13.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2440.         shelpmenuadmin13Meta.setLore(shelpmenuadminlore13);
  2441.         shelpmenuadmin13Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2442.         shelpmenuadmin13.setItemMeta(shelpmenuadmin13Meta);
  2443.  
  2444.         ItemStack shelpmenuadmin14 = new ItemStack(Material.BOOK, 1);
  2445.         ItemMeta shelpmenuadmin14Meta = shelpmenuadmin14.getItemMeta();
  2446.         shelpmenuadmin14Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [7]" + ChatColor.DARK_PURPLE + " ");
  2447.         ArrayList<String> shelpmenuadminlore14 = new ArrayList<String>();
  2448.         shelpmenuadminlore14.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2449.         shelpmenuadminlore14.add(ChatColor.WHITE + "");
  2450.         shelpmenuadminlore14.add(ChatColor.WHITE + "");
  2451.         shelpmenuadminlore14.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2452.         shelpmenuadmin14Meta.setLore(shelpmenuadminlore14);
  2453.         shelpmenuadmin14Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2454.         shelpmenuadmin14.setItemMeta(shelpmenuadmin14Meta);
  2455.  
  2456.         ItemStack shelpmenuadminempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  2457.         ItemMeta shelpmenuadminemptyMeta = shelpmenuadminempty.getItemMeta();
  2458.         shelpmenuadminemptyMeta.setDisplayName(ChatColor.BLACK + ".");
  2459.         shelpmenuadminemptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2460.         shelpmenuadminempty.setItemMeta(shelpmenuadminemptyMeta);
  2461.  
  2462.         ItemStack shelpmenuadminback = new ItemStack(Material.NETHER_STAR, 1);
  2463.         ItemMeta shelpmenuadminbackMeta = shelpmenuadminback.getItemMeta();
  2464.         shelpmenuadminbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  2465.         shelpmenuadminbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2466.         shelpmenuadminback.setItemMeta(shelpmenuadminbackMeta);
  2467.  
  2468.         i.setItem(0, shelpmenuadminempty);
  2469.         i.setItem(1, shelpmenuadminempty);
  2470.         i.setItem(2, shelpmenuadminempty);
  2471.         i.setItem(3, shelpmenuadminempty);
  2472.         i.setItem(4, shelpmenuadminempty);
  2473.         i.setItem(5, shelpmenuadminempty);
  2474.         i.setItem(6, shelpmenuadminempty);
  2475.         i.setItem(7, shelpmenuadminempty);
  2476.         i.setItem(8, shelpmenuadminempty);
  2477.         i.setItem(9, shelpmenuadminempty);
  2478.         i.setItem(10, shelpmenuadmin1);
  2479.         i.setItem(11, shelpmenuadmin2);
  2480.         i.setItem(12, shelpmenuadmin3);
  2481.         i.setItem(13, shelpmenuadmin4);
  2482.         i.setItem(14, shelpmenuadmin5);
  2483.         i.setItem(15, shelpmenuadmin6);
  2484.         i.setItem(16, shelpmenuadmin7);
  2485.         i.setItem(17, shelpmenuadminempty);
  2486.         i.setItem(18, shelpmenuadminempty);
  2487.         i.setItem(19, shelpmenuadmin8);
  2488.         i.setItem(20, shelpmenuadmin9);
  2489.         i.setItem(21, shelpmenuadmin10);
  2490.         i.setItem(22, shelpmenuadmin11);
  2491.         i.setItem(23, shelpmenuadmin12);
  2492.         i.setItem(24, shelpmenuadmin13);
  2493.         i.setItem(25, shelpmenuadmin14);
  2494.         i.setItem(26, shelpmenuadminempty);
  2495.         i.setItem(27, shelpmenuadminback);
  2496.         i.setItem(28, shelpmenuadminempty);
  2497.         i.setItem(29, shelpmenuadminempty);
  2498.         i.setItem(30, shelpmenuadminempty);
  2499.         i.setItem(31, shelpmenuadminempty);
  2500.         i.setItem(32, shelpmenuadminempty);
  2501.         i.setItem(33, shelpmenuadminempty);
  2502.         i.setItem(34, shelpmenuadminempty);
  2503.         i.setItem(35, shelpmenuadminempty);
  2504.  
  2505.         player.openInventory(i);
  2506.         // Staff Help menu - Admin commands/rules
  2507.     }
  2508.  
  2509.     public void newInventory16(Player player) {
  2510.  
  2511.         Inventory i = plugin.getServer().createInventory(null, 36,
  2512.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Operator Menu");
  2513.  
  2514.         ItemStack shelpmenuoperator1 = new ItemStack(Material.EXP_BOTTLE, 1);
  2515.         ItemMeta shelpmenuoperator1Meta = shelpmenuoperator1.getItemMeta();
  2516.         shelpmenuoperator1Meta.setDisplayName(ChatColor.DARK_PURPLE + "Introduction");
  2517.         ArrayList<String> shelpmenuoperatorlore1 = new ArrayList<String>();
  2518.         shelpmenuoperatorlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2519.         shelpmenuoperatorlore1.add(ChatColor.WHITE + "Congratulations you have been awarded the" + ChatColor.DARK_PURPLE
  2520.                 + " Operator " + ChatColor.WHITE + "rank!");
  2521.         shelpmenuoperatorlore1.add(ChatColor.WHITE + "This is a big responsibility as this is the route to");
  2522.         shelpmenuoperatorlore1.add(ChatColor.WHITE + "becoming a full member of the staff team. As you have");
  2523.         shelpmenuoperatorlore1.add(ChatColor.WHITE + "shown interest in becoming a staff member you need to");
  2524.         shelpmenuoperatorlore1.add(ChatColor.WHITE + "prove that you can act responsiblely and maturely to be");
  2525.         shelpmenuoperatorlore1.add(ChatColor.WHITE + "a role model to every player on the server. Listed in this");
  2526.         shelpmenuoperatorlore1.add(ChatColor.WHITE + "menu are a few commands that you now have access to and");
  2527.         shelpmenuoperatorlore1.add(ChatColor.WHITE + "some rules which you need to follow. This is not a complete");
  2528.         shelpmenuoperatorlore1.add(ChatColor.WHITE + "list which can be found in the staff chat if requested if");
  2529.         shelpmenuoperatorlore1.add(ChatColor.WHITE + "not pinned in the chat. Good Luck!");
  2530.         shelpmenuoperatorlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2531.         shelpmenuoperator1Meta.setLore(shelpmenuoperatorlore1);
  2532.         shelpmenuoperator1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2533.         shelpmenuoperator1.setItemMeta(shelpmenuoperator1Meta);
  2534.  
  2535.         ItemStack shelpmenuoperator2 = new ItemStack(Material.PAPER, 1);
  2536.         ItemMeta shelpmenuoperator2Meta = shelpmenuoperator2.getItemMeta();
  2537.         shelpmenuoperator2Meta
  2538.                 .setDisplayName(ChatColor.WHITE + "Command [1]" + ChatColor.DARK_PURPLE + " /kick [player] [reason]");
  2539.         ArrayList<String> shelpmenuoperatorlore2 = new ArrayList<String>();
  2540.         shelpmenuoperatorlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2541.         shelpmenuoperatorlore2.add(ChatColor.WHITE + "");
  2542.         shelpmenuoperatorlore2.add(ChatColor.WHITE + "");
  2543.         shelpmenuoperatorlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2544.         shelpmenuoperator2Meta.setLore(shelpmenuoperatorlore2);
  2545.         shelpmenuoperator2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2546.         shelpmenuoperator2.setItemMeta(shelpmenuoperator2Meta);
  2547.  
  2548.         ItemStack shelpmenuoperator3 = new ItemStack(Material.PAPER, 1);
  2549.         ItemMeta shelpmenuoperator3Meta = shelpmenuoperator3.getItemMeta();
  2550.         shelpmenuoperator3Meta
  2551.                 .setDisplayName(ChatColor.WHITE + "Command [2]" + ChatColor.DARK_PURPLE + " /warn [player] [reason]");
  2552.         ArrayList<String> shelpmenuoperatorlore3 = new ArrayList<String>();
  2553.         shelpmenuoperatorlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2554.         shelpmenuoperatorlore3.add(ChatColor.WHITE + "");
  2555.         shelpmenuoperatorlore3.add(ChatColor.WHITE + "");
  2556.         shelpmenuoperatorlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2557.         shelpmenuoperator3Meta.setLore(shelpmenuoperatorlore3);
  2558.         shelpmenuoperator3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2559.         shelpmenuoperator3.setItemMeta(shelpmenuoperator3Meta);
  2560.  
  2561.         ItemStack shelpmenuoperator4 = new ItemStack(Material.PAPER, 1);
  2562.         ItemMeta shelpmenuoperator4Meta = shelpmenuoperator1.getItemMeta();
  2563.         shelpmenuoperator4Meta.setDisplayName(ChatColor.WHITE + "Command [3]" + ChatColor.DARK_PURPLE + " /");
  2564.         ArrayList<String> shelpmenuoperatorlore4 = new ArrayList<String>();
  2565.         shelpmenuoperatorlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2566.         shelpmenuoperatorlore4.add(ChatColor.WHITE + "");
  2567.         shelpmenuoperatorlore4.add(ChatColor.WHITE + "");
  2568.         shelpmenuoperatorlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2569.         shelpmenuoperator4Meta.setLore(shelpmenuoperatorlore4);
  2570.         shelpmenuoperator4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2571.         shelpmenuoperator4.setItemMeta(shelpmenuoperator4Meta);
  2572.  
  2573.         ItemStack shelpmenuoperator5 = new ItemStack(Material.PAPER, 1);
  2574.         ItemMeta shelpmenuoperator5Meta = shelpmenuoperator5.getItemMeta();
  2575.         shelpmenuoperator5Meta.setDisplayName(ChatColor.WHITE + "Command [4]" + ChatColor.DARK_PURPLE + " /");
  2576.         ArrayList<String> shelpmenuoperatorlore5 = new ArrayList<String>();
  2577.         shelpmenuoperatorlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2578.         shelpmenuoperatorlore5.add(ChatColor.WHITE + "");
  2579.         shelpmenuoperatorlore5.add(ChatColor.WHITE + "");
  2580.         shelpmenuoperatorlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2581.         shelpmenuoperator5Meta.setLore(shelpmenuoperatorlore5);
  2582.         shelpmenuoperator5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2583.         shelpmenuoperator5.setItemMeta(shelpmenuoperator5Meta);
  2584.  
  2585.         ItemStack shelpmenuoperator6 = new ItemStack(Material.PAPER, 1);
  2586.         ItemMeta shelpmenuoperator6Meta = shelpmenuoperator6.getItemMeta();
  2587.         shelpmenuoperator6Meta.setDisplayName(ChatColor.WHITE + "Command [5]" + ChatColor.DARK_PURPLE + " /");
  2588.         ArrayList<String> shelpmenuoperatorlore6 = new ArrayList<String>();
  2589.         shelpmenuoperatorlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2590.         shelpmenuoperatorlore6.add(ChatColor.WHITE + "");
  2591.         shelpmenuoperatorlore6.add(ChatColor.WHITE + "");
  2592.         shelpmenuoperatorlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2593.         shelpmenuoperator6Meta.setLore(shelpmenuoperatorlore6);
  2594.         shelpmenuoperator6Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2595.         shelpmenuoperator6.setItemMeta(shelpmenuoperator6Meta);
  2596.  
  2597.         ItemStack shelpmenuoperator7 = new ItemStack(Material.PAPER, 1);
  2598.         ItemMeta shelpmenuoperator7Meta = shelpmenuoperator7.getItemMeta();
  2599.         shelpmenuoperator7Meta.setDisplayName(ChatColor.WHITE + "Command [6]" + ChatColor.DARK_PURPLE + " /");
  2600.         ArrayList<String> shelpmenuoperatorlore7 = new ArrayList<String>();
  2601.         shelpmenuoperatorlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2602.         shelpmenuoperatorlore7.add(ChatColor.WHITE + "");
  2603.         shelpmenuoperatorlore7.add(ChatColor.WHITE + "");
  2604.         shelpmenuoperatorlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2605.         shelpmenuoperator7Meta.setLore(shelpmenuoperatorlore7);
  2606.         shelpmenuoperator7Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2607.         shelpmenuoperator7.setItemMeta(shelpmenuoperator7Meta);
  2608.  
  2609.         ItemStack shelpmenuoperator8 = new ItemStack(Material.BOOK, 1);
  2610.         ItemMeta shelpmenuoperator8Meta = shelpmenuoperator8.getItemMeta();
  2611.         shelpmenuoperator8Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [1]" + ChatColor.DARK_PURPLE + " ");
  2612.         ArrayList<String> shelpmenuoperatorlore8 = new ArrayList<String>();
  2613.         shelpmenuoperatorlore8.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2614.         shelpmenuoperatorlore8.add(ChatColor.WHITE + "");
  2615.         shelpmenuoperatorlore8.add(ChatColor.WHITE + "");
  2616.         shelpmenuoperatorlore8.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2617.         shelpmenuoperator8Meta.setLore(shelpmenuoperatorlore8);
  2618.         shelpmenuoperator8Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2619.         shelpmenuoperator8.setItemMeta(shelpmenuoperator8Meta);
  2620.  
  2621.         ItemStack shelpmenuoperator9 = new ItemStack(Material.BOOK, 1);
  2622.         ItemMeta shelpmenuoperator9Meta = shelpmenuoperator9.getItemMeta();
  2623.         shelpmenuoperator9Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [2]" + ChatColor.DARK_PURPLE + " ");
  2624.         ArrayList<String> shelpmenuoperatorlore9 = new ArrayList<String>();
  2625.         shelpmenuoperatorlore9.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2626.         shelpmenuoperatorlore9.add(ChatColor.WHITE + "");
  2627.         shelpmenuoperatorlore9.add(ChatColor.WHITE + "");
  2628.         shelpmenuoperatorlore9.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2629.         shelpmenuoperator9Meta.setLore(shelpmenuoperatorlore9);
  2630.         shelpmenuoperator9Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2631.         shelpmenuoperator9.setItemMeta(shelpmenuoperator9Meta);
  2632.  
  2633.         ItemStack shelpmenuoperator10 = new ItemStack(Material.BOOK, 1);
  2634.         ItemMeta shelpmenuoperator10Meta = shelpmenuoperator10.getItemMeta();
  2635.         shelpmenuoperator10Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [3]" + ChatColor.DARK_PURPLE + " ");
  2636.         ArrayList<String> shelpmenuoperatorlore10 = new ArrayList<String>();
  2637.         shelpmenuoperatorlore10.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2638.         shelpmenuoperatorlore10.add(ChatColor.WHITE + "");
  2639.         shelpmenuoperatorlore10.add(ChatColor.WHITE + "");
  2640.         shelpmenuoperatorlore10.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2641.         shelpmenuoperator10Meta.setLore(shelpmenuoperatorlore10);
  2642.         shelpmenuoperator10Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2643.         shelpmenuoperator10.setItemMeta(shelpmenuoperator10Meta);
  2644.  
  2645.         ItemStack shelpmenuoperator11 = new ItemStack(Material.BOOK, 1);
  2646.         ItemMeta shelpmenuoperator11Meta = shelpmenuoperator11.getItemMeta();
  2647.         shelpmenuoperator11Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [4]" + ChatColor.DARK_PURPLE + " ");
  2648.         ArrayList<String> shelpmenuoperatorlore11 = new ArrayList<String>();
  2649.         shelpmenuoperatorlore11.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2650.         shelpmenuoperatorlore11.add(ChatColor.WHITE + "");
  2651.         shelpmenuoperatorlore11.add(ChatColor.WHITE + "");
  2652.         shelpmenuoperatorlore11.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2653.         shelpmenuoperator11Meta.setLore(shelpmenuoperatorlore11);
  2654.         shelpmenuoperator11Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2655.         shelpmenuoperator11.setItemMeta(shelpmenuoperator11Meta);
  2656.  
  2657.         ItemStack shelpmenuoperator12 = new ItemStack(Material.BOOK, 1);
  2658.         ItemMeta shelpmenuoperator12Meta = shelpmenuoperator12.getItemMeta();
  2659.         shelpmenuoperator12Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [5]" + ChatColor.DARK_PURPLE + " ");
  2660.         ArrayList<String> shelpmenuoperatorlore12 = new ArrayList<String>();
  2661.         shelpmenuoperatorlore12.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2662.         shelpmenuoperatorlore12.add(ChatColor.WHITE + "");
  2663.         shelpmenuoperatorlore12.add(ChatColor.WHITE + "");
  2664.         shelpmenuoperatorlore12.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2665.         shelpmenuoperator12Meta.setLore(shelpmenuoperatorlore12);
  2666.         shelpmenuoperator12Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2667.         shelpmenuoperator12.setItemMeta(shelpmenuoperator12Meta);
  2668.  
  2669.         ItemStack shelpmenuoperator13 = new ItemStack(Material.BOOK, 1);
  2670.         ItemMeta shelpmenuoperator13Meta = shelpmenuoperator13.getItemMeta();
  2671.         shelpmenuoperator13Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [6]" + ChatColor.DARK_PURPLE + " ");
  2672.         ArrayList<String> shelpmenuoperatorlore13 = new ArrayList<String>();
  2673.         shelpmenuoperatorlore13.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2674.         shelpmenuoperatorlore13.add(ChatColor.WHITE + "");
  2675.         shelpmenuoperatorlore13.add(ChatColor.WHITE + "");
  2676.         shelpmenuoperatorlore13.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2677.         shelpmenuoperator13Meta.setLore(shelpmenuoperatorlore13);
  2678.         shelpmenuoperator13Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2679.         shelpmenuoperator13.setItemMeta(shelpmenuoperator13Meta);
  2680.  
  2681.         ItemStack shelpmenuoperator14 = new ItemStack(Material.BOOK, 1);
  2682.         ItemMeta shelpmenuoperator14Meta = shelpmenuoperator14.getItemMeta();
  2683.         shelpmenuoperator14Meta.setDisplayName(ChatColor.WHITE + "Rule/Tip [7]" + ChatColor.DARK_PURPLE + " ");
  2684.         ArrayList<String> shelpmenuoperatorlore14 = new ArrayList<String>();
  2685.         shelpmenuoperatorlore14.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2686.         shelpmenuoperatorlore14.add(ChatColor.WHITE + "");
  2687.         shelpmenuoperatorlore14.add(ChatColor.WHITE + "");
  2688.         shelpmenuoperatorlore14.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2689.         shelpmenuoperator14Meta.setLore(shelpmenuoperatorlore14);
  2690.         shelpmenuoperator14Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2691.         shelpmenuoperator14.setItemMeta(shelpmenuoperator14Meta);
  2692.  
  2693.         ItemStack shelpmenuoperatorempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  2694.         ItemMeta shelpmenuoperatoremptyMeta = shelpmenuoperatorempty.getItemMeta();
  2695.         shelpmenuoperatoremptyMeta.setDisplayName(ChatColor.BLACK + ".");
  2696.         shelpmenuoperatoremptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2697.         shelpmenuoperatorempty.setItemMeta(shelpmenuoperatoremptyMeta);
  2698.  
  2699.         ItemStack shelpmenuoperatorback = new ItemStack(Material.NETHER_STAR, 1);
  2700.         ItemMeta shelpmenuoperatorbackMeta = shelpmenuoperatorback.getItemMeta();
  2701.         shelpmenuoperatorbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  2702.         shelpmenuoperatorbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2703.         shelpmenuoperatorback.setItemMeta(shelpmenuoperatorbackMeta);
  2704.  
  2705.         i.setItem(0, shelpmenuoperatorempty);
  2706.         i.setItem(1, shelpmenuoperatorempty);
  2707.         i.setItem(2, shelpmenuoperatorempty);
  2708.         i.setItem(3, shelpmenuoperatorempty);
  2709.         i.setItem(4, shelpmenuoperatorempty);
  2710.         i.setItem(5, shelpmenuoperatorempty);
  2711.         i.setItem(6, shelpmenuoperatorempty);
  2712.         i.setItem(7, shelpmenuoperatorempty);
  2713.         i.setItem(8, shelpmenuoperatorempty);
  2714.         i.setItem(9, shelpmenuoperatorempty);
  2715.         i.setItem(10, shelpmenuoperator1);
  2716.         i.setItem(11, shelpmenuoperator2);
  2717.         i.setItem(12, shelpmenuoperator3);
  2718.         i.setItem(13, shelpmenuoperator4);
  2719.         i.setItem(14, shelpmenuoperator5);
  2720.         i.setItem(15, shelpmenuoperator6);
  2721.         i.setItem(16, shelpmenuoperator7);
  2722.         i.setItem(17, shelpmenuoperatorempty);
  2723.         i.setItem(18, shelpmenuoperatorempty);
  2724.         i.setItem(19, shelpmenuoperator8);
  2725.         i.setItem(20, shelpmenuoperator9);
  2726.         i.setItem(21, shelpmenuoperator10);
  2727.         i.setItem(22, shelpmenuoperator11);
  2728.         i.setItem(23, shelpmenuoperator12);
  2729.         i.setItem(24, shelpmenuoperator13);
  2730.         i.setItem(25, shelpmenuoperator14);
  2731.         i.setItem(26, shelpmenuoperatorempty);
  2732.         i.setItem(27, shelpmenuoperatorback);
  2733.         i.setItem(28, shelpmenuoperatorempty);
  2734.         i.setItem(29, shelpmenuoperatorempty);
  2735.         i.setItem(30, shelpmenuoperatorempty);
  2736.         i.setItem(31, shelpmenuoperatorempty);
  2737.         i.setItem(32, shelpmenuoperatorempty);
  2738.         i.setItem(33, shelpmenuoperatorempty);
  2739.         i.setItem(34, shelpmenuoperatorempty);
  2740.         i.setItem(35, shelpmenuoperatorempty);
  2741.  
  2742.         player.openInventory(i);
  2743.         // Staff Help menu - Operator commands/rules
  2744.     }
  2745.  
  2746.     public void newInventory17(Player player) {
  2747.  
  2748.         Inventory i = plugin.getServer().createInventory(null, 27,
  2749.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Manager Menu");
  2750.  
  2751.         ItemStack shelpmenumanager1 = new ItemStack(Material.EXP_BOTTLE, 1);
  2752.         ItemMeta shelpmenumanager1Meta = shelpmenumanager1.getItemMeta();
  2753.         shelpmenumanager1Meta.setDisplayName(ChatColor.DARK_PURPLE + "Introduction");
  2754.         ArrayList<String> shelpmenumanagerlore1 = new ArrayList<String>();
  2755.         shelpmenumanagerlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2756.         shelpmenumanagerlore1.add(ChatColor.WHITE + "Congratulations you have been awarded the" + ChatColor.DARK_PURPLE
  2757.                 + " Manager " + ChatColor.WHITE + "rank!");
  2758.         shelpmenumanagerlore1.add(ChatColor.WHITE + "This is a big responsibility as this is the route to");
  2759.         shelpmenumanagerlore1.add(ChatColor.WHITE + "becoming a full member of the staff team. As you have");
  2760.         shelpmenumanagerlore1.add(ChatColor.WHITE + "shown interest in becoming a staff member you need to");
  2761.         shelpmenumanagerlore1.add(ChatColor.WHITE + "prove that you can act responsiblely and maturely to be");
  2762.         shelpmenumanagerlore1.add(ChatColor.WHITE + "a role model to every player on the server. Listed in this");
  2763.         shelpmenumanagerlore1.add(ChatColor.WHITE + "menu are a few commands that you now have access to and");
  2764.         shelpmenumanagerlore1.add(ChatColor.WHITE + "some rules which you need to follow. This is not a complete");
  2765.         shelpmenumanagerlore1.add(ChatColor.WHITE + "list which can be found in the staff chat if requested if");
  2766.         shelpmenumanagerlore1.add(ChatColor.WHITE + "not pinned in the chat. Good Luck!");
  2767.         shelpmenumanagerlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2768.         shelpmenumanager1Meta.setLore(shelpmenumanagerlore1);
  2769.         shelpmenumanager1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2770.         shelpmenumanager1.setItemMeta(shelpmenumanager1Meta);
  2771.  
  2772.         ItemStack shelpmenumanager2 = new ItemStack(Material.PAPER, 1);
  2773.         ItemMeta shelpmenumanager2Meta = shelpmenumanager2.getItemMeta();
  2774.         shelpmenumanager2Meta
  2775.                 .setDisplayName(ChatColor.WHITE + "Command [1]" + ChatColor.DARK_PURPLE + " /kick [player] [reason]");
  2776.         ArrayList<String> shelpmenumanagerlore2 = new ArrayList<String>();
  2777.         shelpmenumanagerlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2778.         shelpmenumanagerlore2.add(ChatColor.WHITE + "");
  2779.         shelpmenumanagerlore2.add(ChatColor.WHITE + "");
  2780.         shelpmenumanagerlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2781.         shelpmenumanager2Meta.setLore(shelpmenumanagerlore2);
  2782.         shelpmenumanager2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2783.         shelpmenumanager2.setItemMeta(shelpmenumanager2Meta);
  2784.  
  2785.         ItemStack shelpmenumanager3 = new ItemStack(Material.PAPER, 1);
  2786.         ItemMeta shelpmenumanager3Meta = shelpmenumanager3.getItemMeta();
  2787.         shelpmenumanager3Meta
  2788.                 .setDisplayName(ChatColor.WHITE + "Command [2]" + ChatColor.DARK_PURPLE + " /warn [player] [reason]");
  2789.         ArrayList<String> shelpmenumanagerlore3 = new ArrayList<String>();
  2790.         shelpmenumanagerlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2791.         shelpmenumanagerlore3.add(ChatColor.WHITE + "");
  2792.         shelpmenumanagerlore3.add(ChatColor.WHITE + "");
  2793.         shelpmenumanagerlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2794.         shelpmenumanager3Meta.setLore(shelpmenumanagerlore3);
  2795.         shelpmenumanager3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2796.         shelpmenumanager3.setItemMeta(shelpmenumanager3Meta);
  2797.  
  2798.         ItemStack shelpmenumanager4 = new ItemStack(Material.PAPER, 1);
  2799.         ItemMeta shelpmenumanager4Meta = shelpmenumanager1.getItemMeta();
  2800.         shelpmenumanager4Meta.setDisplayName(ChatColor.WHITE + "Command [3]" + ChatColor.DARK_PURPLE + "  /");
  2801.         ArrayList<String> shelpmenumanagerlore4 = new ArrayList<String>();
  2802.         shelpmenumanagerlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2803.         shelpmenumanagerlore4.add(ChatColor.WHITE + "");
  2804.         shelpmenumanagerlore4.add(ChatColor.WHITE + "");
  2805.         shelpmenumanagerlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2806.         shelpmenumanager4Meta.setLore(shelpmenumanagerlore4);
  2807.         shelpmenumanager4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2808.         shelpmenumanager4.setItemMeta(shelpmenumanager4Meta);
  2809.  
  2810.         ItemStack shelpmenumanager5 = new ItemStack(Material.PAPER, 1);
  2811.         ItemMeta shelpmenumanager5Meta = shelpmenumanager5.getItemMeta();
  2812.         shelpmenumanager5Meta.setDisplayName(ChatColor.WHITE + "Command [4]" + ChatColor.DARK_PURPLE + " /");
  2813.         ArrayList<String> shelpmenumanagerlore5 = new ArrayList<String>();
  2814.         shelpmenumanagerlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2815.         shelpmenumanagerlore5.add(ChatColor.WHITE + "");
  2816.         shelpmenumanagerlore5.add(ChatColor.WHITE + "");
  2817.         shelpmenumanagerlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2818.         shelpmenumanager5Meta.setLore(shelpmenumanagerlore5);
  2819.         shelpmenumanager5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2820.         shelpmenumanager5.setItemMeta(shelpmenumanager5Meta);
  2821.  
  2822.         ItemStack shelpmenumanager6 = new ItemStack(Material.PAPER, 1);
  2823.         ItemMeta shelpmenumanager6Meta = shelpmenumanager6.getItemMeta();
  2824.         shelpmenumanager6Meta.setDisplayName(ChatColor.WHITE + "Command [5]" + ChatColor.DARK_PURPLE + " /");
  2825.         ArrayList<String> shelpmenumanagerlore6 = new ArrayList<String>();
  2826.         shelpmenumanagerlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2827.         shelpmenumanagerlore6.add(ChatColor.WHITE + "");
  2828.         shelpmenumanagerlore6.add(ChatColor.WHITE + "");
  2829.         shelpmenumanagerlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2830.         shelpmenumanager6Meta.setLore(shelpmenumanagerlore6);
  2831.         shelpmenumanager6Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2832.         shelpmenumanager6.setItemMeta(shelpmenumanager6Meta);
  2833.  
  2834.         ItemStack shelpmenumanager7 = new ItemStack(Material.PAPER, 1);
  2835.         ItemMeta shelpmenumanager7Meta = shelpmenumanager7.getItemMeta();
  2836.         shelpmenumanager7Meta.setDisplayName(ChatColor.WHITE + "Command [6]" + ChatColor.DARK_PURPLE + " /");
  2837.         ArrayList<String> shelpmenumanagerlore7 = new ArrayList<String>();
  2838.         shelpmenumanagerlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2839.         shelpmenumanagerlore7.add(ChatColor.WHITE + "");
  2840.         shelpmenumanagerlore7.add(ChatColor.WHITE + "");
  2841.         shelpmenumanagerlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2842.         shelpmenumanager7Meta.setLore(shelpmenumanagerlore7);
  2843.         shelpmenumanager7Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2844.         shelpmenumanager7.setItemMeta(shelpmenumanager7Meta);
  2845.  
  2846.         ItemStack shelpmenumanagerempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  2847.         ItemMeta shelpmenumanageremptyMeta = shelpmenumanagerempty.getItemMeta();
  2848.         shelpmenumanageremptyMeta.setDisplayName(ChatColor.BLACK + ".");
  2849.         shelpmenumanageremptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2850.         shelpmenumanagerempty.setItemMeta(shelpmenumanageremptyMeta);
  2851.  
  2852.         ItemStack shelpmenumanagerback = new ItemStack(Material.NETHER_STAR, 1);
  2853.         ItemMeta shelpmenumanagerbackMeta = shelpmenumanagerback.getItemMeta();
  2854.         shelpmenumanagerbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  2855.         shelpmenumanagerbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2856.         shelpmenumanagerback.setItemMeta(shelpmenumanagerbackMeta);
  2857.  
  2858.         i.setItem(0, shelpmenumanagerempty);
  2859.         i.setItem(1, shelpmenumanagerempty);
  2860.         i.setItem(2, shelpmenumanagerempty);
  2861.         i.setItem(3, shelpmenumanagerempty);
  2862.         i.setItem(4, shelpmenumanagerempty);
  2863.         i.setItem(5, shelpmenumanagerempty);
  2864.         i.setItem(6, shelpmenumanagerempty);
  2865.         i.setItem(7, shelpmenumanagerempty);
  2866.         i.setItem(8, shelpmenumanagerempty);
  2867.         i.setItem(9, shelpmenumanagerempty);
  2868.         i.setItem(10, shelpmenumanager1);
  2869.         i.setItem(11, shelpmenumanager2);
  2870.         i.setItem(12, shelpmenumanager3);
  2871.         i.setItem(13, shelpmenumanager4);
  2872.         i.setItem(14, shelpmenumanager5);
  2873.         i.setItem(15, shelpmenumanager6);
  2874.         i.setItem(16, shelpmenumanager7);
  2875.         i.setItem(17, shelpmenumanagerempty);
  2876.         i.setItem(18, shelpmenumanagerback);
  2877.         i.setItem(19, shelpmenumanagerempty);
  2878.         i.setItem(20, shelpmenumanagerempty);
  2879.         i.setItem(21, shelpmenumanagerempty);
  2880.         i.setItem(22, shelpmenumanagerempty);
  2881.         i.setItem(23, shelpmenumanagerempty);
  2882.         i.setItem(24, shelpmenumanagerempty);
  2883.         i.setItem(25, shelpmenumanagerempty);
  2884.         i.setItem(26, shelpmenumanagerempty);
  2885.  
  2886.         player.openInventory(i);
  2887.         // Staff Help menu - Manager commands/rules
  2888.     }
  2889.  
  2890.     public void newInventory18(Player player) {
  2891.  
  2892.         Inventory i = plugin.getServer().createInventory(null, 27,
  2893.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Developer Menu");
  2894.  
  2895.         ItemStack shelpmenudev1 = new ItemStack(Material.EXP_BOTTLE, 1);
  2896.         ItemMeta shelpmenudev1Meta = shelpmenudev1.getItemMeta();
  2897.         shelpmenudev1Meta.setDisplayName(ChatColor.DARK_PURPLE + "Introduction");
  2898.         ArrayList<String> shelpmenudevlore1 = new ArrayList<String>();
  2899.         shelpmenudevlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2900.         shelpmenudevlore1.add(ChatColor.WHITE + "Congratulations you have been awarded the" + ChatColor.DARK_PURPLE
  2901.                 + " Developer " + ChatColor.WHITE + "rank!");
  2902.         shelpmenudevlore1.add(ChatColor.WHITE + "This is a big responsibility as this is the route to");
  2903.         shelpmenudevlore1.add(ChatColor.WHITE + "becoming a full member of the staff team. As you have");
  2904.         shelpmenudevlore1.add(ChatColor.WHITE + "shown interest in becoming a staff member you need to");
  2905.         shelpmenudevlore1.add(ChatColor.WHITE + "prove that you can act responsiblely and maturely to be");
  2906.         shelpmenudevlore1.add(ChatColor.WHITE + "a role model to every player on the server. Listed in this");
  2907.         shelpmenudevlore1.add(ChatColor.WHITE + "menu are a few commands that you now have access to and");
  2908.         shelpmenudevlore1.add(ChatColor.WHITE + "some rules which you need to follow. This is not a complete");
  2909.         shelpmenudevlore1.add(ChatColor.WHITE + "list which can be found in the staff chat if requested if");
  2910.         shelpmenudevlore1.add(ChatColor.WHITE + "not pinned in the chat. Good Luck!");
  2911.         shelpmenudevlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2912.         shelpmenudev1Meta.setLore(shelpmenudevlore1);
  2913.         shelpmenudev1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2914.         shelpmenudev1.setItemMeta(shelpmenudev1Meta);
  2915.  
  2916.         ItemStack shelpmenudev2 = new ItemStack(Material.PAPER, 1);
  2917.         ItemMeta shelpmenudev2Meta = shelpmenudev2.getItemMeta();
  2918.         shelpmenudev2Meta
  2919.                 .setDisplayName(ChatColor.WHITE + "Command [1]" + ChatColor.DARK_PURPLE + " /kick [player] [reason]");
  2920.         ArrayList<String> shelpmenudevlore2 = new ArrayList<String>();
  2921.         shelpmenudevlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2922.         shelpmenudevlore2.add(ChatColor.WHITE + "");
  2923.         shelpmenudevlore2.add(ChatColor.WHITE + "");
  2924.         shelpmenudevlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2925.         shelpmenudev2Meta.setLore(shelpmenudevlore2);
  2926.         shelpmenudev2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2927.         shelpmenudev2.setItemMeta(shelpmenudev2Meta);
  2928.  
  2929.         ItemStack shelpmenudev3 = new ItemStack(Material.PAPER, 1);
  2930.         ItemMeta shelpmenudev3Meta = shelpmenudev3.getItemMeta();
  2931.         shelpmenudev3Meta
  2932.                 .setDisplayName(ChatColor.WHITE + "Command [2]" + ChatColor.DARK_PURPLE + " /warn [player] [reason]");
  2933.         ArrayList<String> shelpmenudevlore3 = new ArrayList<String>();
  2934.         shelpmenudevlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2935.         shelpmenudevlore3.add(ChatColor.WHITE + "");
  2936.         shelpmenudevlore3.add(ChatColor.WHITE + "");
  2937.         shelpmenudevlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2938.         shelpmenudev3Meta.setLore(shelpmenudevlore3);
  2939.         shelpmenudev3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2940.         shelpmenudev3.setItemMeta(shelpmenudev3Meta);
  2941.  
  2942.         ItemStack shelpmenudev4 = new ItemStack(Material.PAPER, 1);
  2943.         ItemMeta shelpmenudev4Meta = shelpmenudev1.getItemMeta();
  2944.         shelpmenudev4Meta.setDisplayName(ChatColor.WHITE + "Command [3]" + ChatColor.DARK_PURPLE + "  /");
  2945.         ArrayList<String> shelpmenudevlore4 = new ArrayList<String>();
  2946.         shelpmenudevlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2947.         shelpmenudevlore4.add(ChatColor.WHITE + "");
  2948.         shelpmenudevlore4.add(ChatColor.WHITE + "");
  2949.         shelpmenudevlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2950.         shelpmenudev4Meta.setLore(shelpmenudevlore4);
  2951.         shelpmenudev4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2952.         shelpmenudev4.setItemMeta(shelpmenudev4Meta);
  2953.  
  2954.         ItemStack shelpmenudev5 = new ItemStack(Material.PAPER, 1);
  2955.         ItemMeta shelpmenudev5Meta = shelpmenudev5.getItemMeta();
  2956.         shelpmenudev5Meta.setDisplayName(ChatColor.WHITE + "Command [4]" + ChatColor.DARK_PURPLE + " /");
  2957.         ArrayList<String> shelpmenudevlore5 = new ArrayList<String>();
  2958.         shelpmenudevlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2959.         shelpmenudevlore5.add(ChatColor.WHITE + "");
  2960.         shelpmenudevlore5.add(ChatColor.WHITE + "");
  2961.         shelpmenudevlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2962.         shelpmenudev5Meta.setLore(shelpmenudevlore5);
  2963.         shelpmenudev5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2964.         shelpmenudev5.setItemMeta(shelpmenudev5Meta);
  2965.  
  2966.         ItemStack shelpmenudev6 = new ItemStack(Material.PAPER, 1);
  2967.         ItemMeta shelpmenudev6Meta = shelpmenudev6.getItemMeta();
  2968.         shelpmenudev6Meta.setDisplayName(ChatColor.WHITE + "Command [5]" + ChatColor.DARK_PURPLE + " /");
  2969.         ArrayList<String> shelpmenudevlore6 = new ArrayList<String>();
  2970.         shelpmenudevlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2971.         shelpmenudevlore6.add(ChatColor.WHITE + "");
  2972.         shelpmenudevlore6.add(ChatColor.WHITE + "");
  2973.         shelpmenudevlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2974.         shelpmenudev6Meta.setLore(shelpmenudevlore6);
  2975.         shelpmenudev6Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2976.         shelpmenudev6.setItemMeta(shelpmenudev6Meta);
  2977.  
  2978.         ItemStack shelpmenudev7 = new ItemStack(Material.PAPER, 1);
  2979.         ItemMeta shelpmenudev7Meta = shelpmenudev7.getItemMeta();
  2980.         shelpmenudev7Meta.setDisplayName(ChatColor.WHITE + "Command [6]" + ChatColor.DARK_PURPLE + " /");
  2981.         ArrayList<String> shelpmenudevlore7 = new ArrayList<String>();
  2982.         shelpmenudevlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2983.         shelpmenudevlore7.add(ChatColor.WHITE + "");
  2984.         shelpmenudevlore7.add(ChatColor.WHITE + "");
  2985.         shelpmenudevlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  2986.         shelpmenudev7Meta.setLore(shelpmenudevlore7);
  2987.         shelpmenudev7Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2988.         shelpmenudev7.setItemMeta(shelpmenudev7Meta);
  2989.  
  2990.         ItemStack shelpmenudevempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  2991.         ItemMeta shelpmenudevemptyMeta = shelpmenudevempty.getItemMeta();
  2992.         shelpmenudevemptyMeta.setDisplayName(ChatColor.BLACK + ".");
  2993.         shelpmenudevemptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  2994.         shelpmenudevempty.setItemMeta(shelpmenudevemptyMeta);
  2995.  
  2996.         ItemStack shelpmenudevback = new ItemStack(Material.NETHER_STAR, 1);
  2997.         ItemMeta shelpmenudevbackMeta = shelpmenudevback.getItemMeta();
  2998.         shelpmenudevbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  2999.         shelpmenudevbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3000.         shelpmenudevback.setItemMeta(shelpmenudevbackMeta);
  3001.  
  3002.         i.setItem(0, shelpmenudevempty);
  3003.         i.setItem(1, shelpmenudevempty);
  3004.         i.setItem(2, shelpmenudevempty);
  3005.         i.setItem(3, shelpmenudevempty);
  3006.         i.setItem(4, shelpmenudevempty);
  3007.         i.setItem(5, shelpmenudevempty);
  3008.         i.setItem(6, shelpmenudevempty);
  3009.         i.setItem(7, shelpmenudevempty);
  3010.         i.setItem(8, shelpmenudevempty);
  3011.         i.setItem(9, shelpmenudevempty);
  3012.         i.setItem(10, shelpmenudev1);
  3013.         i.setItem(11, shelpmenudev2);
  3014.         i.setItem(12, shelpmenudev3);
  3015.         i.setItem(13, shelpmenudev4);
  3016.         i.setItem(14, shelpmenudev5);
  3017.         i.setItem(15, shelpmenudev6);
  3018.         i.setItem(16, shelpmenudev7);
  3019.         i.setItem(17, shelpmenudevempty);
  3020.         i.setItem(18, shelpmenudevback);
  3021.         i.setItem(19, shelpmenudevempty);
  3022.         i.setItem(20, shelpmenudevempty);
  3023.         i.setItem(21, shelpmenudevempty);
  3024.         i.setItem(22, shelpmenudevempty);
  3025.         i.setItem(23, shelpmenudevempty);
  3026.         i.setItem(24, shelpmenudevempty);
  3027.         i.setItem(25, shelpmenudevempty);
  3028.         i.setItem(26, shelpmenudevempty);
  3029.  
  3030.         player.openInventory(i);
  3031.         // Staff Help menu - Developer commands/rules
  3032.     }
  3033.  
  3034.     public void newInventory19(Player player) {
  3035.  
  3036.         Inventory i = plugin.getServer().createInventory(null, 27,
  3037.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " Owner Menu");
  3038.  
  3039.         ItemStack shelpmenuowner1 = new ItemStack(Material.EXP_BOTTLE, 1);
  3040.         ItemMeta shelpmenuowner1Meta = shelpmenuowner1.getItemMeta();
  3041.         shelpmenuowner1Meta.setDisplayName(ChatColor.DARK_PURPLE + "Introduction");
  3042.         ArrayList<String> shelpmenuownerlore1 = new ArrayList<String>();
  3043.         shelpmenuownerlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  3044.         shelpmenuownerlore1.add(ChatColor.WHITE + "Congratulations you have been awarded the" + ChatColor.DARK_PURPLE
  3045.                 + " Owner " + ChatColor.WHITE + "rank!");
  3046.         shelpmenuownerlore1.add(ChatColor.WHITE + "This is a big responsibility as this is the route to");
  3047.         shelpmenuownerlore1.add(ChatColor.WHITE + "becoming a full member of the staff team. As you have");
  3048.         shelpmenuownerlore1.add(ChatColor.WHITE + "shown interest in becoming a staff member you need to");
  3049.         shelpmenuownerlore1.add(ChatColor.WHITE + "prove that you can act responsiblely and maturely to be");
  3050.         shelpmenuownerlore1.add(ChatColor.WHITE + "a role model to every player on the server. Listed in this");
  3051.         shelpmenuownerlore1.add(ChatColor.WHITE + "menu are a few commands that you now have access to and");
  3052.         shelpmenuownerlore1.add(ChatColor.WHITE + "some rules which you need to follow. This is not a complete");
  3053.         shelpmenuownerlore1.add(ChatColor.WHITE + "list which can be found in the staff chat if requested if");
  3054.         shelpmenuownerlore1.add(ChatColor.WHITE + "not pinned in the chat. Good Luck!");
  3055.         shelpmenuownerlore1.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  3056.         shelpmenuowner1Meta.setLore(shelpmenuownerlore1);
  3057.         shelpmenuowner1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3058.         shelpmenuowner1.setItemMeta(shelpmenuowner1Meta);
  3059.  
  3060.         ItemStack shelpmenuowner2 = new ItemStack(Material.PAPER, 1);
  3061.         ItemMeta shelpmenuowner2Meta = shelpmenuowner2.getItemMeta();
  3062.         shelpmenuowner2Meta
  3063.                 .setDisplayName(ChatColor.WHITE + "Command [1]" + ChatColor.DARK_PURPLE + " /kick [player] [reason]");
  3064.         ArrayList<String> shelpmenuownerlore2 = new ArrayList<String>();
  3065.         shelpmenuownerlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  3066.         shelpmenuownerlore2.add(ChatColor.WHITE + "");
  3067.         shelpmenuownerlore2.add(ChatColor.WHITE + "");
  3068.         shelpmenuownerlore2.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  3069.         shelpmenuowner2Meta.setLore(shelpmenuownerlore2);
  3070.         shelpmenuowner2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3071.         shelpmenuowner2.setItemMeta(shelpmenuowner2Meta);
  3072.  
  3073.         ItemStack shelpmenuowner3 = new ItemStack(Material.PAPER, 1);
  3074.         ItemMeta shelpmenuowner3Meta = shelpmenuowner3.getItemMeta();
  3075.         shelpmenuowner3Meta
  3076.                 .setDisplayName(ChatColor.WHITE + "Command [2]" + ChatColor.DARK_PURPLE + " /warn [player] [reason]");
  3077.         ArrayList<String> shelpmenuownerlore3 = new ArrayList<String>();
  3078.         shelpmenuownerlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  3079.         shelpmenuownerlore3.add(ChatColor.WHITE + "");
  3080.         shelpmenuownerlore3.add(ChatColor.WHITE + "");
  3081.         shelpmenuownerlore3.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  3082.         shelpmenuowner3Meta.setLore(shelpmenuownerlore3);
  3083.         shelpmenuowner3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3084.         shelpmenuowner3.setItemMeta(shelpmenuowner3Meta);
  3085.  
  3086.         ItemStack shelpmenuowner4 = new ItemStack(Material.PAPER, 1);
  3087.         ItemMeta shelpmenuowner4Meta = shelpmenuowner1.getItemMeta();
  3088.         shelpmenuowner4Meta.setDisplayName(ChatColor.WHITE + "Command [3]" + ChatColor.DARK_PURPLE + "  /");
  3089.         ArrayList<String> shelpmenuownerlore4 = new ArrayList<String>();
  3090.         shelpmenuownerlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  3091.         shelpmenuownerlore4.add(ChatColor.WHITE + "");
  3092.         shelpmenuownerlore4.add(ChatColor.WHITE + "");
  3093.         shelpmenuownerlore4.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  3094.         shelpmenuowner4Meta.setLore(shelpmenuownerlore4);
  3095.         shelpmenuowner4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3096.         shelpmenuowner4.setItemMeta(shelpmenuowner4Meta);
  3097.  
  3098.         ItemStack shelpmenuowner5 = new ItemStack(Material.PAPER, 1);
  3099.         ItemMeta shelpmenuowner5Meta = shelpmenuowner5.getItemMeta();
  3100.         shelpmenuowner5Meta.setDisplayName(ChatColor.WHITE + "Command [4]" + ChatColor.DARK_PURPLE + " /");
  3101.         ArrayList<String> shelpmenuownerlore5 = new ArrayList<String>();
  3102.         shelpmenuownerlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  3103.         shelpmenuownerlore5.add(ChatColor.WHITE + "");
  3104.         shelpmenuownerlore5.add(ChatColor.WHITE + "");
  3105.         shelpmenuownerlore5.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  3106.         shelpmenuowner5Meta.setLore(shelpmenuownerlore5);
  3107.         shelpmenuowner5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3108.         shelpmenuowner5.setItemMeta(shelpmenuowner5Meta);
  3109.  
  3110.         ItemStack shelpmenuowner6 = new ItemStack(Material.PAPER, 1);
  3111.         ItemMeta shelpmenuowner6Meta = shelpmenuowner6.getItemMeta();
  3112.         shelpmenuowner6Meta.setDisplayName(ChatColor.WHITE + "Command [5]" + ChatColor.DARK_PURPLE + " /");
  3113.         ArrayList<String> shelpmenuownerlore6 = new ArrayList<String>();
  3114.         shelpmenuownerlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  3115.         shelpmenuownerlore6.add(ChatColor.WHITE + "");
  3116.         shelpmenuownerlore6.add(ChatColor.WHITE + "");
  3117.         shelpmenuownerlore6.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  3118.         shelpmenuowner6Meta.setLore(shelpmenuownerlore6);
  3119.         shelpmenuowner6Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3120.         shelpmenuowner6.setItemMeta(shelpmenuowner6Meta);
  3121.  
  3122.         ItemStack shelpmenuowner7 = new ItemStack(Material.PAPER, 1);
  3123.         ItemMeta shelpmenuowner7Meta = shelpmenuowner7.getItemMeta();
  3124.         shelpmenuowner7Meta.setDisplayName(ChatColor.WHITE + "Command [6]" + ChatColor.DARK_PURPLE + " /");
  3125.         ArrayList<String> shelpmenuownerlore7 = new ArrayList<String>();
  3126.         shelpmenuownerlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  3127.         shelpmenuownerlore7.add(ChatColor.WHITE + "");
  3128.         shelpmenuownerlore7.add(ChatColor.WHITE + "");
  3129.         shelpmenuownerlore7.add(ChatColor.LIGHT_PURPLE + "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=");
  3130.         shelpmenuowner7Meta.setLore(shelpmenuownerlore7);
  3131.         shelpmenuowner7Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3132.         shelpmenuowner7.setItemMeta(shelpmenuowner7Meta);
  3133.  
  3134.         ItemStack shelpmenuownerempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  3135.         ItemMeta shelpmenuowneremptyMeta = shelpmenuownerempty.getItemMeta();
  3136.         shelpmenuowneremptyMeta.setDisplayName(ChatColor.BLACK + ".");
  3137.         shelpmenuowneremptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3138.         shelpmenuownerempty.setItemMeta(shelpmenuowneremptyMeta);
  3139.  
  3140.         ItemStack shelpmenuownerback = new ItemStack(Material.NETHER_STAR, 1);
  3141.         ItemMeta shelpmenuownerbackMeta = shelpmenuownerback.getItemMeta();
  3142.         shelpmenuownerbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  3143.         shelpmenuownerbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3144.         shelpmenuownerback.setItemMeta(shelpmenuownerbackMeta);
  3145.  
  3146.         i.setItem(0, shelpmenuownerempty);
  3147.         i.setItem(1, shelpmenuownerempty);
  3148.         i.setItem(2, shelpmenuownerempty);
  3149.         i.setItem(3, shelpmenuownerempty);
  3150.         i.setItem(4, shelpmenuownerempty);
  3151.         i.setItem(5, shelpmenuownerempty);
  3152.         i.setItem(6, shelpmenuownerempty);
  3153.         i.setItem(7, shelpmenuownerempty);
  3154.         i.setItem(8, shelpmenuownerempty);
  3155.         i.setItem(9, shelpmenuownerempty);
  3156.         i.setItem(10, shelpmenuowner1);
  3157.         i.setItem(11, shelpmenuowner2);
  3158.         i.setItem(12, shelpmenuowner3);
  3159.         i.setItem(13, shelpmenuowner4);
  3160.         i.setItem(14, shelpmenuowner5);
  3161.         i.setItem(15, shelpmenuowner6);
  3162.         i.setItem(16, shelpmenuowner7);
  3163.         i.setItem(17, shelpmenuownerempty);
  3164.         i.setItem(18, shelpmenuownerback);
  3165.         i.setItem(19, shelpmenuownerempty);
  3166.         i.setItem(20, shelpmenuownerempty);
  3167.         i.setItem(21, shelpmenuownerempty);
  3168.         i.setItem(22, shelpmenuownerempty);
  3169.         i.setItem(23, shelpmenuownerempty);
  3170.         i.setItem(24, shelpmenuownerempty);
  3171.         i.setItem(25, shelpmenuownerempty);
  3172.         i.setItem(26, shelpmenuownerempty);
  3173.  
  3174.         player.openInventory(i);
  3175.         // Staff Help menu - Owner commands/rules
  3176.     }
  3177.  
  3178.     public void newInventory20(Player player) {
  3179.  
  3180.         Inventory i = plugin.getServer().createInventory(null, 27,
  3181.                 ChatColor.DARK_PURPLE + "Atlas" + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " CI Admin Menu");
  3182.  
  3183.         ItemStack cimenucore1 = new ItemStack(Material.PAPER, 1);
  3184.         ItemMeta cimenucore1Meta = cimenucore1.getItemMeta();
  3185.         cimenucore1Meta.setDisplayName(ChatColor.DARK_PURPLE + "Custom Items");
  3186.         cimenucore1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3187.         cimenucore1.setItemMeta(cimenucore1Meta);
  3188.  
  3189.         ItemStack cimenucore2 = new ItemStack(Material.PAPER, 1);
  3190.         ItemMeta cimenucore2Meta = cimenucore2.getItemMeta();
  3191.         cimenucore2Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematics");
  3192.         cimenucore2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3193.         cimenucore2.setItemMeta(cimenucore2Meta);
  3194.  
  3195.         ItemStack cimenucoreempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  3196.         ItemMeta cimenucoreemptyMeta = cimenucoreempty.getItemMeta();
  3197.         cimenucoreemptyMeta.setDisplayName(ChatColor.BLACK + ".");
  3198.         cimenucoreemptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3199.         cimenucoreempty.setItemMeta(cimenucoreemptyMeta);
  3200.  
  3201.         i.setItem(0, cimenucoreempty);
  3202.         i.setItem(1, cimenucoreempty);
  3203.         i.setItem(2, cimenucoreempty);
  3204.         i.setItem(3, cimenucoreempty);
  3205.         i.setItem(4, cimenucoreempty);
  3206.         i.setItem(5, cimenucoreempty);
  3207.         i.setItem(6, cimenucoreempty);
  3208.         i.setItem(7, cimenucoreempty);
  3209.         i.setItem(8, cimenucoreempty);
  3210.         i.setItem(9, cimenucoreempty);
  3211.         i.setItem(10, cimenucoreempty);
  3212.         i.setItem(11, cimenucore1);
  3213.         i.setItem(12, cimenucoreempty);
  3214.         i.setItem(13, cimenucoreempty);
  3215.         i.setItem(14, cimenucoreempty);
  3216.         i.setItem(15, cimenucore2);
  3217.         i.setItem(16, cimenucoreempty);
  3218.         i.setItem(17, cimenucoreempty);
  3219.         i.setItem(18, cimenucoreempty);
  3220.         i.setItem(19, cimenucoreempty);
  3221.         i.setItem(20, cimenucoreempty);
  3222.         i.setItem(21, cimenucoreempty);
  3223.         i.setItem(22, cimenucoreempty);
  3224.         i.setItem(23, cimenucoreempty);
  3225.         i.setItem(24, cimenucoreempty);
  3226.         i.setItem(25, cimenucoreempty);
  3227.         i.setItem(26, cimenucoreempty);
  3228.  
  3229.         player.openInventory(i);
  3230.         // CI admin menu
  3231.     }
  3232.  
  3233.     public void newInventory21(Player player) {
  3234.  
  3235.         Inventory i = plugin.getServer().createInventory(null, 45, ChatColor.DARK_PURPLE + "Atlas"
  3236.                 + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " CI CI Menu");
  3237.  
  3238.         ItemStack cimenuitems1 = new ItemStack(Material.PAPER, 1);
  3239.         ItemMeta cimenuitems1Meta = cimenuitems1.getItemMeta();
  3240.         cimenuitems1Meta.setDisplayName(ChatColor.DARK_PURPLE + "Custom Item 1");
  3241.         cimenuitems1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3242.         cimenuitems1.setItemMeta(cimenuitems1Meta);
  3243.  
  3244.         ItemStack cimenuitems2 = new ItemStack(Material.PAPER, 1);
  3245.         ItemMeta cimenuitems2Meta = cimenuitems2.getItemMeta();
  3246.         cimenuitems2Meta.setDisplayName(ChatColor.DARK_PURPLE + "Custom Item 2");
  3247.         cimenuitems2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3248.         cimenuitems2.setItemMeta(cimenuitems2Meta);
  3249.  
  3250.         ItemStack cimenuitems3 = new ItemStack(Material.PAPER, 1);
  3251.         ItemMeta cimenuitems3Meta = cimenuitems3.getItemMeta();
  3252.         cimenuitems3Meta.setDisplayName(ChatColor.DARK_PURPLE + "Custom Item 3");
  3253.         cimenuitems3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3254.         cimenuitems3.setItemMeta(cimenuitems3Meta);
  3255.  
  3256.         ItemStack cimenuitems4 = new ItemStack(Material.PAPER, 1);
  3257.         ItemMeta cimenuitems4Meta = cimenuitems4.getItemMeta();
  3258.         cimenuitems4Meta.setDisplayName(ChatColor.DARK_PURPLE + "Custom Item 4");
  3259.         cimenuitems4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3260.         cimenuitems4.setItemMeta(cimenuitems4Meta);
  3261.  
  3262.         ItemStack cimenuitems5 = new ItemStack(Material.PAPER, 1);
  3263.         ItemMeta cimenuitems5Meta = cimenuitems5.getItemMeta();
  3264.         cimenuitems5Meta.setDisplayName(ChatColor.DARK_PURPLE + "Custom Item 5");
  3265.         cimenuitems5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3266.         cimenuitems5.setItemMeta(cimenuitems5Meta);
  3267.  
  3268.         ItemStack cimenuitems6 = new ItemStack(Material.PAPER, 1);
  3269.         ItemMeta cimenuitems6Meta = cimenuitems6.getItemMeta();
  3270.         cimenuitems6Meta.setDisplayName(ChatColor.DARK_PURPLE + "Custom Item 6");
  3271.         cimenuitems6Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3272.         cimenuitems6.setItemMeta(cimenuitems6Meta);
  3273.  
  3274.         ItemStack cimenuitems7 = new ItemStack(Material.PAPER, 1);
  3275.         ItemMeta cimenuitems7Meta = cimenuitems7.getItemMeta();
  3276.         cimenuitems7Meta.setDisplayName(ChatColor.DARK_PURPLE + "Custom Item 7");
  3277.         cimenuitems7Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3278.         cimenuitems7.setItemMeta(cimenuitems7Meta);
  3279.  
  3280.         ItemStack cimenuitems8 = new ItemStack(Material.PAPER, 1);
  3281.         ItemMeta cimenuitems8Meta = cimenuitems8.getItemMeta();
  3282.         cimenuitems8Meta.setDisplayName(ChatColor.DARK_PURPLE + "Custom Item 8");
  3283.         cimenuitems8Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3284.         cimenuitems8.setItemMeta(cimenuitems8Meta);
  3285.  
  3286.         ItemStack cimenuitems9 = new ItemStack(Material.PAPER, 1);
  3287.         ItemMeta cimenuitems9Meta = cimenuitems9.getItemMeta();
  3288.         cimenuitems9Meta.setDisplayName(ChatColor.DARK_PURPLE + "Custom Item 9");
  3289.         cimenuitems9Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3290.         cimenuitems9.setItemMeta(cimenuitems9Meta);
  3291.  
  3292.         ItemStack cimenuitems10 = new ItemStack(Material.PAPER, 1);
  3293.         ItemMeta cimenuitems10Meta = cimenuitems10.getItemMeta();
  3294.         cimenuitems10Meta.setDisplayName(ChatColor.DARK_PURPLE + "Custom Item 10");
  3295.         cimenuitems10Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3296.         cimenuitems10.setItemMeta(cimenuitems10Meta);
  3297.  
  3298.         ItemStack cimenuitems11 = new ItemStack(Material.PAPER, 1);
  3299.         ItemMeta cimenuitems11Meta = cimenuitems11.getItemMeta();
  3300.         cimenuitems11Meta.setDisplayName(ChatColor.DARK_PURPLE + "Custom Item 11");
  3301.         cimenuitems11Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3302.         cimenuitems11.setItemMeta(cimenuitems11Meta);
  3303.  
  3304.         ItemStack cimenuitems12 = new ItemStack(Material.PAPER, 1);
  3305.         ItemMeta cimenuitems12Meta = cimenuitems12.getItemMeta();
  3306.         cimenuitems12Meta.setDisplayName(ChatColor.DARK_PURPLE + "Custom Item 12");
  3307.         cimenuitems12Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3308.         cimenuitems12.setItemMeta(cimenuitems12Meta);
  3309.  
  3310.         ItemStack cimenuitems13 = new ItemStack(Material.PAPER, 1);
  3311.         ItemMeta cimenuitems13Meta = cimenuitems13.getItemMeta();
  3312.         cimenuitems13Meta.setDisplayName(ChatColor.DARK_PURPLE + "Custom Item 13");
  3313.         cimenuitems13Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3314.         cimenuitems13.setItemMeta(cimenuitems13Meta);
  3315.  
  3316.         ItemStack cimenuitems14 = new ItemStack(Material.PAPER, 1);
  3317.         ItemMeta cimenuitems14Meta = cimenuitems14.getItemMeta();
  3318.         cimenuitems14Meta.setDisplayName(ChatColor.DARK_PURPLE + "Custom Item 14");
  3319.         cimenuitems14Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3320.         cimenuitems14.setItemMeta(cimenuitems14Meta);
  3321.  
  3322.         ItemStack cimenuitems15 = new ItemStack(Material.PAPER, 1);
  3323.         ItemMeta cimenuitems15Meta = cimenuitems15.getItemMeta();
  3324.         cimenuitems15Meta.setDisplayName(ChatColor.DARK_PURPLE + "Custom Item 15");
  3325.         cimenuitems15Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3326.         cimenuitems15.setItemMeta(cimenuitems15Meta);
  3327.  
  3328.         ItemStack cimenuitems16 = new ItemStack(Material.PAPER, 1);
  3329.         ItemMeta cimenuitems16Meta = cimenuitems16.getItemMeta();
  3330.         cimenuitems16Meta.setDisplayName(ChatColor.DARK_PURPLE + "[TBD]");
  3331.         cimenuitems16Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3332.         cimenuitems16.setItemMeta(cimenuitems16Meta);
  3333.  
  3334.         ItemStack cimenuitemsempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  3335.         ItemMeta cimenuitemsemptyMeta = cimenuitemsempty.getItemMeta();
  3336.         cimenuitemsemptyMeta.setDisplayName(ChatColor.BLACK + ".");
  3337.         cimenuitemsemptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3338.         cimenuitemsempty.setItemMeta(cimenuitemsemptyMeta);
  3339.  
  3340.         ItemStack cimenuitemsback = new ItemStack(Material.NETHER_STAR, 1);
  3341.         ItemMeta cimenuitemsbackMeta = cimenuitemsback.getItemMeta();
  3342.         cimenuitemsbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  3343.         cimenuitemsbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3344.         cimenuitemsback.setItemMeta(cimenuitemsbackMeta);
  3345.  
  3346.         i.setItem(0, cimenuitemsempty);
  3347.         i.setItem(1, cimenuitemsempty);
  3348.         i.setItem(2, cimenuitemsempty);
  3349.         i.setItem(3, cimenuitemsempty);
  3350.         i.setItem(4, cimenuitemsempty);
  3351.         i.setItem(5, cimenuitemsempty);
  3352.         i.setItem(6, cimenuitemsempty);
  3353.         i.setItem(7, cimenuitemsempty);
  3354.         i.setItem(8, cimenuitemsempty);
  3355.         i.setItem(9, cimenuitemsempty);
  3356.         i.setItem(10, cimenuitems1);
  3357.         i.setItem(11, cimenuitems2);
  3358.         i.setItem(12, cimenuitems3);
  3359.         i.setItem(13, cimenuitems4);
  3360.         i.setItem(14, cimenuitems5);
  3361.         i.setItem(15, cimenuitems6);
  3362.         i.setItem(16, cimenuitems7);
  3363.         i.setItem(17, cimenuitemsempty);
  3364.         i.setItem(18, cimenuitemsempty);
  3365.         i.setItem(19, cimenuitems8);
  3366.         i.setItem(20, cimenuitems9);
  3367.         i.setItem(21, cimenuitems10);
  3368.         i.setItem(22, cimenuitems11);
  3369.         i.setItem(23, cimenuitems12);
  3370.         i.setItem(24, cimenuitems13);
  3371.         i.setItem(25, cimenuitems14);
  3372.         i.setItem(26, cimenuitemsempty);
  3373.         i.setItem(27, cimenuitemsempty);
  3374.         i.setItem(28, cimenuitems15);
  3375.         i.setItem(29, cimenuitemsempty);
  3376.         i.setItem(30, cimenuitemsempty);
  3377.         i.setItem(31, cimenuitemsempty);
  3378.         i.setItem(32, cimenuitemsempty);
  3379.         i.setItem(33, cimenuitemsempty);
  3380.         i.setItem(34, cimenuitemsempty);
  3381.         i.setItem(35, cimenuitemsempty);
  3382.         i.setItem(36, cimenuitemsback);
  3383.         i.setItem(37, cimenuitemsempty);
  3384.         i.setItem(38, cimenuitemsempty);
  3385.         i.setItem(39, cimenuitemsempty);
  3386.         i.setItem(40, cimenuitemsempty);
  3387.         i.setItem(41, cimenuitemsempty);
  3388.         i.setItem(42, cimenuitemsempty);
  3389.         i.setItem(43, cimenuitemsempty);
  3390.         i.setItem(44, cimenuitemsempty);
  3391.  
  3392.         player.openInventory(i);
  3393.         // CI admin menu - custom items
  3394.     }
  3395.  
  3396.     public void newInventory22(Player player) {
  3397.  
  3398.         Inventory i = plugin.getServer().createInventory(null, 45, ChatColor.DARK_PURPLE + "Atlas"
  3399.                 + ChatColor.LIGHT_PURPLE + "MC" + ChatColor.WHITE + " CI Schematics Menu");
  3400.  
  3401.         ItemStack cimenuschematics1 = new ItemStack(Material.PAPER, 1);
  3402.         ItemMeta cimenuschematics1Meta = cimenuschematics1.getItemMeta();
  3403.         cimenuschematics1Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 1");
  3404.         cimenuschematics1Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3405.         cimenuschematics1.setItemMeta(cimenuschematics1Meta);
  3406.  
  3407.         ItemStack cimenuschematics2 = new ItemStack(Material.PAPER, 1);
  3408.         ItemMeta cimenuschematics2Meta = cimenuschematics2.getItemMeta();
  3409.         cimenuschematics2Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 2");
  3410.         cimenuschematics2Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3411.         cimenuschematics2.setItemMeta(cimenuschematics2Meta);
  3412.  
  3413.         ItemStack cimenuschematics3 = new ItemStack(Material.PAPER, 1);
  3414.         ItemMeta cimenuschematics3Meta = cimenuschematics3.getItemMeta();
  3415.         cimenuschematics3Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 3");
  3416.         cimenuschematics3Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3417.         cimenuschematics3.setItemMeta(cimenuschematics3Meta);
  3418.  
  3419.         ItemStack cimenuschematics4 = new ItemStack(Material.PAPER, 1);
  3420.         ItemMeta cimenuschematics4Meta = cimenuschematics4.getItemMeta();
  3421.         cimenuschematics4Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 4");
  3422.         cimenuschematics4Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3423.         cimenuschematics4.setItemMeta(cimenuschematics4Meta);
  3424.  
  3425.         ItemStack cimenuschematics5 = new ItemStack(Material.PAPER, 1);
  3426.         ItemMeta cimenuschematics5Meta = cimenuschematics5.getItemMeta();
  3427.         cimenuschematics5Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 5");
  3428.         cimenuschematics5Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3429.         cimenuschematics5.setItemMeta(cimenuschematics5Meta);
  3430.  
  3431.         ItemStack cimenuschematics6 = new ItemStack(Material.PAPER, 1);
  3432.         ItemMeta cimenuschematics6Meta = cimenuschematics6.getItemMeta();
  3433.         cimenuschematics6Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 6");
  3434.         cimenuschematics6Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3435.         cimenuschematics6.setItemMeta(cimenuschematics6Meta);
  3436.  
  3437.         ItemStack cimenuschematics7 = new ItemStack(Material.PAPER, 1);
  3438.         ItemMeta cimenuschematics7Meta = cimenuschematics7.getItemMeta();
  3439.         cimenuschematics7Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 7");
  3440.         cimenuschematics7Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3441.         cimenuschematics7.setItemMeta(cimenuschematics7Meta);
  3442.  
  3443.         ItemStack cimenuschematics8 = new ItemStack(Material.PAPER, 1);
  3444.         ItemMeta cimenuschematics8Meta = cimenuschematics8.getItemMeta();
  3445.         cimenuschematics8Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 8");
  3446.         cimenuschematics8Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3447.         cimenuschematics8.setItemMeta(cimenuschematics8Meta);
  3448.  
  3449.         ItemStack cimenuschematics9 = new ItemStack(Material.PAPER, 1);
  3450.         ItemMeta cimenuschematics9Meta = cimenuschematics9.getItemMeta();
  3451.         cimenuschematics9Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 9");
  3452.         cimenuschematics9Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3453.         cimenuschematics9.setItemMeta(cimenuschematics9Meta);
  3454.  
  3455.         ItemStack cimenuschematics10 = new ItemStack(Material.PAPER, 1);
  3456.         ItemMeta cimenuschematics10Meta = cimenuschematics10.getItemMeta();
  3457.         cimenuschematics10Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 10");
  3458.         cimenuschematics10Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3459.         cimenuschematics10.setItemMeta(cimenuschematics10Meta);
  3460.  
  3461.         ItemStack cimenuschematics11 = new ItemStack(Material.PAPER, 1);
  3462.         ItemMeta cimenuschematics11Meta = cimenuschematics11.getItemMeta();
  3463.         cimenuschematics11Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 11");
  3464.         cimenuschematics11Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3465.         cimenuschematics11.setItemMeta(cimenuschematics11Meta);
  3466.  
  3467.         ItemStack cimenuschematics12 = new ItemStack(Material.PAPER, 1);
  3468.         ItemMeta cimenuschematics12Meta = cimenuschematics12.getItemMeta();
  3469.         cimenuschematics12Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 12");
  3470.         cimenuschematics12Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3471.         cimenuschematics12.setItemMeta(cimenuschematics12Meta);
  3472.  
  3473.         ItemStack cimenuschematics13 = new ItemStack(Material.PAPER, 1);
  3474.         ItemMeta cimenuschematics13Meta = cimenuschematics13.getItemMeta();
  3475.         cimenuschematics13Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 13");
  3476.         cimenuschematics13Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3477.         cimenuschematics13.setItemMeta(cimenuschematics13Meta);
  3478.  
  3479.         ItemStack cimenuschematics14 = new ItemStack(Material.PAPER, 1);
  3480.         ItemMeta cimenuschematics14Meta = cimenuschematics14.getItemMeta();
  3481.         cimenuschematics14Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 14");
  3482.         cimenuschematics14Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3483.         cimenuschematics14.setItemMeta(cimenuschematics14Meta);
  3484.  
  3485.         ItemStack cimenuschematics15 = new ItemStack(Material.PAPER, 1);
  3486.         ItemMeta cimenuschematics15Meta = cimenuschematics15.getItemMeta();
  3487.         cimenuschematics15Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 15");
  3488.         cimenuschematics15Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3489.         cimenuschematics15.setItemMeta(cimenuschematics15Meta);
  3490.  
  3491.         ItemStack cimenuschematics16 = new ItemStack(Material.PAPER, 1);
  3492.         ItemMeta cimenuschematics16Meta = cimenuschematics16.getItemMeta();
  3493.         cimenuschematics16Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 16");
  3494.         cimenuschematics16Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3495.         cimenuschematics16.setItemMeta(cimenuschematics16Meta);
  3496.  
  3497.         ItemStack cimenuschematics17 = new ItemStack(Material.PAPER, 1);
  3498.         ItemMeta cimenuschematics17Meta = cimenuschematics17.getItemMeta();
  3499.         cimenuschematics17Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 17");
  3500.         cimenuschematics17Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3501.         cimenuschematics17.setItemMeta(cimenuschematics17Meta);
  3502.  
  3503.         ItemStack cimenuschematics18 = new ItemStack(Material.PAPER, 1);
  3504.         ItemMeta cimenuschematics18Meta = cimenuschematics18.getItemMeta();
  3505.         cimenuschematics18Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 18");
  3506.         cimenuschematics18Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3507.         cimenuschematics18.setItemMeta(cimenuschematics18Meta);
  3508.  
  3509.         ItemStack cimenuschematics19 = new ItemStack(Material.PAPER, 1);
  3510.         ItemMeta cimenuschematics19Meta = cimenuschematics19.getItemMeta();
  3511.         cimenuschematics19Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 19");
  3512.         cimenuschematics19Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3513.         cimenuschematics19.setItemMeta(cimenuschematics19Meta);
  3514.  
  3515.         ItemStack cimenuschematics20 = new ItemStack(Material.PAPER, 1);
  3516.         ItemMeta cimenuschematics20Meta = cimenuschematics20.getItemMeta();
  3517.         cimenuschematics20Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 20");
  3518.         cimenuschematics20Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3519.         cimenuschematics20.setItemMeta(cimenuschematics20Meta);
  3520.  
  3521.         ItemStack cimenuschematics21 = new ItemStack(Material.PAPER, 1);
  3522.         ItemMeta cimenuschematics21Meta = cimenuschematics21.getItemMeta();
  3523.         cimenuschematics21Meta.setDisplayName(ChatColor.DARK_PURPLE + "Schematic 21");
  3524.         cimenuschematics21Meta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3525.         cimenuschematics21.setItemMeta(cimenuschematics21Meta);
  3526.  
  3527.         ItemStack cimenuschematicsempty = new ItemStack(Material.STAINED_GLASS_PANE, 1, (byte) 15);
  3528.         ItemMeta cimenuschematicsemptyMeta = cimenuschematicsempty.getItemMeta();
  3529.         cimenuschematicsemptyMeta.setDisplayName(ChatColor.BLACK + ".");
  3530.         cimenuschematicsemptyMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3531.         cimenuschematicsempty.setItemMeta(cimenuschematicsemptyMeta);
  3532.  
  3533.         ItemStack cimenuschematicsback = new ItemStack(Material.NETHER_STAR, 1);
  3534.         ItemMeta cimenuschematicsbackMeta = cimenuschematicsback.getItemMeta();
  3535.         cimenuschematicsbackMeta.setDisplayName(ChatColor.WHITE + "Go Back");
  3536.         cimenuschematicsbackMeta.addItemFlags(ItemFlag.HIDE_ATTRIBUTES);
  3537.         cimenuschematicsback.setItemMeta(cimenuschematicsbackMeta);
  3538.  
  3539.         i.setItem(0, cimenuschematicsempty);
  3540.         i.setItem(1, cimenuschematicsempty);
  3541.         i.setItem(2, cimenuschematicsempty);
  3542.         i.setItem(3, cimenuschematicsempty);
  3543.         i.setItem(4, cimenuschematicsempty);
  3544.         i.setItem(5, cimenuschematicsempty);
  3545.         i.setItem(6, cimenuschematicsempty);
  3546.         i.setItem(7, cimenuschematicsempty);
  3547.         i.setItem(8, cimenuschematicsempty);
  3548.         i.setItem(9, cimenuschematicsempty);
  3549.         i.setItem(10, cimenuschematics1);
  3550.         i.setItem(11, cimenuschematics2);
  3551.         i.setItem(12, cimenuschematics3);
  3552.         i.setItem(13, cimenuschematics4);
  3553.         i.setItem(14, cimenuschematics5);
  3554.         i.setItem(15, cimenuschematics6);
  3555.         i.setItem(16, cimenuschematics7);
  3556.         i.setItem(17, cimenuschematicsempty);
  3557.         i.setItem(18, cimenuschematicsempty);
  3558.         i.setItem(19, cimenuschematics8);
  3559.         i.setItem(20, cimenuschematics9);
  3560.         i.setItem(21, cimenuschematics10);
  3561.         i.setItem(22, cimenuschematics11);
  3562.         i.setItem(23, cimenuschematics12);
  3563.         i.setItem(24, cimenuschematics13);
  3564.         i.setItem(25, cimenuschematics14);
  3565.         i.setItem(26, cimenuschematicsempty);
  3566.         i.setItem(27, cimenuschematicsempty);
  3567.         i.setItem(28, cimenuschematics15);
  3568.         i.setItem(29, cimenuschematics16);
  3569.         i.setItem(30, cimenuschematics17);
  3570.         i.setItem(31, cimenuschematics18);
  3571.         i.setItem(32, cimenuschematics19);
  3572.         i.setItem(33, cimenuschematics20);
  3573.         i.setItem(34, cimenuschematics21);
  3574.         i.setItem(35, cimenuschematicsempty);
  3575.         i.setItem(36, cimenuschematicsback);
  3576.         i.setItem(37, cimenuschematicsempty);
  3577.         i.setItem(38, cimenuschematicsempty);
  3578.         i.setItem(39, cimenuschematicsempty);
  3579.         i.setItem(40, cimenuschematicsempty);
  3580.         i.setItem(41, cimenuschematicsempty);
  3581.         i.setItem(42, cimenuschematicsempty);
  3582.         i.setItem(43, cimenuschematicsempty);
  3583.         i.setItem(44, cimenuschematicsempty);
  3584.  
  3585.         player.openInventory(i);
  3586.         // CI admin menu - Schematics
  3587.     }
  3588.  
  3589. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement