| View previous topic :: View next topic |
| Author |
Message |
felice86 How do I cheat?
Reputation: 0
Joined: 14 Jun 2011 Posts: 2
|
Posted: Tue Jun 14, 2011 5:39 am Post subject: Use "enable speedhack" in exe without CE |
|
|
Is possible to run a game (like FIFA 11) only with enable speedhack setted to 0.93 without run the game, run CE, select a process, enable speedhack, set it to 0.93 return to the game?
I'd like to run it in this way. Run a exe (like a trainer), then this exe run FIFA 11 with the setting i've wrote before because is very annoying to do this every time i like to play fifa with that speed setted.
Any help or suggestion is very appreciated and i'll say thanks for that
|
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25807 Location: The netherlands
|
Posted: Tue Jun 14, 2011 8:35 am Post subject: |
|
|
if you execute this script in ce it will automatically open fifa 11 when it sees it (you might have to adjust the exe it looks for) and set the speedhack to 0.93
| Code: |
strings_add(getAutoAttachList(), "fifa11.exe") --or whatever your fifa11 exe is called
function setSpeed(bla)
speedhack_setSpeed(0.93)
timer_setEnabled(t,false)
end
function onOpenProcess(pid)
t=createTimer(nil)
timer_onTimer(t, setSpeed)
timer_setInterval(t,1) --really short wait (setting the speed on open won't work)
timer_setEnabled(t, true)
end
|
you could add this to your main.lua, or make it into a cetrainer that you just have to doubleclick once and it wil then run in the background
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
| Back to top |
|
 |
felice86 How do I cheat?
Reputation: 0
Joined: 14 Jun 2011 Posts: 2
|
Posted: Wed Jun 15, 2011 9:47 am Post subject: |
|
|
Thank you very much you're a master!
|
|
| Back to top |
|
 |
|