BryceTheCoder Posted June 21, 2012 Share Posted June 21, 2012 Hey, i was wondering since im absolutley horrible at doing things that involve the keyboard, how would i make it hold a key down such as the "W" key then call a wait or waitRR function and then release the "w" key? Quote Link to comment Share on other sites More sharing options...
Janilabo Posted June 21, 2012 Share Posted June 21, 2012 [scar]begin KeyDown(87); // Holds the "W"-key. Wait(1000); // Teh wait... // JUST ABOUT ANYTHING CAN BE ADDED HERE... KeyUp(87); // Releases the "W"-key. end.[/scar] Check out the KEYCODES FROM HERE... -Jani Quote Link to comment Share on other sites More sharing options...
BryceTheCoder Posted June 21, 2012 Author Share Posted June 21, 2012 Thank you very much, i didnt know all the numbers for the key codes:) Now i do, tyvm:) Quote Link to comment Share on other sites More sharing options...