I been working with a dll wrapper and this function:
void Console(char *pcCommand) //Used to print to console, just like in-game
{
//post: writes pcCommand to Console
HWND MConsole = FindWindow(0, "Console");
EnumChildWindows(MConsole, EnumChildSendCommandProc,(LPARAM)pcCommand);
}
My...