Help With No menu

Posts 15 of 5 · Page 1 of 1
Help With No menu
Any one Help Im Making a No Menu Help with code's my code:

Code:
#include <windows.h>
#include <stdio.h>

#define Playerpointer 0xBC4470
#define Severpointer 0xABF050
    #define Z_Offset 0x102D8
    #define NFD_Offset 0x103A8
void Superjump()
{
    if(GetAsyncKeyState(VK_CONTROL))
{
    DWORD PlP = *(DWORD*)Playerpointer;
    if(PlP != 0)
{
   *(float*)(PlP+Z_Offset) = 1500;
    }
    }
    }
 void NFD()
 {
   DWORD dwPlP = *(DWORD*)Playerpointer;
   if(dwPlP != 0)
{
   *(float*)(dwPlP+NFD_Offset) = -25000;
{
{
 void TheHacks()
 {
     for(;;)
      {
Superjump();
      NFD();
 Sleep(30);
      }
      }
 BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
MessageBoxA(NULL, "Wizdom-X", "Credits", MB_OK);
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)TheHacks , 0, 0, 0);
break;
case 2:
break;
}
Please Any Help??
Come on Give some credits this isn't you'r code omg
I would check that syntax again

Quote Originally Posted by sh_z_sektor View Post
Come on Give some credits this isn't you'r code omg
Anyone can write that code, it's not like it's a complex menu base with a bypass and stuff.
Plus, where you want help with?
You can't expect us to look trought the "whole" code...
I'm too lazy haha.
I fixed your code:

Code:
#pragma warning(disable: 4244)
#include <windows.h>
#include <stdio.h>

#define Playerpointer 0xBC4470
#define Severpointer 0xABF050
#define Z_Offset 0x102D8
#define NFD_Offset 0x103A8

void Superjump()
{
if(GetAsyncKeyState(VK_CONTROL) &1)
{
DWORD PlP = *(DWORD*)Playerpointer;
if(PlP != 0)
{
*(float*)(PlP+Z_Offset) = 1500;
}
}
}

void NFD()
{
DWORD dwPlP = *(DWORD*)Playerpointer;
if(dwPlP != 0)
{
*(float*)(dwPlP+NFD_Offset) = -25000;
}
}

void TheHacks()
{
for(;;)
{
Superjump();
NFD();
}
Sleep(200);
}
      
BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)TheHacks , 0, 0, 0);
MessageBoxA(NULL, "Wizdom-X", "Credits", MB_OK);
break;
}
return TRUE;
}
Posts 15 of 5 · Page 1 of 1
This thread is closed for replies.

Tags for this Thread

None

Need help?