Results 1 to 12 of 12
  1. #1
    TheGoodB0y's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    507
    Reputation
    12
    Thanks
    44
    My Mood
    In Love

    Warrock Nomenu Base [Undecteted]

    #include <stdio.h>
    #include <windows.h>

    #define ADR_PlayerPointer 0x9D8AF0
    #define ADR_ServerPointer 0x9D8A8C
    #define OFS_NFD 0x00102C4
    #define OFS_SLOT5 0x00/not giving out
    #define OFS_SLOT6 0x00/not giving out
    #define OFS_SLOT7 0x00/not giving out
    #define OFS_SLOT8 0x00/not giving out
    #define OFS_PREMIUM1 0x00/not giving out
    #define OFS_PREMIUM2 0x00/not giving out
    #define ADR_Nospread 0x00/not giving out
    #define OFS_Norecoil1 0x00/not giving out
    #define OFS_Norecoil2 0x00/not giving out
    #define OFS_Norecoil3 0x00/not giving out

    void NoFallDamage(DWORD dwPlayerPointer)
    {
    *(float*)(dwPlayerPointer+OFS_NFD) = -20000;
    }

    void AllSlots(DWORD dwServerPointer)
    {
    *(int*)(dwServerPointer+OFS_SLOT5) = 1;
    *(int*)(dwServerPointer+OFS_SLOT6) = 1;
    *(int*)(dwServerPointer+OFS_SLOT7) = 1;
    *(int*)(dwServerPointer+OFS_SLOT8) = 1;
    }

    void allPREMIUM (DWORD dwServerPointer)
    {
    *(long*)(dwServerPointer+OFS_PREMIUM1) = 3;
    *(long*)(dwServerPointer+OFS_PREMIUM1) = 3;
    *(long*)(dwServerPointer+OFS_PREMIUM2) = 3;
    *(long*)(dwServerPointer+OFS_PREMIUM2) = 3;
    }

    void AllNorecoil (DWORD dwPlayerPointer)
    {
    *(int*)(dwPlayerPointer+OFS_Norecoil1) = 0;
    *(int*)(dwPlayerPointer+OFS_Norecoil2) = 0;
    *(int*)(dwPlayerPointer+OFS_Norecoil3) = 0;
    }

    void HookList()
    {
    for (;
    {
    DWORD dwPlayerPointer = *(DWORD*)ADR_PlayerPointer;
    if(dwPlayerPointer)
    {
    NoFallDamage(dwPlayerPointer);
    AllNorecoil(dwPlayerPointer);
    }
    DWORD dwServerPointer = *(DWORD*)ADR_ServerPointer;
    if(dwServerPointer)
    {
    AllSlots(dwServerPointer);
    allPREMIUM(dwServerPointer);
    }
    Sleep(50);
    }
    }
    BOOL WINAPI DllMain(HINSTANCE hModule,DWORD DERP,LPVOID lpReserved)
    {
    if(DERP == DLL_PROCESS_ATTACH)
    {
    CreateThread(0,0,(LPTHREAD_START_ROUTINE)HookList, 0,0,0);
    }
    return TRUE;
    }

  2. #2
    Enj0i's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    217
    Reputation
    6
    Thanks
    419
    My Mood
    Amazed
    LOL nice boy. But unfortunately shunnai already has a nice base tut and aeroman has allthese snippets.
    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!

  3. #3
    barcoder's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Visual Studio C++
    Posts
    265
    Reputation
    14
    Thanks
    88
    My Mood
    Happy
    Not bad but not needed

  4. #4
    TheGoodB0y's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    507
    Reputation
    12
    Thanks
    44
    My Mood
    In Love
    Quote Originally Posted by barcoder View Post
    Not bad but not needed
    haha, fail, it's unlaggy.
    i already coded somehacks with it...

  5. #5
    Terell.'s Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    JAMAICAA
    Posts
    6,923
    Reputation
    273
    Thanks
    1,163
    My Mood
    Angry
    All you did was put the codes together that Aeroman wrote. Only thing that you left was
    Code:
    #define ADR_PlayerPointer 0x9D8AF0
    #define ADR_ServerPointer 0x9D8A8C
    #define OFS_NFD 0x00102C4
    Thanks anyways, on your next release of your nomenu try doing your own base

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

  6. #6
    barcoder's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Visual Studio C++
    Posts
    265
    Reputation
    14
    Thanks
    88
    My Mood
    Happy
    My base is much smaller with 0 lag and works

  7. #7
    Pitcher's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Screwing your mom.
    Posts
    524
    Reputation
    53
    Thanks
    797
    My Mood
    Flirty
    Dont think ur special with u saying ;

    Not saying.

    all that addys can u find on this sire


    Back on the 30th of september.

    WarRock Contributer Force

    My hacks are only for WarRock International!


  8. #8
    Alen's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    Liquid Generator
    Posts
    27,920
    Reputation
    2548
    Thanks
    4,224
    My Mood
    Fine
    Quote Originally Posted by barcoder View Post
    My base is much smaller with 0 lag and works
    Size doesn't really matter, I could add 100 megs of comments and the performance wouldn't change. With such simple stuff the only thing you can do is have a decent compiler & optimize for speed (and use inline functions etc.). Gcc all the way

  9. #9
    barcoder's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Visual Studio C++
    Posts
    265
    Reputation
    14
    Thanks
    88
    My Mood
    Happy
    If it does the same but is smaller, that is easier to write

  10. #10
    Alen's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    Liquid Generator
    Posts
    27,920
    Reputation
    2548
    Thanks
    4,224
    My Mood
    Fine
    Quote Originally Posted by barcoder View Post
    If it does the same but is smaller, that is easier to write
    Just hardcode it then, screw form

  11. #11
    Gamer1204's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    addies: not saying ....... I would thanked you for the addies since thats the only thing I need, cmon people, share stuff, dont be nazis :P

  12. #12
    tubby6901's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    138
    Reputation
    18
    Thanks
    14
    My Mood
    Aggressive
    thank you it realy helped
    Need help in vb pm me and il help u

Similar Threads

  1. [Release] TheCamels8 NoMenu Base
    By TheCamels8 in forum WarRock Hack Source Code
    Replies: 52
    Last Post: 04-19-2011, 11:16 PM
  2. [Release] Deacon Unfinished NoMenu Base
    By Ikke0148 in forum WarRock Hack Source Code
    Replies: 4
    Last Post: 04-11-2011, 01:11 PM
  3. [Release] **NEW** WarRock NoMenu //UNLIMITED AMMO**GLASSWALLS***ETC!!//
    By TGH Zero. in forum WarRock - International Hacks
    Replies: 106
    Last Post: 12-06-2010, 10:49 AM
  4. [Release] ColdTaker NoMenu Base
    By ♪ςander!♪ in forum WarRock Hack Source Code
    Replies: 12
    Last Post: 12-01-2010, 08:46 AM
  5. [Release] WarRock NoMenu - [12/11/10]
    By TheCamels8 in forum WarRock - International Hacks
    Replies: 92
    Last Post: 11-17-2010, 10:40 AM