diff options
Diffstat (limited to 'tools/mass test client/Commands/GoHome.cs')
-rw-r--r-- | tools/mass test client/Commands/GoHome.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/mass test client/Commands/GoHome.cs b/tools/mass test client/Commands/GoHome.cs new file mode 100644 index 0000000..0ac04f4 --- /dev/null +++ b/tools/mass test client/Commands/GoHome.cs | |||
@@ -0,0 +1,26 @@ | |||
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 GoHomeCommand : Command | ||
10 | { | ||
11 | public GoHomeCommand(TestClient testClient) | ||
12 | { | ||
13 | Name = "gohome"; | ||
14 | Description = "Teleports home"; | ||
15 | } | ||
16 | |||
17 | public override string Execute(string[] args, LLUUID fromAgentID) | ||
18 | { | ||
19 | if ( Client.Self.GoHome() ) { | ||
20 | return "Teleport Home Succesful"; | ||
21 | } else { | ||
22 | return "Teleport Home Failed"; | ||
23 | } | ||
24 | } | ||
25 | } | ||
26 | } | ||