Aura.Channel.Network.Sending.Send.GuildApplyR C# (CSharp) 메소드

GuildApplyR() 공개 정적인 메소드

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

			creature.Client.Send(packet);
		}
Send