Skip to content

Instantly share code, notes, and snippets.

@zhaoguohao
Forked from iwanPlays/skipintro.ct
Created July 5, 2024 02:42
Show Gist options
  • Save zhaoguohao/6ba4129544390093d26f523cdb48f81f to your computer and use it in GitHub Desktop.
Save zhaoguohao/6ba4129544390093d26f523cdb48f81f 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