Think of it as a challenge, if you figure it out, you can use all the hacks. =o
So yea, the hack protection bypass will be donator only for now. =x
Current Address' Version: 1.0.4.317
~ Preliminary Notes ~
When assembling code, make sure the Fill with NOPs box is checked at all times.
To save your changes, follow these directions:
Right click the CPU window, Copy to Executable -> All Modifications.
Click Copy All, and then in the new window, right click the code area and click Save file.
(If at any time an error comes up, just press 'Ok'.)
Initialize Code Cave
Make sure you do this before any other hacks.
Go to 00426DF0 and change the command there to RETN.
Now highlight and select from address 00426DF1 to 00426F69, right click, Binary -> Fill with NOPs.
Bypass the Patcher
Go to 0043E42D in the code area, right click it and go to Follow in dump -> Immediate Constant.
Now in the dump, right click the h in http and go to Binary -> Edit .
Make sure Keep Size is UNCHECKED.
Now in the ASCII part, paste [Only registered and activated users can see links. Click Here To Register...] into there, and then go into the HEX Part, and at the end add a byte of 00 and click OK.
Now right click all of the red area in the dump, right click it and click Copy To Executable File.
Now in the new window, right click and Save file.
Now press CTRL F2.
Once its restarted, go to 0043E310 and change the code there to MOV EDX, 9F8DC8 .
Go to 0043E338 and right click then Binary -> Fill with Nops.
Enable GM Commands
First, go to the address 00410775 you should see this:
MOVZX EAX,BYTE PTR SS:[ESP+A9]
Change the code at 00410775 to CALL 00426DF2 .
Go to 00426DF2 and write this code:
MOV BYTE PTR SS:[ESP+0A9],0FA
MOVZX EAX,BYTE PTR SS:[ESP+0A9]
RETN
Increase Normal Attack Damage
Normally when you attack, you tell the server to start an attack on a target and the server handles everything from there, updating you when you attack and what not.
But there's a way to make attacking client-side, it's a pretty simple exploit, that once built into the game, can become a very good hack.
This hack does not increase your damage, it just makes you attack extremely fast.
You'll need to hack two different things for this one, you need to disable the animations for attacking while its in use and the actual attacking.
(If you leave the animation on, it won't work correctly.)
Disable Attack Animation
Go to 0048A10B and change the command there to JE 0048A19D .
This will disable the attack animation for players. (Yourself and others)
Damage Hack
Go to 00487581 and change that code to CALL 00426E04 .
This command will jump to our custom code.
Go to 00487587, right click it, go to Binary -> Fill With NOPs.
This change will disable the client from setting the current attack state.
Go to 004875B7, right click it, go to Binary -> Fill With NOPs.
This change will disable attack speed, so your next attack is called instantly.
Now go to 00426E04 and put this code:
XOR EDI,EDI
MOV EDX,DWORD PTR DS:[0AF32E4]
MOV EAX,DWORD PTR DS:[0AF32E0]
MOV ECX,DWORD PTR DS:[0AC4FB8]
PUSH EDX
PUSH EAX
PUSH 0
PUSH 1308
CALL 00406E70
MOV EDX,DWORD PTR DS:[0AF32E4]
MOV EAX,DWORD PTR DS:[0AF32E0]
PUSH EDX
PUSH EAX
LEA ECX,DWORD PTR SS:[ESP+1C]
PUSH ECX
MOV ECX,DWORD PTR DS:[0AC4FB8]
PUSH 1307
CALL 00406E70
INC EDI
CMP EDI,4
JL SHORT 00426E06
MOV EDI,EBP
RETN
This code sends 4 sets of stop attacking / start attacking commands to the server.
The 4 in CMP EDI, 4 is how many loops it does, so you can change it to suit your needs.
(I dont suggest going over 20, 4 should be the perfect number for everyone.. Going too high may make you do less damage.)
Remove Chat Filter
This hack will let you bypass the cuss filter.
Change the code at 004D29EC to JMP SHORT 004D2A0A .
|