Hi.
Well, here all steps of how to make a dll https://www.mpgh.net/forum/showthread.php?t=898623
Try first make a simple features like HP. (Need green host for enable HP).
HKbase is the first address of weapon list, what I mean, in blackshot have more than 375 weapons, but the first weapon on this list is HK416 that you can take as base and add a loop for all others weapons.
Credits: TABAJARA GROUPCode:DWORD HKbase = 0xUpdateYourCode; //Pointer of HK base DWORD difference = 0x220; //The difference of between each other weapon void Damage() { while(MemoryModifiedBypassed()) { if (GetAsyncKeyState(VK_F5)&1) { for (int Weapons = 0; Weapons < 379; Weapons ++) { *(BYTE*)(HKbase + (Weapons * difference)) = 15; //Damage example } } } }
In this generic example was done a damage loop for all weapons.