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

PersonalShopCustomerPriceUpdate() public static method

Sends PersonalShopCustomerPriceUpdate to creature's client.
public static PersonalShopCustomerPriceUpdate ( Creature creature, long itemEntityId, int price ) : void
creature Creature
itemEntityId long
price int
return void
		public static void PersonalShopCustomerPriceUpdate(Creature creature, long itemEntityId, int price)
		{
			var packet = new Packet(Op.PersonalShopCustomerPriceUpdate, creature.EntityId);
			packet.PutLong(itemEntityId);
			packet.PutInt(price);

			creature.Client.Send(packet);
		}
Send