Aura.Channel.Network.Sending.Send.PartyChangePasswordR C# (CSharp) Метод

PartyChangePasswordR() публичный статический Метод

Informing the leader on the status of their password request
public static PartyChangePasswordR ( Creature creature, bool success ) : void
creature Creature
success bool
Результат void
		public static void PartyChangePasswordR(Creature creature, bool success)
		{
			var packet = new Packet(Op.PartyChangePasswordR, creature.EntityId);

			packet.PutByte(success);

			creature.Client.Send(packet);
		}
Send