Package com.l2jfrozen.gameserver.model

Examples of com.l2jfrozen.gameserver.model.L2Territory


        //final String terr = "sql_terr_" + rset.getString("loc_id");
        final int terr = rset.getInt("loc_id");
       
        if(_territory.get(terr) == null)
        {
          L2Territory t = new L2Territory();
          _territory.put(terr, t);
        }
        _territory.get(terr).add(rset.getInt("loc_x"), rset.getInt("loc_y"), rset.getInt("loc_zmin"), rset.getInt("loc_zmax"), rset.getInt("proc"));
      }
     
View Full Code Here


    getStat(); // init stats
    getStatus(); // init status
    _doorId = doorId;
    _name = name;
    _unlockable = unlockable;
    pos = new L2Territory(/*"door_" + doorId*/);
  }
 
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.model.L2Territory

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.