Hello today I found this source:
Does somebody know how to do this with the berzerker effect?Code:#define WIN32_LEAN_AND_MEAN #define WIN32_EXTRA_LEAN #include <windows.h> #pragma warning(disable:4244) bool lawnmow = true; int fShotTime = 1; typedef void (__cdecl* ZPostSkillFunc)(float fShotTime,int nSkill,int sel_type); ZPostSkillFunc ZPostSkill = (ZPostSkillFunc)0x0047D6E0; void LAWNMOWER() { if(GetAsyncKeyState(VK_F3)) { if(lawnmow == true){lawnmow = false;} else{lawnmow = true;} Sleep(100); } if( lawnmow == true ) { ZPostSkill(fShotTime,3,7); fShotTime++; } Sleep(10); } bool WINAPI DllMain(HMODULE hModule, DWORD dwReason, PVOID pvReserved) { if(dwReason == DLL_PROCESS_ATTACH) { DisableThreadLibraryCalls(hModule); CreateThread(NULL,0,(unsigned long (__stdcall *)(void *))LAWNMOWER,NULL,0,NULL); } return true; }


Reply With Quote


