Examples of EpicGatesWorld


Examples of com.epicsagaonline.bukkit.EpicGates.objects.EpicGatesWorld

  {
    if (EpicGates.permissions.hasPermission(sender, "epicgates.admin", true, true))
    {
      if (args.length > 1)
      {
        EpicGatesWorld egw = new EpicGatesWorld(args[1]);
        sender.sendMessage("Creating New World: " + args[1]);
        if (args.length > 2 && args[2].equalsIgnoreCase("nether"))
        {
          General.plugin.getServer().createWorld(args[1], Environment.NETHER);
          egw.environment = Environment.NETHER;
View Full Code Here

Examples of com.epicsagaonline.bukkit.EpicGates.objects.EpicGatesWorld

      Map<String, ConfigurationNode> nodes = getNodes("additionalWorlds");
      if (nodes != null)
      {
        for (String worldName : nodes.keySet())
        {
          EpicGatesWorld egw = new EpicGatesWorld(worldName);
          if (nodes.get(worldName).getString("environment").equalsIgnoreCase("nether"))
          {
            egw.environment = Environment.NETHER;
          }
          else
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.