Example #1
0
        void AddCmdExe(bool user)
        {
            BotPage    botPage = GetBotPage();
            ControlCmd cmd     = new ControlCmd(botPage.bot, user);

            if (user)
            {
                AddControlPage(botPage, cmd, "cmd.exe");
            }
            else
            {
                AddControlPage(botPage, cmd, "cmd.exe user");
            }
        }
Example #2
0
 public CmdOutputer(ControlCmd control, Socket sc)
 {
     this.control = control;
     this.sc      = sc;
 }
Example #3
0
 public StarterCmd(ControlCmd control, Server.IdUid bot)
 {
     this.control = control;
     this.bot     = bot;
 }