Examples of ConditionPlayerHasBuff


Examples of l2p.gameserver.skills.conditions.ConditionPlayerHasBuff

        int level = -1;
        if(st.hasMoreTokens())
        {
          level = Integer.parseInt(st.nextToken().trim());
        }
        cond = joinAnd(cond, new ConditionPlayerHasBuff(et, level));
      }
      else if("noble".equalsIgnoreCase(nodeName))
      {
        cond = joinAnd(cond, new ConditionNoble(a.getNodeValue()));
      }
View Full Code Here

Examples of lineage2.gameserver.stats.conditions.ConditionPlayerHasBuff

        int level = -1;
        if (st.hasMoreTokens())
        {
          level = Integer.parseInt(st.nextToken().trim());
        }
        cond = joinAnd(cond, new ConditionPlayerHasBuff(et, level));
      }
      else if ("damage".equalsIgnoreCase(nodeName))
      {
        String[] st = a.getNodeValue().split(";");
        cond = joinAnd(cond, new ConditionPlayerMinMaxDamage(Double.parseDouble(st[0]), Double.parseDouble(st[1])));
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.