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

BankWithdrawGoldR() public static method

Sends BankWithdrawGoldR to creature's client.
public static BankWithdrawGoldR ( Creature creature, bool success ) : void
creature Aura.Channel.World.Entities.Creature
success bool
return void
		public static void BankWithdrawGoldR(Creature creature, bool success)
		{
			var packet = new Packet(Op.BankWithdrawGoldR, creature.EntityId);

			packet.PutByte(success);

			creature.Client.Send(packet);
		}
Send