Package com.epicsagaonline.bukkit.EpicGates.objects

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


      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

Related Classes of com.epicsagaonline.bukkit.EpicGates.objects.EpicGatesWorld

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.