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

GuildCheckNameR() public static method

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

			creature.Client.Send(packet);
		}
Send