Results 1 to 9 of 9
  1. #1
    vitinho444's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Location
    Portugal
    Posts
    10
    Reputation
    10
    Thanks
    5

    [Warrock] I Make this hack and Now need help! Please read

    Hello all MPGH Community
    I found there some Hack tutorials in c++ 2008 for make nomenu warrock hacks.

    So i make my own hack with address of 15/07/10 (The Last Warrock Update)
    and i build the .DLL and make my own injector.
    So im gonna test it but.. suprisely it dont work..

    if someone can check my code for see any error its cool..

    Heres my main.cpp
    Code:
    #include <windows.h>
    #include <stdio.h>
    
    // Adress List //
    
    #define Playerpointer 0x00C3F068
    #define Serverpointer 0x00B39BE0
    #define OFS_Z 0x00000264
    #define OFS_PREMIUM 0x37C
    
    DWORD *ingame= (DWORD*)Playerpointer;
    DWORD *outgame= (DWORD*)Serverpointer;
    
    void Jump() // superjump if hit control button
    {
    if(GetAsyncKeyState(VK_LCONTROL) &1)
    {
    DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
    if(dwPlayerPtr != 0)
    {
    *(float*)(dwPlayerPtr+OFS_Z) = 1500;
    }
    }
    }
    
    
    
    void premium () // Gold Premium
    {
    DWORD dwPlayerPtr = *(DWORD*)Serverpointer;
    if(dwPlayerPtr != 0)
    {
    *(long*)(dwPlayerPtr+OFS_PREMIUM) = 3, 10; // 1 = bronze  2 = silver 3 = gold
    }
    }
    
    
    void HackThread() 
    {
    for(;; ) 
    {
    if(*ingame) //check if we are ingame.. prevent crashs
    {
    Jump();
    premium();
    }
    if(*outgame)
    {
    premium();
    }
    Sleep(200); //prevent for overloading the cpu
    }
    }
    
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
    	if(dwReason == DLL_PROCESS_ATTACH)
    	{
    
                CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0); //create the hackthread
    	}
    	return TRUE;
    }
    If u see some error please tell me. (i will credit all people who help me for the hack)

  2. #2
    Pagn's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    WarRock and C++ section
    Posts
    1,505
    Reputation
    32
    Thanks
    302
    My Mood
    Relaxed
    Those addies aren't up-to-date. The thread of up-to-date addies isn't new, it is old.

  3. The Following User Says Thank You to Pagn For This Useful Post:

    vitinho444 (07-17-2010)

  4. #3
    'Bruno's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Portugal
    Posts
    2,883
    Reputation
    290
    Thanks
    1,036
    My Mood
    Busy
    Leechers....
    Light travels faster than sound. That's why most people seem bright until you hear them speak.

  5. The Following User Says Thank You to 'Bruno For This Useful Post:

    Hell_Demon (07-17-2010)

  6. #4
    Pagn's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    WarRock and C++ section
    Posts
    1,505
    Reputation
    32
    Thanks
    302
    My Mood
    Relaxed
    You need to update your source code, because WarRock just turn into D3D9.

  7. The Following User Says Thank You to Pagn For This Useful Post:

    vitinho444 (07-17-2010)

  8. #5
    vitinho444's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Location
    Portugal
    Posts
    10
    Reputation
    10
    Thanks
    5
    Where are tutorials for that type od D3D?

    And where can i find the "Addy Logger" That all have one .. or (how can i make one xD)

    thanks for reply

  9. #6
    Pagn's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    WarRock and C++ section
    Posts
    1,505
    Reputation
    32
    Thanks
    302
    My Mood
    Relaxed
    -There aren't a d3d9 source code yet. If you want to get it now, try to do it yourself.
    -I never used an addys logger, but to get addies i just unpack my WarRock with Kernel Detective.

  10. #7
    vitinho444's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Location
    Portugal
    Posts
    10
    Reputation
    10
    Thanks
    5
    so .. ur saying that its almost inpossible to do hacks? right now?
    Are u sure that "my code" doesnt work anymore.. ?

    About the addie logger.. can u teach me your way ??

  11. #8
    inmate's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Bottrop, NRW, Germany
    Posts
    131
    Reputation
    10
    Thanks
    194
    My Mood
    Amazed
    Quote Originally Posted by vitinho444 View Post
    so .. ur saying that its almost inpossible to do hacks? right now?

    No, only people like you which only C&P codes from Tutorials or other People can´t C&P longer cheats

  12. The Following User Says Thank You to inmate For This Useful Post:

    Hell_Demon (07-17-2010)

  13. #9
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    Stop leeching and learn how to code

    ~locked~
    Ah we-a blaze the fyah, make it bun dem!

  14. The Following User Says Thank You to Hell_Demon For This Useful Post:

    Melodia (07-18-2010)

Similar Threads

  1. [Solved] Noobie here and i need help please
    By persha in forum Vindictus Help
    Replies: 6
    Last Post: 09-23-2011, 07:07 AM
  2. Replies: 0
    Last Post: 03-17-2010, 01:51 PM
  3. I am making Crossfire hack video and i need help...
    By Brumbo in forum CrossFire Hacks & Cheats
    Replies: 15
    Last Post: 08-03-2009, 04:39 AM
  4. WARROCK HACK AND INJECTOR NEEDED !
    By stoke101 in forum WarRock - International Hacks
    Replies: 20
    Last Post: 03-29-2009, 07:48 AM
  5. Hacks not working Need Help Please Administrator
    By Dema1998 in forum Combat Arms Hacks & Cheats
    Replies: 4
    Last Post: 01-01-2009, 12:56 PM