| View previous topic :: View next topic |
| Author |
Message |
CPLNet1337 Cheater
Reputation: 0
Joined: 01 Jul 2015 Posts: 36
|
Posted: Thu Aug 11, 2016 4:03 am Post subject: cheat engine |
|
|
| we can option of setting the speed hack cheat engine other than hotkeys for example? regards.
|
|
| Back to top |
|
 |
hhhuut Grandmaster Cheater
Reputation: 6
Joined: 08 Feb 2015 Posts: 607
|
Posted: Thu Aug 11, 2016 4:07 am Post subject: |
|
|
| I'm not sure what you now want to request, but you can either activate the speedhack by clicking the small box labeled as "Enable Speedhack" or you go to Edit -> Settings -> Hotkeys and set hotkeys for the speedhack.
|
|
| Back to top |
|
 |
PinPoint Expert Cheater
Reputation: 10
Joined: 07 Apr 2016 Posts: 223 Location: Scotland
|
Posted: Thu Aug 11, 2016 4:12 am Post subject: |
|
|
have it in a script?
| Code: | [ENABLE]
luacall(speedhack_setSpeed(0.2))
[DISABLE]
luacall(speedhack_setSpeed(1)) |
|
|
| Back to top |
|
 |
CPLNet1337 Cheater
Reputation: 0
Joined: 01 Jul 2015 Posts: 36
|
Posted: Thu Aug 11, 2016 4:16 am Post subject: thanksfull |
|
|
| ok its not very that but thanksfull before
|
|
| Back to top |
|
 |
PinPoint Expert Cheater
Reputation: 10
Joined: 07 Apr 2016 Posts: 223 Location: Scotland
|
Posted: Thu Aug 11, 2016 4:22 am Post subject: |
|
|
you didnt say what you wanted, only a different way from hotkeys,
here is a script that will set a new speed automatically every 10 minutes, maybe something like this?
credits to Darkbyte:
| Code: | speeds={}
speeds[0]=2.0
speeds[1]=3.0
speeds[2]=2.0
speeds[3]=1.0
speedselect=1
function setNewSpeed()
speedhack_setSpeed(speeds[speedselect])
speedselect=(speedselect+1) % 4
end
t=createTimer(nil)
timer_onTimer(t, setNewSpeed)
timer_setInterval(t, 10*60*1000) --10 minutes
timer_setEnabled(t, true);
|
|
|
| Back to top |
|
 |
|