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) { Client.Self.Stand(); return "Standing up."; } } }