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.
So it is simple to use it for simple hacks like speed and damage.
So we can simply do it by:
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.
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 we can simply do it by:
Code:
*(BYTE*)(AddressOfAK47 + 0x17C) = 5; //Damage *(BYTE*)(AddressOfAK47 + 0x17C) = 0x44;
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.
