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

GuildCreateGuildRobeR() public static method

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

			creature.Client.Send(packet);
		}
	}
Send