View previous topic :: View next topic |
Author |
Message |
yazigegeda Expert Cheater
Reputation: 0
Joined: 22 Jan 2019 Posts: 183
|
Posted: Tue Oct 06, 2020 12:41 am Post subject: How does CreateHotkey use key combinations? |
|
|
Code: |
local fkcq=true
Hotkey_fkcq=CreateHotkey(
function()
if fkcq then
enable()
fkcq=false
else
disable()
fkcq=true
end
end
,VK_CONTROL + VK_MENU)
|
When I press ctrl + alt, it has no effect. Tell me how to do it?
:? |
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 468
Joined: 09 May 2003 Posts: 25717 Location: The netherlands
|
Posted: Tue Oct 06, 2020 12:57 am Post subject: |
|
|
replace + with , _________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
yazigegeda Expert Cheater
Reputation: 0
Joined: 22 Jan 2019 Posts: 183
|
Posted: Tue Oct 06, 2020 1:13 am Post subject: |
|
|
Dark Byte wrote: | replace + with , |
thank you very much! :lol: |
|
Back to top |
|
 |
|