Results 1 to 13 of 13
  1. #1
    maxhax195's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0

    Smile I need help making warrock hacks

    always when i make then i save it does not give me the dll to it?
    what to do help please!

  2. #2
    You do not feel comfortable sailer or at home
    MPGH Member
    sn1p3ro12's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    1,104
    Reputation
    10
    Thanks
    198
    omg me to want help to make hack :P
     


    DONT FORGET TO THANK ME

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

    maxhax195 (09-06-2011)

  4. #3
    AeroMan's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Hell
    Posts
    3,294
    Reputation
    189
    Thanks
    3,049
    My Mood
    Busy
    press f7 to compile
    if c++ 'succeed' then you'll get the dll

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

    Pitcher (09-06-2011)

  6. #4
    maxhax195's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0

    Thumbs down

    Quote Originally Posted by Alex_Agnew View Post
    press f7 to compile
    if c++ 'succeed' then you'll get the dll
    ohh thx that was it :P

    Quote Originally Posted by sn1p3ro12 View Post
    omg me to want help to make hack :P
    still does not give me
    source :
    [spoiler]
    Heres my source i put in(no errors)
    #include <stdio.h>
    #include <windows.h>

    //Address go Here
    #define Playerpointer 0x00CB11C8 //these are current
    #define Serverpointer 0x00B39BE0 // as of 8-11-09
    #define OFS_X 0x0000023C // on Warrock int
    #define OFS_Y 0x00000244 // change them when needed
    #define OFS_Z 0x00000240
    #define ADR_FAST_HEALTH 0x00AF5404
    #define ADR_FAST_AMMO 0x00AF5400
    #define ADR_FAST_FLAG 0x00AF5408
    #define ADR_FAST_REPAIR 0x00AF540C
    #define ADR_SPEED 0x0099ADA8
    #define ADR_SPAWN_1 0x00C48320
    #define ADR_SPAWN_2 0x00CACF2C
    #define ADR_BOUNDS_1 0x00C5DF9C
    #define ADR_BOUNDS_2 0x00C5DFA0
    #define ADR_SCOPE 0x00AF53F6
    #define ADR_Spread 0x00AF5458


    HANDLE Warrock;
    DWORD *ingame= (DWORD*)Playerpointer;
    DWORD *outgame= (DWORD*)Serverpointer;

    //Hack Codes Go Here
    //Fast All
    void Fastall()
    {
    *(float*) ADR_FAST_HEALTH = 5000000;
    *(float*) ADR_FAST_AMMO = 5000000;
    *(float*) ADR_FAST_FLAG = 50000;
    *(float*) ADR_FAST_REPAIR = 5000000;
    }
    //Speed
    void speed() // insert key, speed on
    {
    if(GetAsyncKeyState(VK_F1) &1)
    {
    *(float*) ADR_SPEED = 1500;
    }
    }
    void speedoff() // delete key, speed normal
    {
    if(GetAsyncKeyState(VK_F2) &1)
    {
    *(float*) ADR_SPEED = 100;
    }
    }
    //No Spawn Wait
    void nowait()
    {
    *(float*) ADR_SPAWN_1 = 0;
    *(float*) ADR_SPAWN_2 = 0;
    }
    //No Boundries
    void nobound()
    {
    //if (nobound)
    {
    long t=0;
    unsigned long Protection;
    VirtualProtect((void*)ADR_BOUNDS_1, sizeof(t), PAGE_READWRITE, &Protection);
    memcpy((void*)ADR_BOUNDS_1, &t , sizeof(t));
    VirtualProtect((void*)ADR_BOUNDS_1, sizeof(t), Protection, 0);
    VirtualProtect((void*)ADR_BOUNDS_2, sizeof(t), PAGE_READWRITE, &Protection);
    memcpy((void*)ADR_BOUNDS_2, &t , sizeof(t));
    VirtualProtect((void*)ADR_BOUNDS_2, sizeof(t), Protection, 0);
    }
    }
    //Scope
    void scope()
    {
    if(GetAsyncKeyState(VK_F3))
    {
    int t=1;
    unsigned long Protection;
    VirtualProtect((void*)ADR_SCOPE, sizeof(t), PAGE_READWRITE, &Protection);
    memcpy((void*)ADR_SCOPE, &t , sizeof(t));
    VirtualProtect((void*)ADR_SCOPE, sizeof(t), Protection, 0);
    }
    else
    {
    int t=0;
    unsigned long Protection;
    VirtualProtect((void*)ADR_SCOPE, sizeof(t), PAGE_READWRITE, &Protection);
    memcpy((void*)ADR_SCOPE, &t , sizeof(t));
    VirtualProtect((void*)ADR_SCOPE, sizeof(t), Protection, 0);
    }
    }
    //No Spread
    void Spread()
    {
    *(float*) ADR_Spread = 0;
    }

    //Any other hacks you decide to add go above here
    //Hack are put into the game here
    void snip()
    {
    for(;; )
    {
    if(*ingame) //check if we are ingame.. prevent crashs
    {
    Fastall();
    speed(); // player hacks go here
    speedoff();
    scope();
    }
    if(*outgame)
    {
    Spread();
    nowait(); //server hacks go here
    }
    Sleep(200); //prevent for overloading the cpu
    }
    }
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    MessageBoxA(NULL, "maxhax195", "Credits", MB_OK); // Put your
    //name where Your Name Here is but leave the ""
    MessageBoxA(NULL, "Sniper8ce's base", "Credits", MB_OK); // Do not
    // edit this
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)snip, 0, 0, 0); //create
    // the hackthread
    }
    return TRUE;
    }
    Help?
    [/spoiler]
    Last edited by maxhax195; 09-06-2011 at 10:42 AM.

  7. #5
    matthy's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    73
    Reputation
    10
    Thanks
    12
    My Mood
    Amazed
    i think i know what u did wrong
    at the first steps, when u open c++
    1:u create a new project
    2:did u clicked at win32?then at win 32 console aplication?
    3:then click next
    4:did u then clicked at dll?

  8. #6
    FileCorrupt's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    658
    Reputation
    -2
    Thanks
    30
    My Mood
    Amazed
    Go To Documents>ProgrammingTool>Project>ProjectName>Debu g.

  9. #7
    Terell.'s Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    JAMAICAA
    Posts
    6,923
    Reputation
    273
    Thanks
    1,163
    My Mood
    Angry
    I can assist you over Teamviewer .

    Warrock Minion 8-13-2011 - N/A
    A.V.A Minion since 11-1-11 - 11-12-11

  10. The Following User Says Thank You to Terell. For This Useful Post:

    maxhax195 (09-07-2011)

  11. #8
    Enj0i's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    217
    Reputation
    6
    Thanks
    419
    My Mood
    Amazed
    ROFL that looks like camel's base.
    I'm probably one of the few noobs that actually reads the thread.



    Click Here for a starter book to learn C++!
    Click Here for a beginner's book to learn D3D!

    If I Helped You, Press the Thanks button!

  12. #9
    barcoder's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Visual Studio C++
    Posts
    265
    Reputation
    14
    Thanks
    88
    My Mood
    Happy
    Looks like sniper8ce's base Lol

  13. #10
    R3dLine's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    783
    Reputation
    212
    Thanks
    1,462
    Change the .dll place from Debug to Releas

  14. #11
    Naruto Boy's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    E-Konoha
    Posts
    127
    Reputation
    10
    Thanks
    10
    My Mood
    Sleepy
    Why use void for every function ?
    Respect List:
    Tobi

  15. #12
    barcoder's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Visual Studio C++
    Posts
    265
    Reputation
    14
    Thanks
    88
    My Mood
    Happy
    @Naruto Boy He's right, why void everything, when u could just void hacks and put everything under that.

  16. #13
    maxhax195's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    hm teamviewer id & password ?

Similar Threads

  1. [Solved] Need help making a hack
    By Jordyr in forum CrossFire Help
    Replies: 8
    Last Post: 09-16-2011, 04:53 PM
  2. i need help making CA hacks
    By kill_boy in forum Combat Arms Hacks & Cheats
    Replies: 1
    Last Post: 04-01-2009, 02:15 PM
  3. [Help how?]Need help making a WR hack please look.
    By mikelmao11 in forum WarRock - International Hacks
    Replies: 1
    Last Post: 07-18-2008, 12:43 PM
  4. Need help with warrock hack
    By drumak in forum Suggestions, Requests & General Help
    Replies: 3
    Last Post: 07-05-2008, 07:19 PM
  5. Help making warrock wepon trainer. Needs to be undetected
    By shadowsecret in forum WarRock - International Hacks
    Replies: 8
    Last Post: 03-23-2007, 10:04 AM