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

SosButtonRequestR() public static method

Sends SosButtonRequestR to creature's client.
public static SosButtonRequestR ( Creature creature, bool enabled ) : void
creature Creature
enabled bool
return void
		public static void SosButtonRequestR(Creature creature, bool enabled)
		{
			var packet = new Packet(Op.SosButtonRequestR, creature.EntityId);
			packet.PutByte(enabled);

			creature.Client.Send(packet);
		}
Send