Results 1 to 3 of 3
  1. #1
    boboben1's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    29
    My Mood
    Paranoid

    Make a no menu hack with Speed and Super JUMP (idiot Friendly)

    Required Tools:

    VC++ 2008
    Required Knowledge:

    How to make a file under heading section
    How to make a file under source section


    Copy this into a file named
    main under source files:
    #include "addies.h"
    #include <windows.h>

    DWORD WINAPI ONE(LPVOID ARGS) {

    for (;
    {
    if (GetKeyState(VK_F1) &1)
    {
    //ADDRESS HERE = Value Here
    }
    }
    }
    DWORD WINAPI TWO(LPVOID ARGS) {

    for (;
    {
    if (GetKeyState(VK_F2) &1)
    {
    //ADDRESS HERE = Value Here
    }
    }
    }
    DWORD WINAPI THREE(LPVOID ARGS){

    for (;
    {
    if (GetKeyState(VK_F3) &1)
    {
    //ADDRESS HERE = Value Here
    }
    }
    }
    DWORD WINAPI FOUR(LPVOID ARGS){

    for (;
    {
    if (GetKeyState(VK_F4) &1)
    {
    //ADDRESS HERE = Value Here
    }
    }
    }
    DWORD WINAPI FIVE(LPVOID ARGS){

    for (;
    {
    if (GetKeyState(VK_F5) &1)
    {
    //ADDRESS HERE = Value Here
    }
    }
    }
    DWORD WINAPI SIX(LPVOID ARGS){

    for (;
    {
    if (GetKeyState(VK_F6) &1)
    {
    //ADDRESS HERE = Value Here
    }
    }
    }
    DWORD WINAPI SEVEN(LPVOID ARGS){

    for (;
    {
    if (GetKeyState(VK_F7) &1)
    {
    //ADDRESS HERE = Value Here
    }
    }
    }
    DWORD WINAPI EIGHT(LPVOID ARGS){

    for (;
    {
    if (GetKeyState(VK_F8) &1)
    {
    //ADDRESS HERE = Value Here
    }
    }
    }
    DWORD WINAPI NINE(LPVOID ARGS){

    for (;
    {
    if (GetKeyState(VK_F9) &1)
    {
    //ADDRESS HERE = Value Here
    }
    }
    }
    void MakeThreads()
    {
    CreateThread(NULL,NULL,ONE,NULL,NULL,NULL);
    CreateThread(NULL,NULL,TWO,NULL,NULL,NULL);
    CreateThread(NULL,NULL,THREE,NULL,NULL,NULL);
    CreateThread(NULL,NULL,FOUR,NULL,NULL,NULL);
    CreateThread(NULL,NULL,FIVE,NULL,NULL,NULL);
    CreateThread(NULL,NULL,SIX,NULL,NULL,NULL);
    CreateThread(NULL,NULL,SEVEN,NULL,NULL,NULL);
    CreateThread(NULL,NULL,EIGHT,NULL,NULL,NULL);
    CreateThread(NULL,NULL,NINE,NULL,NULL,NULL);


    }


    void BaseStart()
    {
    MakeThreads();
    }

    BOOL WINAPI DllMain(HMODULE HM,DWORD Reason,LPVOID LP)
    {
    if (Reason == DLL_PROCESS_ATTACH)
    {
    BaseStart();
    }else if (Reason == DLL_PROCESS_DETACH)
    {

    }
    }

    Copy this into a header file named addies.h
    Thanks to Wiirtuallca for the addies
    #define Speedhack 0x00BFD6F8
    #define Superjump 0x00BFD6FC
    #define Godmode 0x00C12F18
    #define CharHook 0x00C163C4
    #define YAddie 0x00BFCB6C
    #define XAddie 0x00BFCB68
    #define ZAddie 0x00BFCB70
    #define Crosshair 0x00C12E5A
    #define NoSPread1 0x00C0CD78
    #define NoSPread2 0x00C0CD7C
    #define NoSpread3 0x00C0CD80
    #define Invisible 0x00C163EB
    #define FullnightVision 0x00A77DDF
    #define Cameffects 0x00A77DE0
    #define UnlAmmoPointer 0x00C0BC10
    #define UnlAmmoPointer2 0x00C0BC58
    Go to main.cpp and give a search for ONE (it should be at the top)

    Type this under Addies Here = Value here:

    *(float*)Speedhack = 100.0f;
    And it should look like this

    DWORD WINAPI ONE(LPVOID ARGS) {

    for (;
    {
    if (GetKeyState(VK_F1) &1)
    {
    *(float*)Speedhack = 100.0f;
    }
    }
    }
    For speed:

    Type this under Addies Here = Value here for TWO:

    *(float*)Superjump = 999.0f;
    Now it should look like this:

    DWORD WINAPI TWO(LPVOID ARGS) {

    for (;
    {
    if (GetKeyState(VK_F2) &1)
    {
    *(float*)Superjump = 999.0f;
    }
    }
    }
    First change the mode to release
    Hit Control+Shift+B to build


    Find your hack(usually under C:\users\YOUR NAME HERE\documents\Visual Studio 2008\projects\whateveryounamedit\Release\whatevery ounamedit.dll)

    Inject it into OPERATION7.exe


    YOUR DONE

  2. #2
    Solify's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Frankfurt, Germany
    Posts
    2,291
    Reputation
    143
    Thanks
    2,477
    My Mood
    Aggressive
    good tutorial for the guys who dont know anything about c++

  3. #3
    doofbla's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Biel*****/Germany
    Posts
    369
    Reputation
    10
    Thanks
    179
    My Mood
    Psychedelic
    lol - really lke the title says "idiot friendly" xD

    But you did what you said so... good =)
    _____________________________________________

    READING TUTORIAL:

    1. READ MY POST
    2. THINK ABOUT MY POST
    3. PRESS THANKS
    4. MAYBE CORRECT MY POSTS :P




    Dijkstra:
    "Computer Science is no more about computers than astronomy is about
    telescopes."


    THANKS BUTTON RIGHT DOWN --->

Similar Threads

  1. [Solved] Can some one help me with NFD And Super Jump
    By tubby6901 in forum WarRock Help
    Replies: 4
    Last Post: 09-04-2011, 06:25 PM
  2. How To Make Warrock D3d Menu Hack with all hack functions
    By srinuv in forum Programming Tutorial Requests
    Replies: 5
    Last Post: 09-15-2010, 08:12 AM
  3. Please post : how to make combat arms hack with aimbot and bypass video please!
    By zerro1995 in forum Programming Tutorial Requests
    Replies: 1
    Last Post: 06-02-2009, 10:10 AM
  4. [tut for noobs] How to make a fast as hack with vb
    By atheist in forum WarRock - International Hacks
    Replies: 19
    Last Post: 02-19-2008, 04:15 AM
  5. [tut for noobs] How to make a anti kick hack with vb
    By atheist in forum WarRock - International Hacks
    Replies: 3
    Last Post: 02-13-2008, 09:17 AM

Tags for this Thread