Aura.Channel.Network.Sending.Send.ChangeTitleR C# (CSharp) Method

ChangeTitleR() public static method

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
return 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