OutdatedMaster all weapon

Posts 46–60 of 62 · Page 4 of 5
Quote Originally Posted by lauquan098 View Post
Hello reply me @Minerva
I already said bro, dosent matter if is: int, dword, byte, word bcz you can use any, the important is the time.
Code:
#include <Windows.h>

VOID WINAPIV Hack(LPVOID)
{
	while (1)
		(
			if (GetAsyncKeyState(VK_F6))
				(
					*(BYTE*)(*(DWORD*)(*(DWORD*)(0x101E8976) = 0xFDE7
				    *(BYTE*)(*(DWORD*)(*(DWORD*)(0x101E8978) = 0xFDE7
					*(BYTE*)(*(DWORD*)(*(DWORD*)(0x101E897A) = 0xFDE7
					*(BYTE*)(*(DWORD*)(*(DWORD*)(0x101E897C) = 0xFDE7
					*(BYTE*)(*(DWORD*)(*(DWORD*)(0x101E897E) = 0xFDE7
					*(BYTE*)(*(DWORD*)(*(DWORD*)(0x101E8980) = 0xFDE7
					*(BYTE*)(*(DWORD*)(*(DWORD*)(0x101E8982) = 0xFDE7
												)
												)
											)

;INT WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
	DisableThreadLibraryCalls(hDll);

	if (dwReason == DLL_PROCESS_ATTACH)
	{
		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hack, NULL, NULL, NULL);
	}
	return true;
}
this is what I made, try asking around here to see what is wrong with this, I don't know how to fix this, this should be the right address and change value
Quote Originally Posted by KKrysis View Post
Code:
#include <Windows.h>

VOID WINAPIV Hack(LPVOID)
{
	while (1)
		(
			if (GetAsyncKeyState(VK_F6))
				(
					*(BYTE*)(*(DWORD*)(*(DWORD*)(0x101E8976) = 0xFDE7
				    *(BYTE*)(*(DWORD*)(*(DWORD*)(0x101E8978) = 0xFDE7
					*(BYTE*)(*(DWORD*)(*(DWORD*)(0x101E897A) = 0xFDE7
					*(BYTE*)(*(DWORD*)(*(DWORD*)(0x101E897C) = 0xFDE7
					*(BYTE*)(*(DWORD*)(*(DWORD*)(0x101E897E) = 0xFDE7
					*(BYTE*)(*(DWORD*)(*(DWORD*)(0x101E8980) = 0xFDE7
					*(BYTE*)(*(DWORD*)(*(DWORD*)(0x101E8982) = 0xFDE7
												)
												)
											)

;INT WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
	DisableThreadLibraryCalls(hDll);

	if (dwReason == DLL_PROCESS_ATTACH)
	{
		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hack, NULL, NULL, NULL);
	}
	return true;
}
this is what I made, try asking around here to see what is wrong with this, I don't know how to fix this, this should be the right address and change value
haha Funny Code

Why you put *(BYTE*)(*(DWORD*)(*(DWORD*) while Addr Just (0x101E897A) ?

See
*(BYTE*)(*(DWORD*)(*(DWORD*)
(0x009CD258) + 0x18) + 0x16B)


for *(BYTE*)(*(DWORD*)(*(DWORD*)(0x009CD258) + 0x18) + 0x16B) = 101;
Code:
#include <Windows.h>

VOID WINAPIV Hack(LPVOID)
{
	while (1)
	{
		if (GetAsyncKeyState(VK_F6))
		{
			*(BYTE*)(0x101E8976) = 0xFDE7;
			*(BYTE*)(0x101E8978) = 0xFDE7;
			*(BYTE*)(0x101E897A) = 0xFDE7;
			*(BYTE*)(0x101E897C) = 0xFDE7;
			*(BYTE*)(0x101E897E) = 0xFDE7;
			*(BYTE*)(0x101E8980) = 0xFDE7;
			*(BYTE*)(0x101E8982) = 0xFDE7;
		}
	}
}

INT WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
	DisableThreadLibraryCalls(hDll);

	if (dwReason == DLL_PROCESS_ATTACH)
	{
		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hack, NULL, NULL, NULL);
	}
	return true;
}
Should be like this.
Quote Originally Posted by buxkaizhe View Post
Code:
#include <Windows.h>

VOID WINAPIV Hack(LPVOID)
{
	while (1)
	{
		if (GetAsyncKeyState(VK_F6))
		{
			*(BYTE*)(0x101E8976) = 0xFDE7;
			*(BYTE*)(0x101E8978) = 0xFDE7;
			*(BYTE*)(0x101E897A) = 0xFDE7;
			*(BYTE*)(0x101E897C) = 0xFDE7;
			*(BYTE*)(0x101E897E) = 0xFDE7;
			*(BYTE*)(0x101E8980) = 0xFDE7;
			*(BYTE*)(0x101E8982) = 0xFDE7;
		}
	}
}

INT WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
{
	DisableThreadLibraryCalls(hDll);

	if (dwReason == DLL_PROCESS_ATTACH)
	{
		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hack, NULL, NULL, NULL);
	}
	return true;
}
Should be like this.
so should be (*BYTE*) only?
Quote Originally Posted by KKrysis View Post
so should be (*BYTE*) only?
Yes , bacause there just 1 addr not 3
Quote Originally Posted by nikazizi97 View Post
Yes , bacause there just 1 addr not 3
OK, btw, u guys know how to fix these error?

Severity Code Description Project File Line Suppression State
Error LNK2005 _DllMain@12 already defined in dllmain.obj MultiHack c:\Users\YenChen\documents\visual studio 2015\Projects\MultiHack\MultiHack\MultiHack.obj 1

Severity Code Description Project File Line Suppression State
Error LNK1169 one or more multiply defined symbols found MultiHack c:\users\yenchen\documents\visual studio 2015\Projects\MultiHack\Debug\MultiHack.dll 1
Quote Originally Posted by KKrysis View Post
OK, btw, u guys know how to fix these error?

Severity Code Description Project File Line Suppression State
Error LNK2005 _DllMain@12 already defined in dllmain.obj MultiHack c:\Users\YenChen\documents\visual studio 2015\Projects\MultiHack\MultiHack\MultiHack.obj 1

Severity Code Description Project File Line Suppression State
Error LNK1169 one or more multiply defined symbols found MultiHack c:\users\yenchen\documents\visual studio 2015\Projects\MultiHack\Debug\MultiHack.dll 1
i never heard the error , if you still not found the solution , try go google
Quote Originally Posted by nikazizi97 View Post
i never heard the error , if you still not found the solution , try go google
Already went to Google, no luck
Quote Originally Posted by KKrysis View Post
Already went to Google, no luck
Hope @Minerva will answer for YOU
Quote Originally Posted by nikazizi97 View Post
Hope @Minerva will answer for YOU
LEL, hope so
Posts 46–60 of 62 · Page 4 of 5
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?