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

SkillUse() public static method

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

			creature.Client.Send(packet);
		}

Same methods

Send::SkillUse ( Creature creature, SkillId skillId, byte unkByte ) : void
Send::SkillUse ( Creature creature, SkillId skillId, int unkInt ) : void
Send::SkillUse ( Creature creature, SkillId skillId, long entityId, bool unk1, string unk2 ) : void
Send::SkillUse ( Creature creature, SkillId skillId, long entityId, int unk1 ) : void
Send::SkillUse ( Creature creature, SkillId skillId, long entityId, int unk1, int unk2 ) : void
Send::SkillUse ( Creature creature, SkillId skillId, long entityId1, long entityId2 ) : void
Send::SkillUse ( Creature creature, SkillId skillId, string dict ) : void
Send