Aura.Channel.Network.Sending.Send.BankDepositGoldR C# (CSharp) Méthode

BankDepositGoldR() public static méthode

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

			packet.PutByte(success);

			creature.Client.Send(packet);
		}
Send