2007-05-21 05:52:28 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using libsecondlife;
|
|
|
|
|
using libsecondlife.Packets;
|
|
|
|
|
|
|
|
|
|
namespace libsecondlife.TestClient
|
|
|
|
|
{
|
|
|
|
|
public class GotoLandmarkCommand : Command
|
|
|
|
|
{
|
|
|
|
|
public GotoLandmarkCommand(TestClient testClient)
|
|
|
|
|
{
|
|
|
|
|
Name = "goto_landmark";
|
2007-08-01 13:44:27 +00:00
|
|
|
Description = "Teleports to a Landmark. Usage: goto_landmark [UUID]";
|
2007-05-21 05:52:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string Execute(string[] args, LLUUID fromAgentID)
|
2007-08-01 13:44:27 +00:00
|
|
|
{
|
|
|
|
|
if (args.Length < 1)
|
|
|
|
|
{
|
|
|
|
|
return "Usage: goto_landmark [UUID]";
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-21 05:52:28 +00:00
|
|
|
LLUUID landmark = new LLUUID();
|
|
|
|
|
if ( ! LLUUID.TryParse(args[0], out landmark) ) {
|
|
|
|
|
return "Invalid LLUID";
|
|
|
|
|
} else {
|
|
|
|
|
Console.WriteLine("Teleporting to " + landmark.ToString());
|
|
|
|
|
}
|
|
|
|
|
if ( Client.Self.Teleport(landmark) ) {
|
|
|
|
|
return "Teleport Succesful";
|
|
|
|
|
} else {
|
|
|
|
|
return "Teleport Failed";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|