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

TradeWait() public static method

Sends TradeWait to creature's client.
public static TradeWait ( Creature creature, int milliseconds ) : void
creature Creature
milliseconds int
return void
		public static void TradeWait(Creature creature, int milliseconds)
		{
			var packet = new Packet(Op.TradeWait, creature.EntityId);
			packet.PutInt(milliseconds);

			creature.Client.Send(packet);
		}
Send