diff options
Diffstat (limited to '')
-rw-r--r-- | tools/mass test client/Commands/Movement/SetHome.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tools/mass test client/Commands/Movement/SetHome.cs b/tools/mass test client/Commands/Movement/SetHome.cs new file mode 100644 index 0000000..5e14ca6 --- /dev/null +++ b/tools/mass test client/Commands/Movement/SetHome.cs | |||
@@ -0,0 +1,23 @@ | |||
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 SetHomeCommand : Command | ||
10 | { | ||
11 | public SetHomeCommand(TestClient testClient) | ||
12 | { | ||
13 | Name = "sethome"; | ||
14 | Description = "Sets home to the current location."; | ||
15 | } | ||
16 | |||
17 | public override string Execute(string[] args, LLUUID fromAgentID) | ||
18 | { | ||
19 | Client.Self.SetHome(); | ||
20 | return "Home Set"; | ||
21 | } | ||
22 | } | ||
23 | } | ||