Need help?can i have some help ;) - MPGH - MultiPlayer Game Hacking & Cheats
can i have some help ;)
Posts 1–12 of 12 · Page 1 of 1
can i have some help ;)
hey guys
i wanna make like an auto button presser, like an auto clicker... but with the buttons/ keys on your keyboard
say i would wanna make it press left and right arrow keys. one after another
left
right
left
right
like that... how would i do this?.. and i would need it to click them fast to...
any help will be greatly appreciated
you still use the sendkeys.keys function.
Originally Posted by Ugleh
you still use the sendkeys.keys function.
yea... but how do i make it click them rapidly... do i need to add a timmer..?
1. Add a timer....
2. Add this code:
[html]sendkeys.send("{left}")
sendkeys.send("{right}")
sendkeys.send("{left}")
sendkeys.send("{right}")[/html]
3.Put timer1.interval = 30
If im not mistaken, Sendkeys is blocked by HS
Originally Posted by Iamazn1
If im not mistaken, Sendkeys is blocked by HS
ohh this was nothing for combat arms.. this was for a lil flash game just as fun
Originally Posted by Iamazn1
If im not mistaken, Sendkeys is blocked by HS
Yes.......
i only know how to make an autoclicker but i dont know for what u need a programm which clicks left and right..
Um a bit of topic but are you doing like athletics or something where you press those keys and the player runs or something?
Originally Posted by LegendaryAbbo
Um a bit of topic but are you doing like athletics or something where you press those keys and the player runs or something?
yea something like that, u like gota run away from a rolling moon that will crush u.. i just want to see how far i could get with an auto button pusher.. cause my fingers get tireed lol
I got RSI doing one of those things, it's like a temporary arthritis.
If you want to make Flash games, I think Action Script would be the way to go.
But if you want to make an exe game,
you can try
1. Add timer
2. Enable timer
3. Add
Code:
If e.KeyCode = Keys.F1 Then
'Code to "move" player here
End If