View previous topic :: View next topic |
Author |
Message |
FastestOne How do I cheat?
Reputation: 0
Joined: 04 Aug 2016 Posts: 4
|
Posted: Thu Aug 04, 2016 11:05 am Post subject: Use skill without hotkey |
|
|
Hello. I got skill 'aura' in the game. When I press F1 - aura activates for 30sec and then I need to press F1 again.
Question: is it possible to use skill without clicking on it ? And what do I need to look for it
|
|
Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Thu Aug 04, 2016 12:08 pm Post subject: |
|
|
Code: | t=createTimer(nil, false)
t.Interval=30000
t.OnTimer=function(t)
doKeyPress(VK_F1)
end
t.Enabled=true |
|
|
Back to top |
|
 |
FastestOne How do I cheat?
Reputation: 0
Joined: 04 Aug 2016 Posts: 4
|
Posted: Thu Aug 04, 2016 12:38 pm Post subject: |
|
|
but how attach script to the proccess ? i need to keep aura on, even when gamewindow is inactive.
|
|
Back to top |
|
 |
cooleko Grandmaster Cheater
Reputation: 11
Joined: 04 May 2016 Posts: 717
|
Posted: Thu Aug 04, 2016 1:13 pm Post subject: |
|
|
Try a forum for online cheating, look into other scripting languages autoit and autohotkey.
|
|
Back to top |
|
 |
FastestOne How do I cheat?
Reputation: 0
Joined: 04 Aug 2016 Posts: 4
|
Posted: Thu Aug 04, 2016 1:31 pm Post subject: |
|
|
already tried, autoit and ahk didn't work. Don't know how to send packet with wpe\rpe. So was thinking to inject in proccess and use skill somehow with CE.
|
|
Back to top |
|
 |
FastestOne How do I cheat?
Reputation: 0
Joined: 04 Aug 2016 Posts: 4
|
Posted: Fri Aug 05, 2016 4:50 am Post subject: |
|
|
Is that even possible to found skill activate trigger in memory ?
Only x7 Oscar works, but it can't activate skill in inactive window.
|
|
Back to top |
|
 |
cooleko Grandmaster Cheater
Reputation: 11
Joined: 04 May 2016 Posts: 717
|
Posted: Fri Aug 05, 2016 3:29 pm Post subject: |
|
|
There are many attempts at a workaround:
find the code that triggers a skill and call it yourself;
find the timer of the skill and reset it;
find a byte indicating that a skill is to be triggered and let the game engine pick it up from there;
and even more.
None of them are easier than learning how to emulate a key press accurately using windows api. Here is a pastebin i use for the key codes to accurately emulate keypresses in autoit
http://pastebin.com/f6c1db818
Go to their forums to get further advice
|
|
Back to top |
|
 |
|