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

PartyWantedClosedR() public static méthode

Response to leader closing the party.
Currently only successful
public static PartyWantedClosedR ( Creature creature, bool success ) : void
creature Creature
success bool
Résultat void
		public static void PartyWantedClosedR(Creature creature, bool success)
		{
			var packet = new Packet(Op.PartyWantedHideR, creature.EntityId);

			packet.PutByte(success);

			creature.Client.Send(packet);
		}
Send