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

ChangeTitleR() public static méthode

Sends ChangeTitleR to creature's client.
public static ChangeTitleR ( Creature creature, bool titleSuccess, bool optionTitleSuccess ) : void
creature Aura.Channel.World.Entities.Creature
titleSuccess bool
optionTitleSuccess bool
Résultat void
		public static void ChangeTitleR(Creature creature, bool titleSuccess, bool optionTitleSuccess)
		{
			var packet = new Packet(Op.ChangeTitleR, creature.EntityId);
			packet.PutByte(titleSuccess);
			packet.PutByte(optionTitleSuccess);

			creature.Client.Send(packet);
		}
Send