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

SkillCompleteUnk() public static method

Sends SkillComplete to creature's client.
public static SkillCompleteUnk ( Creature creature, SkillId skillId, long entityId, int unkInt, short unkShort ) : void
creature Creature
skillId SkillId
entityId long
unkInt int
unkShort short
return void
		public static void SkillCompleteUnk(Creature creature, SkillId skillId, long entityId, int unkInt, short unkShort)
		{
			var packet = new Packet(Op.SkillCompleteUnk, creature.EntityId);
			packet.PutUShort((ushort)skillId);
			packet.PutLong(entityId);
			packet.PutInt(unkInt);
			packet.PutShort(unkShort);

			creature.Client.Send(packet);
		}
Send