So in tutorial island, after you create the 'look' of your character, you need to move the screen. So, I said no problem. That moves the right arrow key. Now I know these keys work, because I use the down arrow key to help create the account. So, I tried putting
SCAR Code:
SendKeys(chr(39));
SendKeys(chr(39));
SendKeys(chr(39));
SendKeys(chr(39));
SendKeys(chr(37));
SendKeys(chr(37));
SendKeys(chr(37));
SendKeys(chr(37));
Right Right Right Right Left Left Left Left. Still nothing. I then remembered about: But I'm not sure how to use it. How do I time it?
Edit:Keydown(39); works, but I need it to stop pressing the key after like 500ms.