Aura.Channel.Network.Sending.Send.CombatUsedSkill C# (CSharp) Method

CombatUsedSkill() public static method

Sends CombatUsedSkill to creature's client.
public static CombatUsedSkill ( Creature creature, SkillId skillId ) : void
creature Aura.Channel.World.Entities.Creature
skillId SkillId
return void
		public static void CombatUsedSkill(Creature creature, SkillId skillId)
		{
			var packet = new Packet(Op.CombatUsedSkill, creature.EntityId);
			packet.PutUShort((ushort)skillId);

			creature.Client.Send(packet);
		}
Send