Fix it please.......

Posts 17 of 7 · Page 1 of 1
Fix it please.......
memcpy((VOID*)Wallhack, "\x00\x00\x00\x00\x00\x00", 6); <== I know this on
memcpy((VOID*)Wallhack, "\x01\x01\x01\x01\x01\x01", 6); <==I know this .off.

I make this memory Wallhack memcpy((VOID*)Wallhack, "\x00\x00\x00\x68\x00\x00", 6); <== I know this on for me.

my question
how to find memory/byte Wallhack Off from wallhack on??

help me please...
i want to make wallhack Hotkey not Auto on .
bool WH = false;
if (GetAsyncKeyState(key)) WH = !WH;

if(WH) memcpy((VOID*)Wallhack, "\x00\x00\x00\x00\x00\x00", 6); <== I know this on
else memcpy((VOID*)Wallhack, "\x01\x01\x01\x01\x01\x01", 6); <==I know this .off.
Quote Originally Posted by rabir007 View Post
bool WH = false;
if (GetAsyncKeyState(key)) WH = !WH;

if(WH) memcpy((VOID*)Wallhack, "\x00\x00\x00\x00\x00\x00", 6); <== I know this on
else memcpy((VOID*)Wallhack, "\x01\x01\x01\x01\x01\x01", 6); <==I know this .off.
i know it.

i make this memory
memcpy((VOID*)Wallhack, "\x00\x00\x00\x68\x00\x00", 6); <== I know this on[/COLOR]

how to find memory off if i use memcpy((VOID*)Wallhack, "\x00\x00\x00\x68\x00\x00", 6);
I think it's 6 NOPS ...
uhm i'm not sure

he wants the default value of wallhacks bytes... so he could turn hacks on and off

memcpy((VOID*)Wallhack, "\x00\x00\x00\x68\x00\x00", 6); // ON
memcpy((VOID*)Wallhack, "?" 6); // OFF
Quote Originally Posted by HackPro_C3 View Post
i know it.

i make this memory
memcpy((VOID*)Wallhack, "\x00\x00\x00\x68\x00\x00", 6); <== I know this on
Quote Originally Posted by HackPro_C3 View Post

how to find memory off if i use memcpy((VOID*)Wallhack, "\x00\x00\x00\x68\x00\x00", 6);
byte OfficialArray[6];
for (int i = 0; i < 6; i++)
OfficialArray[i] = *(byte*)(WallhackAddy + i);

Woala, you got the official values...
[/COLOR]
Quote Originally Posted by HackPro_C3 View Post
i know it.

i make this memory
memcpy((VOID*)Wallhack, "\x00\x00\x00\x68\x00\x00", 6); <== I know this on[/COLOR]

how to find memory off if i use memcpy((VOID*)Wallhack, "\x00\x00\x00\x68\x00\x00", 6);
same that turns off
memcpy((VOID*)Wallhack, "\x01\x01\x01\x01\x01\x01", 6);
greets, giniyat (iam the one who made that shit someday)
Quote Originally Posted by giniyat101 View Post
same that turns off
memcpy((VOID*)Wallhack, "\x01\x01\x01\x01\x01\x01", 6);
greets, giniyat (iam the one who made that shit someday)
i try this



if(GetAsyncKeyState(VK_NUMPAD1)&1)
{
bWallhack = !bWallhack;

if(bWallhack)
{
memcpy((VOID*)Wallhack, "\x00\x00\x00\x68\x00\x00", 6);
} else {
memcpy((VOID*)Wallhack, "\x01\x01\x01\x01\x01\x01", 6);
}
}

But Not Work memory off giniyat101
because my pointer look this.

WallHackBase + A4 = Base
Base + 68 = Wallhack <=== Im use this Pointer after calculate Base+68

memcpy((VOID*)0x6D29F4, "\x00\x00\x00\x68\x00\x00", 6); <== On Working
memcpy((VOID*)0x6D29F4, "\x01\x01\x01\x01\x01\x01", 6); <== Not Working Back to Off
Posts 17 of 7 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?