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/Inventory/GiveAllCommand.cs | 27 -------------------------- 1 file changed, 27 deletions(-) delete mode 100644 ExportBot/Commands/Inventory/GiveAllCommand.cs (limited to 'ExportBot/Commands/Inventory/GiveAllCommand.cs') diff --git a/ExportBot/Commands/Inventory/GiveAllCommand.cs b/ExportBot/Commands/Inventory/GiveAllCommand.cs deleted file mode 100644 index fe42fce..0000000 --- a/ExportBot/Commands/Inventory/GiveAllCommand.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; -using libsecondlife; -using libsecondlife.Packets; - -namespace libsecondlife.TestClient -{ - public class GiveAllCommand: Command - { - public GiveAllCommand(TestClient testClient) - { - Name = "giveAll"; - Description = "Gives you all it's money."; - } - - public override string Execute(string[] args, LLUUID fromAgentID) - { - if (fromAgentID == null) - return "Unable to send money to console. This command only works when IMed."; - - int amount = Client.Self.Balance; - Client.Self.GiveMoney(fromAgentID, Client.Self.Balance, String.Empty); - return "Gave $" + amount + " to " + fromAgentID; - } - } -} -- cgit v1.1