View previous topic :: View next topic |
Author |
Message |
shakib187 Expert Cheater
Reputation: 0
Joined: 24 May 2007 Posts: 215
|
Posted: Fri Apr 19, 2013 5:50 am Post subject: Help with triggerbot |
|
|
Hey guys playing a game where the address changes from 1 to something else if my crosshair is on the enemy.
My question how do I go about making a triggerbot for this? I am a complete noob to this and watching tutorials by fleep /watch?v=RB4Lh6xqUVs (since its the only one thats available) if you guys could give me some pointers it would be great.
thanks in advance
|
|
Back to top |
|
 |
Pingo Grandmaster Cheater
Reputation: 8
Joined: 12 Jul 2007 Posts: 571
|
Posted: Fri Apr 19, 2013 6:13 am Post subject: |
|
|
What language you wanting to do it in?
mouse_event works good in most cases
What is this address also the value type, byte,4byte,float
And the processname
_________________
|
|
Back to top |
|
 |
shakib187 Expert Cheater
Reputation: 0
Joined: 24 May 2007 Posts: 215
|
Posted: Fri Apr 19, 2013 6:24 am Post subject: |
|
|
what language would you recommend for noobs?(would like to do this in many more games) C++?
My address: if possible would like to use aobscan because of several reasons.
F3 0F 7E 00 66 0F D6 46 40 F3 0F 7E 40 08
op codes:
movq xmm0,[eax]
movq [esi+40],xmm0
movq xmm0,[eax+08]
address is float and value inside eax
I am basically trying to write if eax>1(float) and rightclick held down then left click otherwise do nothing
processname = Aether.exe
|
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Sat Apr 20, 2013 6:16 pm Post subject: |
|
|
Any language that can access the systems API will be good enough to do things like this. So it's up to you to pick one you feel comfortable with using.
_________________
- Retired. |
|
Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Fri Apr 26, 2013 5:38 pm Post subject: |
|
|
Wiccaan wrote: | Any language that can access the systems API will be good enough to do things like this. So it's up to you to pick one you feel comfortable with using. |
I can't access apis through notepad++, my language is English#.
|
|
Back to top |
|
 |
shakib187 Expert Cheater
Reputation: 0
Joined: 24 May 2007 Posts: 215
|
Posted: Mon Apr 29, 2013 3:25 am Post subject: |
|
|
does anyone know how to check the value of a pointer using the if statement? this is in c++
|
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Mon Apr 29, 2013 5:31 am Post subject: |
|
|
shakib187 wrote: | does anyone know how to check the value of a pointer using the if statement? this is in c++ |
From the ASM you posted above you'll need to use a cave to copy EAX's value to read it. Unless there is something else setting EAX above what you posted for us and you can get a direct pointer to the value.
Not too much we can do without seeing more code.
You should set a breakpoint there then pointer scan for EAX's address to see if you can find any static pointers to the value.
_________________
- Retired. |
|
Back to top |
|
 |
|