From 64a98c736848de6099254f23483058668273c1a5 Mon Sep 17 00:00:00 2001 From: gareth Date: Mon, 14 May 2007 03:13:47 +0000 Subject: Finished off adding the new management API to gridserver Updated VersionInfo.cs finally Updated prebuild and rebuilt nant build files Completed Management agent basics --- ExportBot/Commands/Movement/JumpCommand.cs | 34 ------------------------------ 1 file changed, 34 deletions(-) delete mode 100644 ExportBot/Commands/Movement/JumpCommand.cs (limited to 'ExportBot/Commands/Movement/JumpCommand.cs') diff --git a/ExportBot/Commands/Movement/JumpCommand.cs b/ExportBot/Commands/Movement/JumpCommand.cs deleted file mode 100644 index 29b11a0..0000000 --- a/ExportBot/Commands/Movement/JumpCommand.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; -using libsecondlife; -using libsecondlife.Packets; - -namespace libsecondlife.TestClient -{ - public class JumpCommand: Command - { - public JumpCommand(TestClient testClient) - { - Name = "jump"; - Description = "Teleports to the specified height. (e.g. \"jump 1000\")"; - } - - public override string Execute(string[] args, LLUUID fromAgentID) - { - if (args.Length != 1) - return "usage: jump 1000"; - - float height = 0; - float.TryParse(args[0], out height); - - Client.Self.Teleport - ( - Client.Network.CurrentSim.Name, - new LLVector3(Client.Self.Position.X, Client.Self.Position.Y, Client.Self.Position.Z + height) - ); - - return "Jumped " + height; - } - } -} -- cgit v1.1