
Originally Posted by
yulu
In source section have all tools that u need for make a DLL, search it.
More precisaly this addres that have in ur SS is:
Code:
*(BYTE*)0x00548F2D = 0xFF;
How do you think ? i want to change the value and change it back using hotkey
#include <Windows.h>
#include <iostream>
void WINAPIV WeaponIndexErrorBypass(LPVOID)
{
while (1)
{
if (GetAsyncKeyState(VK_F9))
{
*(BYTE)0x00548F2D = 0;
}
Sleep(100);
}
}
void WINAPIV WeaponIndexErrorBypass2(LPVOID)
{
while (2)
{
if (GetAsyncKeyState(VK_F10))
{
*(BYTE)0x00548F2D = 0xFF;
}
Sleep(300);
}
}
INT WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
DisableThreadLibraryCalls(hDll);
if (dwReason == DLL_PROCESS_ATTACH)
{
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)BetaBypass, NULL, NULL, NULL);
MessageBox(0, "Credit By ....", "Coded By ....!", 0);
}
return true;
}