Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Auto Key Presser Malfunction

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine Lua Scripting
View previous topic :: View next topic  
Author Message
sgsgwv$6263
Advanced Cheater
Reputation: 0

Joined: 05 Aug 2020
Posts: 84

PostPosted: Tue Oct 13, 2020 6:27 am    Post subject: Auto Key Presser Malfunction Reply with quote

For some reason this code(below) which an auto key presser runs only twice.
But I want it to run infinitely till I press s
Code:

{$lua}

[ENABLE]

local wait=400

hk1=createHotkey(function()
while(1)
do
  if isKeyPressed(0x53) then break end
  sleep(wait)
 doKeyPress(0x53)
end
end,0x50)

[DISABLE]

hk1.destroy()
Back to top
View user's profile Send private message
ByTransient
Expert Cheater
Reputation: 5

Joined: 05 Sep 2020
Posts: 240

PostPosted: Tue Oct 13, 2020 8:23 am    Post subject: Reply with quote

Code:
{$lua}
[ENABLE]
--local wait=400
t1=createTimer()
t1.Interval=1
t1.Enabled=false

local idx=0

t1.OnTimer=function()
if isKeyPressed(VK_5) then
sleep(400)
idx=tonumber(idx) + 1
  print(idx.." - press: "..0x53)
  sleep(100)
 doKeyPress(VK_5)
end
end

hk1=createHotkey(function()
  if t1.Enabled==false then
  t1.Enabled=true
  else
  t1.Enabled=false
end
end,VK_2)

[DISABLE]
t1.Enabled=false
hk1.destroy()
t1.destroy()
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine Lua Scripting All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
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


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites