| View previous topic :: View next topic |
| Author |
Message |
OSIRIS Grandmaster Cheater
Reputation: 0
Joined: 27 Aug 2006 Posts: 654
|
Posted: Fri Mar 14, 2008 10:52 am Post subject: [HELP VB2008] How would I go about making a speed hack? |
|
|
I want to make a speed hack that targets firefox and sets the
speed to 0.001
sleep to 1000
|
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Fri Mar 14, 2008 2:29 pm Post subject: |
|
|
| I forgot exactly what you have to hook, QueryPerformanceCounter, GetTickCount... look in the CE source for how to do it.
|
|
| Back to top |
|
 |
OSIRIS Grandmaster Cheater
Reputation: 0
Joined: 27 Aug 2006 Posts: 654
|
Posted: Fri Mar 14, 2008 2:40 pm Post subject: |
|
|
Then that means im going to have to download Delphi
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Fri Mar 14, 2008 2:41 pm Post subject: |
|
|
| slovach wrote: | | I forgot exactly what you have to hook, QueryPerformanceCounter, GetTickCount... look in the CE source for how to do it. |
You're right, as long as the game calls these API to handle the FPS cap of the game, you will need to hook:
- GetTickCount()
- QueryPerformanceCounter()
In some cases you might also need:
- timeGetTime()
Again, all depends on how the game handles the messages and such of the program. And how it caps the FPS or handles how the says at a synced rate.
_________________
- Retired. |
|
| Back to top |
|
 |
OSIRIS Grandmaster Cheater
Reputation: 0
Joined: 27 Aug 2006 Posts: 654
|
Posted: Fri Mar 14, 2008 3:04 pm Post subject: |
|
|
OK so I tried what you said with those 3 different hooks. But I got like to many blue lines.
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Fri Mar 14, 2008 3:08 pm Post subject: |
|
|
No no, you have to "hook" them. You need to create a DLL or inline rewrite of the functions inside the target application and fake the return values. As far as I know, you cannot make a 'real' Win32 DLL at all in VB.NET, you will either need to move to another language like C/C++ or ASM or, write out all the memory writes ands uch you will need to complete the task.
_________________
- Retired. |
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Fri Mar 14, 2008 3:10 pm Post subject: |
|
|
oh my. Atleast look up the API before just randomly trying something and expecting it to work.
firfox.speed...
firefox.sleep...
target.firefox...
are you just making stuff up as you go along and hoping it works? Sorry, computers can't read your mind.
once again, check out the CE source to see how it works.
|
|
| Back to top |
|
 |
|