Posted: Wed Mar 27, 2013 8:15 pm Post subject: Hotkeys
How can I set and hotkey that will increase an address constantly by 0.6 when its pressed*
And set its:
Keypoll interval
And
Delay between reactivating hotkeys
both to 35 ? _________________
I'm rusty and getting older, help me re-learn lua.
Well that was too easy .-.
If someone wondering..
[/code]function Hotkeys()
KeyA = isKeyPressed(VK_A)
KeyW = isKeyPressed(VK_W)
KeyD = isKeyPressed(VK_D)
KeyS = isKeyPressed(VK_S)
if KeyA==true then
print(1)
elseif KeyW==true then
print(2)
elseif KeyD==true then
print(3)
elseif KeyS==true then
print(4)
end
end
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum