Added Robust Command Framework Added Several New Commands Made calling commands case in-sensitive Cleaned up TestBot Code git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@594 52acb1d6-8a22-11de-b505-999d5b087335
22 lines
459 B
C#
22 lines
459 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace TestBot
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
if (args.Length != 3)
|
|
{
|
|
Console.WriteLine("Usage: TestBot.exe [firstname] [lastname] [password]");
|
|
return;
|
|
}
|
|
|
|
TestBot bot = new TestBot(args[0], args[1], args[2]);
|
|
bot.Run();
|
|
}
|
|
}
|
|
}
|