* Added SleepCommand to TestClient which uses AgentPause and AgentResume to sleep for a given number of seconds
* Added ScriptCommand to TestClient to execute commands from a script git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2223 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
@@ -1,27 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using OpenMetaverse;
|
||||
using OpenMetaverse.Packets;
|
||||
|
||||
namespace OpenMetaverse.TestClient
|
||||
{
|
||||
public class GoHomeCommand : Command
|
||||
{
|
||||
public GoHomeCommand(TestClient testClient)
|
||||
{
|
||||
Name = "gohome";
|
||||
using System;
|
||||
using OpenMetaverse;
|
||||
|
||||
namespace OpenMetaverse.TestClient
|
||||
{
|
||||
public class GoHomeCommand : Command
|
||||
{
|
||||
public GoHomeCommand(TestClient testClient)
|
||||
{
|
||||
Name = "gohome";
|
||||
Description = "Teleports home";
|
||||
Category = CommandCategory.Movement;
|
||||
}
|
||||
|
||||
public override string Execute(string[] args, UUID fromAgentID)
|
||||
{
|
||||
if ( Client.Self.GoHome() ) {
|
||||
return "Teleport Home Succesful";
|
||||
} else {
|
||||
return "Teleport Home Failed";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Category = CommandCategory.Movement;
|
||||
}
|
||||
|
||||
public override string Execute(string[] args, UUID fromAgentID)
|
||||
{
|
||||
if ( Client.Self.GoHome() ) {
|
||||
return "Teleport Home Succesful";
|
||||
} else {
|
||||
return "Teleport Home Failed";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user