![]() |
Effective Way to Detect Speed Hacks - Printable Version +- Mirage Source (https://mirage-engine.uk/forums) +-- Forum: Mirage Source (Nostalgia) (https://mirage-engine.uk/forums/forumdisplay.php?fid=61) +--- Forum: Archive (2006-2011) (https://mirage-engine.uk/forums/forumdisplay.php?fid=18) +---- Forum: Resources (https://mirage-engine.uk/forums/forumdisplay.php?fid=49) +---- Thread: Effective Way to Detect Speed Hacks (/showthread.php?tid=56) |
Effective Way to Detect Speed Hacks - grimsk8ter11 - 01-06-2006 Originally posted by Verrigan Difficulty Easy 1/5 Many of you are aware of applications out there that cause programs to speed up.. You will find that people using these programs will actually move faster in some online games. In most cases, this causes a server to 'cater' to the faster individuals because they are sending more frequent data, which will effectively lag other players. I could go into why these types of programs have this kind of effect on application performance, but I would be speculating.. All I know is that when you call GetTickCount or QueryPerformanceCounter functions, they will give you a higher number than the actual value on the system.. So if you do: Code: If GetTickCount - BeginTick > 500 it could happen in 1/10 of a second instead of 1/2 of a second. (1000 ticks from GetTickCount = 1 Second) Well.. I have some good news for you guys. ![]() ![]() What does this mean? This means you can check for a speed hack application, and abort your client if the user is using one. ![]() How? Check your tickcounts against a timer.. First set a variable = to Timer. Then set a variable = to GetTickCount. Here is an example: Code: Public SpeedHackTestTimer As Long Next, you will need a procedure to check the values against each other.. This isn't perfect, because we're comparing milliseconds against seconds, but it should be fairly close. ![]() Code: Public Sub SpeedHackTest() Now, this is not fully conclusive.. If 'they' develop a way to modify the Timer function's return value, you will not be able to use this method to detect speed hacking software. Please feel free to post any bugs/questions/comments/suggestions. ![]() - Krloz - 29-06-2006 oh Talking about hacks does memory editors works on this? or everything is server sided hard to hack because I wouldnt like to get ppl that cheats - Anarchy - 29-06-2006 me an xtr tried cheat engine 5.2 on his and his char was walking extra fast ![]() - SheepDog - 29-06-2006 Versions of CE before 5.0 will not work with this code added ;p - Anarchy - 29-06-2006 ![]() - Krloz - 30-06-2006 But noone uses - SheepDog - 30-06-2006 .. exactly :p Re: Effective Way to Detect Speed Hacks - ShadowMaster - 06-10-2007 There is no way to stop programs such as Cheat Engine to hack your games. Unless you find a way to protect the computer memory from being hacked. Re: Effective Way to Detect Speed Hacks - Robin - 06-10-2007 ShadowMaster Wrote:There is no way to stop programs such as Cheat Engine to hack your games. Unless you find a way to protect the computer memory from being hacked. Not only is this not related to Speedhacking, this thread is over a year old. And for your information, if you're stupid enough to leave any important values 100% clientside then you deserve to have your client hacked. I think anyone with common sense has all of the important data handling serverside and only has the clientside variables handle the graphical side, not the actual calculations. If someone memory hacked it, then all it would do is make the game look like it's been hacked, but the serverside data wouldn't be touched, meaning nothing would happen. |