Examples of revalidateInZone()


Examples of net.sf.l2j.gameserver.model.zone.type.L2DynamicZone.revalidateInZone()

    zone.setZone(new ZoneCylinder(activeChar.getX(),activeChar.getY(), activeChar.getZ()-200,
        activeChar.getZ()+200, skill.getSkillRadius()));

        region.addZone(zone);
        for(L2Character c : activeChar.getKnownList().getKnownCharacters())
          zone.revalidateInZone(c);
        zone.revalidateInZone(activeChar);
    }

    @Override
  public SkillType[] getSkillIds() {
View Full Code Here

Examples of net.sf.l2j.gameserver.model.zone.type.L2DynamicZone.revalidateInZone()

        activeChar.getZ()+200, skill.getSkillRadius()));

        region.addZone(zone);
        for(L2Character c : activeChar.getKnownList().getKnownCharacters())
          zone.revalidateInZone(c);
        zone.revalidateInZone(activeChar);
    }

    @Override
  public SkillType[] getSkillIds() {
        return SKILL_IDS;
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.