Skip to content

Instantly share code, notes, and snippets.

@iwanPlays
Created February 3, 2018 17:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save iwanPlays/2df23769dd3693165697872712b39fd2 to your computer and use it in GitHub Desktop.
Save iwanPlays/2df23769dd3693165697872712b39fd2 to your computer and use it in GitHub Desktop.
Skip Unity Free/Personal splash screen/intro/logo and more with CheatEngine
appName="ravenfield.exe" -- name of the application process
function listenOnceStops(timer)
if getProcessIDFromProcessName(appName) == nil then
object_destroy(timer)
startLoop(attachOnceStarts)
end
end
function attachOnceStarts(timer)
if getProcessIDFromProcessName(appName) ~= nil then
object_destroy(timer)
openProcess("ravenfield.exe")
speedhack_setSpeed(20)
sleep(1000)
speedhack_setSpeed(1)
startLoop(listenOnceStops)
end
end
function startLoop(loop)
f = createForm(false) --create an invisible window
t = createTimer(f);
timer_setInterval(t, 500)
timer_onTimer(t,loop)
end
startLoop(attachOnceStarts)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment