Lake – Cheat Engine – Activate Faster Running in Game + Commands

Lake – Cheat Engine – Activate Faster Running in Game + Commands 1 - steamlists.com
Lake – Cheat Engine – Activate Faster Running in Game + Commands 1 - steamlists.com

Table of Contents

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

 
 
Hope you enjoy the Guide about Lake – Cheat Engine – Activate Faster Running in Game + Commands, if you think we should add extra information or forget something, please let us know via comment below, and we will do our best to fix or update as soon as possible!
 
 


Be the first to comment

Leave a Reply

Your email address will not be published.


*