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

GuildDonateR() public static method

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

			creature.Client.Send(packet);
		}
Send