From e93869c7a785a4f375685ffa33c913033ed1c85a Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Thu, 21 Jun 2007 17:08:21 +0000 Subject: * Importing Ming's mass test client --- .../Commands/Communication/WhisperCommand.cs | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 tools/mass test client/Commands/Communication/WhisperCommand.cs (limited to 'tools/mass test client/Commands/Communication/WhisperCommand.cs') diff --git a/tools/mass test client/Commands/Communication/WhisperCommand.cs b/tools/mass test client/Commands/Communication/WhisperCommand.cs new file mode 100644 index 0000000..4bfda33 --- /dev/null +++ b/tools/mass test client/Commands/Communication/WhisperCommand.cs @@ -0,0 +1,49 @@ +using System; +using System.Collections.Generic; +using System.Text; +using libsecondlife; +using libsecondlife.Packets; + +namespace libsecondlife.TestClient +{ + public class WhisperCommand : Command + { + public WhisperCommand(TestClient testClient) + { + Name = "whisper"; + Description = "Whisper something."; + } + + public override string Execute(string[] args, LLUUID fromAgentID) + { + int channel = 0; + int startIndex = 0; + string message = String.Empty; + if (args.Length < 1) + { + return "usage: whisper (optional channel) whatever"; + } + else if (args.Length > 1) + { + try + { + channel = Convert.ToInt32(args[0]); + startIndex = 1; + } + catch (FormatException) + { + channel = 0; + } + } + + for (int i = startIndex; i < args.Length; i++) + { + message += args[i] + " "; + } + + Client.Self.Chat(message, channel, MainAvatar.ChatType.Whisper); + + return "Whispered " + message; + } + } +} -- cgit v1.1