Examples of onUseHolyWater()


Examples of npc.model.HellboundRemnantInstance.onUseHolyWater()

    {
      player.sendPacket(SystemMsg.THAT_IS_AN_INCORRECT_TARGET);
      return false;
    }
    player.broadcastPacket(new MagicSkillUse(player, npc, 2358, 1, 0, 0));
    npc.onUseHolyWater(player);
    return true;
  }
}
View Full Code Here

Examples of npc.model.HellboundRemnantInstance.onUseHolyWater()

    {
      playable.sendPacket(Msg.THAT_IS_THE_INCORRECT_TARGET);
      return;
    }
    playable.broadcastPacket(new MagicSkillUse(playable, target, 2358, 1, 0, 0));
    target.onUseHolyWater(playable);
  }

  public final int[] getItemIds()
  {
    return _itemIds;
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.