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

OpenShopRemotelyR() public static method

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

			creature.Client.Send(packet);
		}
Send