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

SkillReady() public static method

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

			creature.Client.Send(packet);
		}

Same methods

Send::SkillReady ( Creature creature, SkillId skillId, string extra = "" ) : void
Send