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 


Using mouse left click down and up as hotkey

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine Lua Scripting
View previous topic :: View next topic  
Author Message
asdjlkdsfklj123
How do I cheat?
Reputation: 0

Joined: 25 May 2020
Posts: 1

PostPosted: Mon May 25, 2020 9:45 pm    Post subject: Using mouse left click down and up as hotkey Reply with quote

Hello,

I want to create a script that uses mouse left click down and up as hotkey. I have the cheat addresses for the game already. Basically, I want to make a script that changes the float value of the address whenever left click down is pressed. It then reverts back to the original value when the left click gets released (left click up).
Back to top
View user's profile Send private message
Dark Byte
Site Admin
Reputation: 471

Joined: 09 May 2003
Posts: 25823
Location: The netherlands

PostPosted: Tue May 26, 2020 1:39 am    Post subject: Reply with quote

Code:

local address=0x00400500
local newvalue=200

if leftclickthread then
  leftclickthread.destroy()
  leftclickthread=nil
end

leftclickthread=createThread(function(x)
  local originalvalue=nil
  while not x.Terminated do
    if originalvalue then --leftbutton was down last time we checked
      if isKeyPressed(VK_LBUTTON)==false then
        writeFloat(address, originalvalue)
        originalvalue=nil
      end
    else
      if isKeyPressed(VK_LBUTTON) then
        originalvalue=readFloat(address)
        writeFloat(address, newvalue)
      end
    end
    sleep(100)
  end
end)

_________________
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
View user's profile Send private message MSN Messenger
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