Lake Commands for Faster Running in Game – Cheat Engine!

Lake Commands for Faster Running in Game – Cheat Engine! 1 - steamsplay.com
Lake Commands for Faster Running in Game – Cheat Engine! 1 - steamsplay.com

Activate faster running
 
 

Overview

Because in the game there is nearly no difference between normal walk speed and running speed this cheat engine script enables faster running.
 
You can set the running speed according to your wishes.
 
The “normal walking” speed is not changed.
 
 
 

Usage

1) Download and install Cheat Engine
 
Cheatengine – [cheatengine.org] 
 
 
2) create file with extension *.ct
 
for example FasterRunning.ct
 
 
3) Insert following code:
 
 

<?xml version="1.0" encoding="utf-8"?>
<CheatTable CheatEngineTableVersion="34">
 <CheatEntries>
 <CheatEntry>
 <ID>4</ID>
 <Description>"Enable faster running"</Description>
 <LastState/>
 <VariableType>Auto Assembler Script</VariableType>
 <AssemblerScript>{$lua}

[ENABLE]
aalist=getAutoAttachList()
stringlist_add(aalist,"Lake.exe")


-- edit desired run speed (normal walk speed = 1)
-- dont edit other lines
runSpeed = 2.1


lastSpeed=1;
function checkKeys(timer)
 if (isKeyPressed(VK_SHIFT)) then
 if lastspeed ~= runSpeed then
 speedhack_setSpeed(runSpeed)
 lastSpeed=runSpeed
 end
 else
 if lastspeed ~= 1 then
 speedhack_setSpeed(1)
 lastSpeed=1
 end
 end
end

t=createTimer(nil)
timer_setInterval(t, 100)
timer_onTimer(t, checkKeys)
timer_setEnabled(t, true)

[DISABLE]
timer_setEnabled(t, false)

</AssemblerScript>
 </CheatEntry>
 </CheatEntries>
 <UserdefinedSymbols/>
</CheatTable>
 

 
 
4) Double click FasterRunning.ct
 
 
5) click checkbox “Enable faster running”
 
(note: even if the checkbox after clicking once might not be enabled, faster running should work anyway)
 
 
6) ready
 
 
7) to disable faster running close Cheat Engine
 
 

Remarks

 
– you can edit desired run speed in the line
 
 

runSpeed = 2.1

 
– attention: the car will also speed up if you press SHIFT 🙂
 
– so far I didnt experience any side effects
 
– fast running might look a bit strange but therefore the animations have to be changed, which I cant
 
 

Written by Obelix1111

 
 
Here we come to an end for Lake Commands for Faster Running in Game – Cheat Engine! hope you enjoy it. If you think we forget something to include or we should make an update to the post let us know via comment, and we will fix it asap! Thanks and have a great day!
 


Be the first to comment

Leave a Reply

Your email address will not be published.


*