It works for EU
@
getting the error
I don't know, I never got an error. It just didn't work. You might need to reinstall CF and reinstall the requirements, then restart.
Here's an improved speed hack. Controls:
Up Arrow - Speed up
Down Arrow - Slow down
Right Arrow - Reset Speed
Shift - Hold to speed, let go to stop
I'm not going to bother to explain how to use this, google how to execute Lua using cheat engine. I don't know what version this works in, I know it works in 6.5.1 though.
Code:
local Speed = 1
local FinalSpeed = 1
function CheckHotkeys()
if (isKeyPressed(VK_UP)) then
Speed = (Speed + 0.05)
Speed = ((Speed < 5) and Speed or 5)
elseif (isKeyPressed(VK_DOWN)) then
Speed = (Speed - 0.05)
Speed = ((Speed > 0) and Speed or 0.1)
elseif (isKeyPressed(VK_RIGHT)) then
Speed = 1
end
if (isKeyPressed(VK_SHIFT)) then
FinalSpeed = Speed
else
FinalSpeed = 1
end
speedhack_setSpeed(FinalSpeed)
end
local Timer = createTimer(nil)
timer_setInterval(Timer, 50)
timer_onTimer(Timer, CheckHotkeys)
timer_setEnabled(Timer, true)