[WFEU] Base Simple + Adress 06\11

Posts 1–15 of 21 · Page 1 of 2
[WFEU] Base Simple + Adress 06\11
NoFlash

Code:
#define NoFlash			0x00D9A86D

Code:
Bytes OFF: \x68\x7C\x28\x58\x01
Bytes ON : \x68\x7C\x28\x58\x00
Rapid Fire

Code:
#define RapidFire		0x0063FD1A
Code:
Bytes OFF: \x68\x38\x5D\x50\x01
Bytes ON : \x68\x38\x5D\x50\x00
to use the functions and need an address to disable anti cheat


Code:
#include <Windows.h>
#include <stdio.h>
#include <process.h>

//Adress Warface EU
#define RateofFireEU		0x0063FD1A//telemetry_getleaderboard
#define NoFlashEU		0x00D9A86D//flashbangBaseTime

VOID MemoryWrite(void *adr, void *ptr, int size)
{
	DWORD OldProtection;
	VirtualProtect(adr, size, PAGE_EXECUTE_READWRITE, &OldProtection);
	memcpy(adr, ptr, size);
	VirtualProtect(adr, size, OldProtection, &OldProtection);
}

INT RapidFire, Flash;

BOOL InGameLoad()
{
	return(
		GetModuleHandleA("Game.exe") &&
		GetModuleHandleA("CryOnline.dll") &&
		GetModuleHandleA("ocevogyv.dll") ?
		0 : 1);
}

VOID Hacks(LPVOID)
{
	if (GetAsyncKeyState(VK_INSERT) & 1)
		RapidFire = !RapidFire;

	if (RapidFire) {
		MemoryWrite((void*) (RateofFireEU), "\x68\x38\x5D\x50\x01", 5);
	} else {
		MemoryWrite((void*) (RateofFireEU), "\x68\x38\x5D\x50\x00", 5);
	}

	if (GetAsyncKeyState(VK_HOME) & 1)
		Flash = !Flash;

	if (Flash) {
		MemoryWrite((void*) (NoFlashEU), "\x68\x7C\x28\x58\x01", 5);
	} else {
		MemoryWrite((void*) (NoFlashEU), "\x68\x7C\x28\x58\x00", 5);
	}
}

unsigned int __stdcall Hook(LPVOID)
{
	while (1)
	{
		while (!InGameLoad())
			Sleep(100);
		__asm   CALL Hacks;
	}
	return 0;
}

BOOL __stdcall DllMain(HINSTANCE hDll, LONG dwReason, VOID* lpReserved)
{
	if (dwReason == DLL_PROCESS_ATTACH)
	{
		_beginthreadex(0, 0, Hook, 0, 0, 0);
	}
	return 1;
}

Credits

@6ixth <- This Source


Thanks for credits and GJ.
Good Job
Bitch <3
Can you pelase send me video how to apply it?
What is this good for? Only disable anti cheat programm?
Sry, but i dont know how to use it?
Can anywhere tell me ,,How to use,,?
PLS
sorry i dont get this
lol much noobies
pls help me. should I copy all codes or just the last code???
Can you make a tutorial? i use visual studios can i just copy paste compile and run or not? i am still learning stuff..... i found out the code of warface.exe with ollydbg but i am still learning many things...and i also know how to work with cheat engine....
Can you help with a tutorial plzz?

Best regards
What kind of forum is this when nobody helps the beginners -.-
Quote Originally Posted by moneypulation View Post
What kind of forum is this when nobody helps the beginners -.-
It all depends on how busy the section is. This section is not a busy one so not many people frequent it.
There is a problem,codes are not working.Maybe I did something wrong
i bet this is c++,right,please help the noobies )))
what dafuq source code meanS?
Posts 1–15 of 21 · Page 1 of 2
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?