aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ExportBot/Commands/LoadCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ExportBot/Commands/LoadCommand.cs')
-rw-r--r--ExportBot/Commands/LoadCommand.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/ExportBot/Commands/LoadCommand.cs b/ExportBot/Commands/LoadCommand.cs
new file mode 100644
index 0000000..70dada4
--- /dev/null
+++ b/ExportBot/Commands/LoadCommand.cs
@@ -0,0 +1,28 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using System.Reflection;
5using libsecondlife;
6using libsecondlife.Packets;
7
8namespace libsecondlife.TestClient
9{
10 public class LoadCommand: Command
11 {
12 public LoadCommand(TestClient testClient)
13 {
14 Name = "load";
15 Description = "Loads commands from a dll. (Usage: load AssemblyNameWithoutExtension)";
16 }
17
18 public override string Execute(string[] args, LLUUID fromAgentID)
19 {
20 if (args.Length < 1)
21 return "Usage: load AssemblyNameWithoutExtension";
22
23 string filename = AppDomain.CurrentDomain.BaseDirectory + args[0] + ".dll";
24 Client.RegisterAllCommands(Assembly.LoadFile(filename));
25 return "Assembly " + filename + " loaded.";
26 }
27 }
28}