I have an idea for a program but I don't know if its possible.
I want to write a program that can read commands from a file.. For example, I've seen bots that can parse and read javascript for games and execute whatever is in the .java file..
How can I do this in c++ I want to read commands from a file and execute them.. Example:
Read MoveMouse(X, Y);... the client would SetCursorPos(X, Y);.
Possible or no?