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

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


                {
                  temp = new L2DamageZone(zoneId);
                }
                else if(zoneType.equals("Arena"))
                {
                  temp = new L2ArenaZone(zoneId);
                }
                else if(zoneType.equals("MotherTree"))
                {
                  temp = new L2MotherTreeZone(zoneId);
                }
View Full Code Here


          return new Location(_pointsWithKarmas[closest][0], _pointsWithKarmas[closest][1], _pointsWithKarmas[closest][2]);
        return new Location(17817, 170079, -3530);
      }

      // Checking if in arena
      L2ArenaZone arena = ArenaManager.getInstance().getArena(player);
      if(arena != null)
      {
        coord = arena.getSpawnLoc();
        return new Location(coord[0], coord[1], coord[2]);
      }
     
      L2ChaoticZone chaotic = ChaoticManager.getInstance().getChaotic(player);
      if(chaotic != null)
View Full Code Here

TOP

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

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.