Examples of ConditionPlayerResidence


Examples of lineage2.gameserver.stats.conditions.ConditionPlayerResidence

      String name = attribute.getName();
      String value = attribute.getValue();
      if (name.equalsIgnoreCase("residence"))
      {
        String[] st = value.split(";");
        cond = joinAnd(cond, new ConditionPlayerResidence(Integer.parseInt(st[1]), ResidenceType.valueOf(st[0])));
      }
      else if (name.equalsIgnoreCase("classId"))
      {
        cond = joinAnd(cond, new ConditionPlayerClassId(value.split(",")));
      }
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.