diff options
Diffstat (limited to 'tools/mass test client/Commands/GotoLandmark.cs')
-rw-r--r-- | tools/mass test client/Commands/GotoLandmark.cs | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/tools/mass test client/Commands/GotoLandmark.cs b/tools/mass test client/Commands/GotoLandmark.cs deleted file mode 100644 index d32047c..0000000 --- a/tools/mass test client/Commands/GotoLandmark.cs +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using libsecondlife; | ||
5 | using libsecondlife.Packets; | ||
6 | |||
7 | namespace libsecondlife.TestClient | ||
8 | { | ||
9 | public class GotoLandmarkCommand : Command | ||
10 | { | ||
11 | public GotoLandmarkCommand(TestClient testClient) | ||
12 | { | ||
13 | Name = "goto_landmark"; | ||
14 | Description = "Teleports to a Landmark "; | ||
15 | } | ||
16 | |||
17 | public override string Execute(string[] args, LLUUID fromAgentID) | ||
18 | { | ||
19 | LLUUID landmark = new LLUUID(); | ||
20 | if ( ! LLUUID.TryParse(args[0], out landmark) ) { | ||
21 | return "Invalid LLUID"; | ||
22 | } else { | ||
23 | Console.WriteLine("Teleporting to " + landmark.ToString()); | ||
24 | } | ||
25 | if ( Client.Self.Teleport(landmark) ) { | ||
26 | return "Teleport Succesful"; | ||
27 | } else { | ||
28 | return "Teleport Failed"; | ||
29 | } | ||
30 | } | ||
31 | } | ||
32 | } | ||