Posted: Wed Feb 17, 2021 7:04 am Post subject: Cheat Engine Sends Key to Targeted Process?
Not sure if i am in the correct section,
So Anyone is able to help me with Cheat Engine Spamming Certain Keys to a Certain targeted Process when box is Checked? and stop when the box is unchecked.
For E.G When i Checked the box, It Keep "Pressing Keyboard Button "H" To the targeted processs.
Posted: Wed Feb 17, 2021 7:50 am Post subject: Re: Cheat Engine Sends Key to Targeted Process?
Maybe something like this.
Code:
if f then f.destroy() f = nil end
f = createForm()
local c1=createCheckBox(f)
c1.Left=15 c1.Top=25 c1.caption="Key OFF >>>>"
c1.OnChange=function(sender)
if sender.checked==true then
if htkey1 then htkey1.destroy() htkey1=nil end
htkey1=createHotkey(function() print("Hello!") end, VK_H)
c1.caption="Key ON >>>>"
else
if htkey1 then htkey1.destroy() htkey1=nil end
c1.caption="Key OFF >>>>"
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