2 different cheat engine lua speedhacks scripts at the same time?

Posts 14 of 4 · Page 1 of 1
2 different cheat engine lua speedhacks scripts at the same time?
How can I do this? Like for example one script that does 1.1x speedhack if I press shift and 10x speedhack if I press say, the 1 key.
I tried executing 2 of the script in the EAC bypass thread (with modified key and speed amount) but only one of them would work, also tried opening 2 cheat engine processes.
open 2 times cheat engine, attach the game 2 times and 2 scripts with 2 different hotkeys.
Quote Originally Posted by T-800 View Post
open 2 times cheat engine, attach the game 2 times and 2 scripts with 2 different hotkeys.
I tried that but didn't work.
The other key does the same thing as the other one
Quote Originally Posted by tverik View Post
I tried that but didn't work.
The other key does the same thing as the other one
interesting , i'll take a look , in the meantime just switch the speed amount in the cheat (whenever you want)

- - - Updated - - -

Credits @Lancel0t
Code:
SpeedHackAmount_Legit = 1.1
SpeedHackAmount_Rage = 10
KeyForSpeedhack_Legit = VK_LSHIFT
KeyForSpeedhack_Rage = VK_1
enabled = false

function checkKeys(timer)
    if isKeyPressed(KeyForSpeedhack_Legit) then
        if not enabled then
            speedhack_setSpeed(SpeedHackAmount_Legit)
            enabled = true
        end
    elseif isKeyPressed(KeyForSpeedhack_Rage) then
        if not enabled then
            speedhack_setSpeed(SpeedHackAmount_Rage)
            enabled = true
        end
    elseif enabled then
        speedhack_setSpeed(1)
        enabled = false
    end
end

t = createTimer(nil)
timer_setInterval(t, 10)
timer_onTimer(t, checkKeys)
timer_setEnabled(t, true)
For rage speedhack hold 1 (the number)
For legit speedhack hold left shift
Posts 14 of 4 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?