Results 1 to 5 of 5
  1. #1
    Wizdom-X's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Earth
    Posts
    526
    Reputation
    19
    Thanks
    113
    My Mood
    Amused

    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??



  2. #2
    sh_z_sektor's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Olly
    Posts
    1,505
    Reputation
    63
    Thanks
    1,633
    My Mood
    Amused
    Come on Give some credits this isn't you'r code omg

  3. #3
    Alen's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    Liquid Generator
    Posts
    27,920
    Reputation
    2548
    Thanks
    4,224
    My Mood
    Fine
    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.

  4. #4
    Chuck Norris's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Location
    Between my ears
    Posts
    1,703
    Reputation
    86
    Thanks
    456
    My Mood
    Angelic
    Plus, where you want help with?
    You can't expect us to look trought the "whole" code...
    I'm too lazy haha.
    “Those who control the past, control the future: who controls the present controls the past” ~ George Orwell

    Its me, Dreamgun

  5. #5
    TheCamels8's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Israel :D
    Posts
    2,945
    Reputation
    174
    Thanks
    1,376
    My Mood
    Cheeky
    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;
    }

  6. The Following User Says Thank You to TheCamels8 For This Useful Post:

    Wizdom-X (01-14-2011)