TUTORIALSimple Hacks like Damage and Speed

Posts 1–5 of 5 · Page 1 of 1
Simple Hacks like Damage and Speed
Here is a tutorial on how to make hacks in DLL.

You can search the weapon description in the shop to find where it is located in memory view. It will always be green, a static address.
For example, use cheat engine and search string with "legendary rifle", you will get one green address and one black. Open the green one in memory view.

Right click the A of "AK47" and get the address of it.

Code:
Offsets-Damage Etc.
Damage - 0x17C
Speed - 0x16F [Set Value 0x44/0x45]
No Recoil - 0x213 [Set Value 0x65/101]
All2Melee - 0x15D [Set Value 0x00/0]
Scope&Silencer - 0x162 [Set Value 0x65/101]
Rifle - 01
Sniper - 02
Pistol - 03
SMG - 04
Nade - 06
So it is simple to use it for simple hacks like speed and damage.
So we can simply do it by:
Code:
*(BYTE*)(AddressOfAK47 + 0x17C) = 5; //Damage
*(BYTE*)(AddressOfAK47 + 0x17C) = 0x44;
For Speed, you should set the value to 0x44 for Rifles and Snipers. You should set the value for Melee to 0x45.
Try not to set damage above 15 as it will lag.
There is a very simple way to loop all the weapons in Blackshot and make it all get the speed and damage etc.
You still need a source for this. Try to find in the coding section for BlackShot. There are many good tutorial over there.

dayum.....
/msg2short
Nice tutorial, too bad I'm leaving this big community soon, I will try to make a full tutorial on all the stuff I know before moving on to another section
nice arr . how about rapid offset? xD
Quote Originally Posted by wafinasir View Post
nice arr . how about rapid offset? xD
I posted on what to change in other post. Just find the offset you need to add by subtracting the address with the base. It is same for all weapons.
Posts 1–5 of 5 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?