Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Anti Lead and Anti Cheat

Initiate Mage
Joined
Jul 22, 2011
Messages
75
Reaction score
0
I need ANTI-LEAD
pls. send me a Private Message..

and the Anti-Cheat,
the anti-cheat I saw is not working,
who have another codes?

pls. teach me how to apply the anti-cheat in my theduel.exe or MatchServer
where do I need to apply the anti-cheat? in my theduel.exe or MatchServer?
and how to apply that?

1. Start Microsoft Visual Studio 2008/2010 (I have this 2)
2. File > New Project
3. Question: What project? Console Application?
4. What I must click to apply the code?
5. What I must click to apply the code?

Sharing is BLESSING...
 
Junior Spellweaver
Joined
Oct 23, 2010
Messages
176
Reaction score
17
You need to buy them. It will be .dll files.
You need to hook those files in your runnable.
No1 is giving you an anticheat or antilead.
 
Upvote 0
Initiate Mage
Joined
Jul 22, 2011
Messages
75
Reaction score
0
You need to buy them. It will be .dll files.
You need to hook those files in your runnable.
No1 is giving you an anticheat or antilead.

Anti-Cheat is already released,
the codes are already released,
I can search them here..

But the Anti-Lead is not yet release.

Applying the Anti-Cheat needs Micro. Visual Studio 2008 or 2010.
but I don't know how to apply the anti-cheat, and I don't know where to apply it, is it for my Runnable (theduel.exe) or for MatchServer.

So that's why I am asking for other person to make a Tutorial on how to apply the C# or C++ codes..

Well, I have knowledge about C#, because we are studying it on our school.
but I am supine to study it by myself.
 
Last edited:
Upvote 0
Junior Spellweaver
Joined
Oct 23, 2010
Messages
176
Reaction score
17
No1 is giving you antilead. You have to buy it.
There are a few anticheats released. But idk if they still work.

Hook the .dll file in your runnable. (theduel.exe or gunz.exe).

If you don't know how:
http://forum.ragezone.com/f497/tutorial-hook-dll-newbies-594164/

If you are lazy or dont understand the tut:
http://forum.ragezone.com/f311/service-hooking-dll-768579/

And if you want to do it yourself (try without hooking) you need ASM. Not C#/C++.
Code:
PUSHAD
PUSH TheCoolDLLAsciiOfset
CALL DWORD PTR DS:[LoadLibraryA]
CMP EAX, 0
JE EXIT
POPAD
RETN
:EXIT
PUSH 0
PUSH DllError
PUSH DllError
PUSH 0
CALL DWORD PTR DS:[MessageBoxA]
CALL DWORD PTR DS:[GetCurrentProcess]
PUSH 0
PUSH EAX
CALL DWORD PTR DS:[TerminateProcess]
POPAD
RETN
 
Upvote 0
Initiate Mage
Joined
Jul 22, 2011
Messages
75
Reaction score
0
No1 is giving you antilead. You have to buy it.
There are a few anticheats released. But idk if they still work.

Hook the .dll file in your runnable. (theduel.exe or gunz.exe).

If you don't know how:
http://forum.ragezone.com/f497/tutorial-hook-dll-newbies-594164/

If you are lazy or dont understand the tut:
http://forum.ragezone.com/f311/service-hooking-dll-768579/

And if you want to do it yourself (try without hooking) you need ASM. Not C#/C++.
Code:
PUSHAD
PUSH TheCoolDLLAsciiOfset
CALL DWORD PTR DS:[LoadLibraryA]
CMP EAX, 0
JE EXIT
POPAD
RETN
:EXIT
PUSH 0
PUSH DllError
PUSH DllError
PUSH 0
CALL DWORD PTR DS:[MessageBoxA]
CALL DWORD PTR DS:[GetCurrentProcess]
PUSH 0
PUSH EAX
CALL DWORD PTR DS:[TerminateProcess]
POPAD
RETN

I know how to use ASM edit..

Thanks for reply.
your kindly and better person.
I will review.
I will also use the google search on how to HOOK.

yes. for anti lead,
I will B**....
If someone have, PM me.

Wait. That ASM Codes, I will just add them to my theduel.exe ASM?
Wait, where can I find the anti-cheat DLL?
 
Last edited:
Upvote 0
Initiate Mage
Joined
Feb 24, 2010
Messages
2
Reaction score
0
No1 is giving you antilead. You have to buy it.
There are a few anticheats released. But idk if they still work.

Hook the .dll file in your runnable. (theduel.exe or gunz.exe).

If you don't know how:
http://forum.ragezone.com/f497/tutorial-hook-dll-newbies-594164/

If you are lazy or dont understand the tut:
http://forum.ragezone.com/f311/service-hooking-dll-768579/

And if you want to do it yourself (try without hooking) you need ASM. Not C#/C++.
Code:
PUSHAD
PUSH TheCoolDLLAsciiOfset
CALL DWORD PTR DS:[LoadLibraryA]
CMP EAX, 0
JE EXIT
POPAD
RETN
:EXIT
PUSH 0
PUSH DllError
PUSH DllError
PUSH 0
CALL DWORD PTR DS:[MessageBoxA]
CALL DWORD PTR DS:[GetCurrentProcess]
PUSH 0
PUSH EAX
CALL DWORD PTR DS:[TerminateProcess]
POPAD
RETN

Hey, I'm also wondering. How do u add that asm to your runnable? I've tried hooking my Anti-lead.dll into my runnable in stud_Pe editor, but I received an error message "PE has no export" or something. So I figured, I could try it with that piece of asm you got there, but how do you apply it, how does it work?
Thanks in advance. If u want to help me, u can contact me on msn:
vinnie_928@hotmail.com

Vince.
 
Upvote 0
Junior Spellweaver
Joined
Oct 23, 2010
Messages
176
Reaction score
17
Hey, I'm also wondering. How do u add that asm to your runnable? I've tried hooking my Anti-lead.dll into my runnable in stud_Pe editor, but I received an error message "PE has no export" or something. So I figured, I could try it with that piece of asm you got there, but how do you apply it, how does it work?
Thanks in advance. If u want to help me, u can contact me on msn:
vinnie_928@hotmail.com

Vince.

Check out my thread for hooking dll service.

 
Upvote 0
Back
Top