Thread: I Wonder

Results 1 to 4 of 4
  1. #1
    ninjapwner's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    27
    Reputation
    10
    Thanks
    9
    My Mood
    Confused

    Question I Wonder

    i wonder how u guys make hacks and find the addies for the hack
    can u guys pleas give me a simple tut of how to make a fly hack? with hotkeys.
    please that would be great if u do.

  2. #2
    ninjapwner's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    27
    Reputation
    10
    Thanks
    9
    My Mood
    Confused
    sorry for the spam but i cant edit my thing so yeah....
    anyways i know that this have to do with c++ and some other stuff which i dont get.


    i tried c++ and it is confusing for me like i dont know wat to do.so i only want to learn how to make ca hacks.

  3. #3
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Wel you gotta learn a little c++ first..
    but heres the code..i put errors in it

    [php]#include "stdafx.h"
    #include <windows.h>

    void __cdecl PushToConsole( const char* szCommand )
    {
    DWORD *LTClient = ( DWORD* )( Lt Client Addie );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );

    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;

    }
    bool IsGameReadyForHook()
    {
    if( GetModuleHandleA( "d3d9.dll" ) != NULL
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL
    && GetModuleHandleA( "CShell.dll" ) != NULL )
    return true;

    return false;
    }

    void main()
    {
    MessageBoxA(NULL," Fly","Hack",MB_OK);
    while (!IsGameReadyForHook()){
    Sleep(20);
    }



    while(true){



    if(GetAsyncKeyState(VK_UP)<0)
    PushToConsole( "PlayerGravity 800" );
    else
    PushToConsole( "PlayerGravity -800" );

    Sleep(200);

    }

    BOOL APIENTRY DllMain( HMODULE hModule,
    DWORD ul_reason_for_call,
    LPVOID lpReserved
    )
    {
    switch (ul_reason_for_call)
    {
    case DLL_PROCESS_ATTACH:
    CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)&main, NULL, 0,NULL);
    break;
    case DLL_THREAD_ATTACH:
    case DLL_THREAD_DETACH:
    case DLL_PROCESS_DETACH:
    break;
    }
    return TRUE;
    } [/php]

  4. #4
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    /solved
    /Closed.
    -Rest in peace leechers-

    Your PM box is 100% full.

Similar Threads

  1. Replies: 6
    Last Post: 12-08-2008, 12:57 PM
  2. hey i was wondering wat hacks still work?
    By killajones427 in forum WarRock - International Hacks
    Replies: 4
    Last Post: 04-27-2007, 05:42 AM
  3. to those who are wondering
    By Hyperion in forum MapleStory Hacks, Cheats & Trainers
    Replies: 32
    Last Post: 03-16-2007, 05:18 AM
  4. Juss Wondering
    By qwerty1029 in forum Suggestions, Requests & General Help
    Replies: 3
    Last Post: 02-11-2007, 07:05 PM
  5. It's A Wonderful Internet
    By Jackal in forum Entertainment
    Replies: 12
    Last Post: 09-08-2006, 03:18 PM