Results 1 to 2 of 2
  1. #1
    barcoder's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Visual Studio C++
    Posts
    265
    Reputation
    14
    Thanks
    88
    My Mood
    Happy

    Warrock hack help

    heres my code - it wont work in warrock , please help
    i see the dllmai n. i fixed that but it keeps splitting here. btw it compiled succesfully but wont work in game. my 5th slot hack works but not this. i really want to release a new hack soon

    #include <Windows.h>

    // Addies Offsets Pointers //
    #define ADR_PLAYERPTR 0x00D4A730
    #define ADR_SERVERPTR 0x00C46960
    #define OFS_Z 0x102E8

    void PlayerHacks();


    int SuperJump = 1;
    int NoFall = 1;

    void PlayerHacks()
    {
    DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPTR;
    if(dwPlayerPtr != 0){


    if(GetAsyncKeyState(VK_CONTROL) &1){
    if(SuperJump){
    *(float*)(dwPlayerPtr+OFS_Z) = 2000.0F;
    }
    }
    if (NoFall)
    {*(float*)(dwPlayerPtr+OFS_Z) = -35000.0F;}

    }
    }
    void PlayerHacks(void);
    /// End hacks ///

    void hDllMain(void)
    {
    while(true){
    void PlayerHacks();
    Sleep(30);
    }
    }


    BOOL APIENTRY DllMain( HMODULE hModule,
    DWORD ul_reason_for_call,
    LPVOID lpReserved
    )
    {
    switch (ul_reason_for_call)
    {
    case DLL_PROCESS_ATTACH:
    DWORD dwID1 = 0;
    HANDLE hThread1 = CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)Dllmai n, NULL, NULL,&dwID1 );
    CloseHandle(hThread1);
    break;
    }
    return TRUE;
    }
    Last edited by barcoder; 07-16-2011 at 01:07 AM.

  2. #2
    Young angel; if you hate me tell me burn in heaven♥.
    MPGH Member
    Katy's Avatar
    Join Date
    May 2011
    Gender
    female
    Location
    Near that place..
    Posts
    1,778
    Reputation
    339
    Thanks
    4,456
    My Mood
    Relaxed
    you have a bypasser?
    Good luck kid.
    "Do not argue with an idiot. He will drag you down to his level and beat you with experience."
    Princess since: 7/3/2012
    Need something translated from/to English? PM/VM me!
     
    [/URL][/URL]
     
    MSN: mpgh.katy@yahoo.com
    Skype: mpgh.katy
    PM/VM me if you have any questions!


Similar Threads

  1. [ WARROCK HACKS HELP ]
    By lovelyHaxorz in forum General Game Hacking
    Replies: 0
    Last Post: 10-31-2009, 09:24 AM
  2. Big warrock hack (help)
    By dark_byte70 in forum WarRock - International Hacks
    Replies: 5
    Last Post: 11-08-2008, 08:07 AM
  3. Virtual basic warrock hack help!
    By iwanthacks121 in forum Programming Tutorial Requests
    Replies: 0
    Last Post: 05-03-2008, 03:15 PM
  4. warrock hacking help
    By josephjboogie3 in forum WarRock - International Hacks
    Replies: 3
    Last Post: 11-15-2007, 08:33 PM
  5. VB 6 and Warrock Hack Help
    By condor01 in forum WarRock - International Hacks
    Replies: 6
    Last Post: 07-03-2007, 06:53 PM