Package com.l2jfrozen.gameserver.model.zone.type

Examples of com.l2jfrozen.gameserver.model.zone.type.L2ClanHallZone


                {
                  temp = new L2FishingZone(zoneId);
                }
                else if(zoneType.equals("ClanHallZone"))
                {
                  temp = new L2ClanHallZone(zoneId);
                }
                else if(zoneType.equals("PeaceZone"))
                {
                  temp = new L2PeaceZone(zoneId);
                }
View Full Code Here


        {

          clanhall = ClanHallManager.getInstance().getClanHallByOwner(player.getClan());
          if(clanhall != null)
          {
            L2ClanHallZone zone = clanhall.getZone();
            if(zone != null)
              return zone.getSpawn();
          }
        }

        // If teleport to castle
        if(teleportWhere == TeleportWhereType.Castle)
View Full Code Here

      {
        clanhall.openCloseDoors(false);
      }
      else if(command.equalsIgnoreCase("admin_clanhallteleportself"))
      {
        L2ClanHallZone zone = clanhall.getZone();

        if(zone != null)
        {
          activeChar.teleToLocation(zone.getSpawn(), true);
        }

        zone = null;
      }
      else if(command.equalsIgnoreCase("admin_spawn_doors"))
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.model.zone.type.L2ClanHallZone

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.