Package lineage2.gameserver.model.entity.olympiad

Examples of lineage2.gameserver.model.entity.olympiad.OlympiadGame.addDamage()


    if (isInOlympiadMode())
    {
      OlympiadGame game = _olympiadGame;
      if ((this != attacker) && ((skill == null) || skill.isOffensive()))
      {
        game.addDamage(this, Math.min(hp, damage));
      }
      if ((hp - damage) <= 1)
      {
        if (game.getType() != CompType.TEAM)
        {
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.