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

GuildWithdrawGoldR() public static méthode

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

			creature.Client.Send(packet);
		}
Send