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

WhisperChat() public static method

Sends WhisperChat to creature's client, containing whisper message.
public static WhisperChat ( Creature creature, string sender, string message ) : void
creature Creature
sender string
message string
return void
		public static void WhisperChat(Creature creature, string sender, string message)
		{
			var packet = new Packet(Op.WhisperChat, creature.EntityId);
			packet.PutString(sender);
			packet.PutString(message);

			creature.Client.Send(packet);
		}
Send