2007-04-28 20:54:02 +00:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using libsecondlife;
|
|
|
|
|
using libsecondlife.Packets;
|
|
|
|
|
|
|
|
|
|
namespace libsecondlife.TestClient
|
|
|
|
|
{
|
|
|
|
|
public class StandCommand: Command
|
|
|
|
|
{
|
|
|
|
|
public StandCommand(TestClient testClient)
|
|
|
|
|
{
|
|
|
|
|
Name = "stand";
|
|
|
|
|
Description = "Stand";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string Execute(string[] args, LLUUID fromAgentID)
|
2007-08-10 20:16:19 +00:00
|
|
|
{
|
|
|
|
|
Client.Self.Stand();
|
|
|
|
|
return "Standing up.";
|
|
|
|
|
}
|
2007-04-28 20:54:02 +00:00
|
|
|
}
|
|
|
|
|
}
|