Re: Simple Program Need Help
Is this a multi player game if so do you think that would give you a unfair advantage?
Re: Simple Program Need Help
no it is a single player game, ff8, if you are fimilar with it. The idea is that everyime you get into a fight, you can boost your attack based on how many times you can press the letter A. When i owned this game on playstation, i managed to get around 150 with a regular controller. When i purchused a turbo controller, i averaged 250, which was the max. The range was 75-250. An unfair advantage over the game, yeah a little.
Re: Simple Program Need Help
so i had another idea, maybe this would be easier. When i need to press the button, it wont work if i hold it down. So, since A wont read by just holding it down, could we somehow shift the input from a different charitor, such as the letter F?
Re: Simple Program Need Help
inside a timer, put:
sendkeys.send("A")
emulates the user pressing A on the keyboard
set the timer interval to greater than 20ms (gives 50 presses per second)
(you can set it to 1 and get 1000 a scond, but it might be unreliable)
Re: Simple Program Need Help
okay that works good, all i need to do now, is find a way for it to run while another program is up.