i really need help my source code i use is this
plz help me
- Code:
#include <Windows.h>
#define WeaponMgr 0xB65E94//
#define BasicPlayerInfo 0xAFED64//
#define knifeOHK 0xBA4//
#define CrouchSpeed 0xC//
void UndetectedBase()
{
DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
if (GetModuleHandleA("ClientFx.fxd")&&GetModuleHandleA("CShell.dll"))
{
if (CShell + WeaponMgr)
for(int i=0; i<700; i++)
{
if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
{
for (int j=0; j<10 ; j++)
{
*(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + knifeOHK+j*4) = 2000;
*(float*)((*(DWORD*)((*(DWORD*)(CShell+BasicPlayerInfo)) +(4*i))) + CrouchSpeed+j*4) = 2;
}
}
}
}
Sleep(151);
}
void Base()
{
for(;;)UndetectedBase();
}
BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
if (dwReason == DLL_PROCESS_ATTACH)
{
DisableThreadLibraryCalls(hDll);
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Base, NULL, NULL, NULL);
}
return TRUE;
}
plz help me
Last edited by emman9666666 on Sun Sep 02, 2012 2:10 pm; edited 1 time in total (Reason for editing : i did wrong first time)