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