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

NpcShopBuyItemR() public static method

Sends ShopBuyItemR to creature's client.
public static NpcShopBuyItemR ( Creature creature, bool success ) : void
creature Creature
success bool
return void
		public static void NpcShopBuyItemR(Creature creature, bool success)
		{
			var packet = new Packet(Op.NpcShopBuyItemR, creature.EntityId);
			if (!success)
				packet.PutByte(success);

			creature.Client.Send(packet);
		}
Send