// Host_GetConsoleCommands // // Add them exactly as if they had been typed at the console static void GetConsoleCommands() { while (true) { string cmd = Sys.ConsoleInput(); if (String.IsNullOrEmpty(cmd)) { break; } Cbuf.AddText(cmd); } }