Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    Terell.'s Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    JAMAICAA
    Posts
    6,923
    Reputation
    273
    Thanks
    1,163
    My Mood
    Angry

    NoMenu Empty base

    Here's an empty NoMenu base, its readjustable for new-users so if you wanna create a hack you can easily just add a function or remove one.
    Any questions/errors just ask here on this thread

    I doubt you'll be able to open the C++ File, but I uploaded it anyways cause some people can open it and some can't. So I made some txt files of whats in the empty base, and I posted below the source code of the empty NoMenuBase.

    VirusScans
    [x] [x]


    Main.cpp
    Code:
    // Coded by Yourname
    
    // Warrock Hack Source Code Section.
    #include <windows.h>
    
    // Addresses
    #define ADR_PLAYERPOINTER 0x00
    #define ADR_SERVERPOINTER 0x00
    #define 
    #define
    #define
    //End of addresses
    
    /* Hotkeys snippet */
    // 1 is on and 0 is off
    int CH_/*addy name*/ = 1;
    int CH_/*addy name*/ = 1;
    int CH_/*addy name*/ = 1;
    int CH_/*addy name*/ = 1;
    int CH_/*addy name*/ = 1;
    
    //( Your function name ) 
    void /*addyname*/()
    {
    if(CH_/*addyname*/==1){
    DWORD dwPlayerPtr=*(DWORD*)ADR_PLAYERPOINTER; // < Function 
    if(dwPlayerPtr !=0){
    	*(float*)(dwPlayerPtr+OFS_/*offsetname*/=20000;}}
    }
    
    // Too add more functions/features just paste the function here then adjust the address the the Address header
    
    // Void and sleep method
    void MPGH(void)
    {
    for(;;)
    {
    /*Function Name*/();
    /*Function Name*/();
    /*Function Name*/();
    /*Function Name*/();
    }
    Sleep(200);
    }
    // Bool and thread
    BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
    {
    switch(DWORD_GRUND)
    {
    case 1:
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)MPGH , 0, 0, 0); 
    break;
    case 2:
    break;
    }
    return TRUE;
    }
    Addresses.h
    Code:
    // Addresses // 
    
    /*Pointers*/
    #define ADR_PLAYERPOINTER 0x00
    #define ADR_SERVERPOINTER 0x00
    
    // Hacks
    #define ADR_
    #define ADR_
    #define
    #define
    #define
    I'll credit everyone here in the WR source section that has contributed to the section, since I learned a few things here back in in 09 .
    Credits :Me, AeroMan, Redlin3, TheCamels8, Enj0i, Makis5, Wizdom-X ryski123, barcoder, Warrock Hack source code.
    Last edited by Terell.; 08-21-2011 at 08:28 AM.

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

  2. The Following 15 Users Say Thank You to Terell. For This Useful Post:

    Chris . (08-22-2011),dungzkii (04-25-2012),jasper601 (12-17-2014),Joe_les_guns (10-26-2011),luvarrow21 (06-19-2012),marfie (02-06-2015),matthy (08-21-2011),Mike Shinoda (08-21-2011),paul36bone (07-11-2013),ryski123 (09-06-2011),SAMCRO (02-07-2013),TheCamels8 (08-21-2011),xBeo (02-24-2013),zerus123 (07-14-2013),_Apostolos_ (08-21-2011)

  3. #2
    Mike Shinoda's Avatar
    Join Date
    May 2008
    Gender
    male
    Location
    127.0.0.1
    Posts
    1,177
    Reputation
    67
    Thanks
    165
    My Mood
    Amazed
    this is good and sweet but why i am in credits?:O
    It always starts with one thing...

  4. #3
    TheCamels8's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Israel :D
    Posts
    2,945
    Reputation
    174
    Thanks
    1,376
    My Mood
    Cheeky
    Quote Originally Posted by makis5 View Post
    this is good and sweet but why i am in credits?:O
    I'll credit everyone here in the WR source section that has contributed to the section, since I learned a few things here back in in 09 .
    Good job
    Last edited by TheCamels8; 08-21-2011 at 02:19 AM.

  5. #4
    Zeused's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    1,599
    Reputation
    2
    Thanks
    68
    My Mood
    Relaxed
    I would like to learn more about source codes and codding in C++ Thanks!

    -The Joker.

  6. #5
    Margherita's Avatar
    Join Date
    Jan 2011
    Gender
    female
    Posts
    11,299
    Reputation
    783
    Thanks
    1,287
    My Mood
    Bashful
    Nice release fot everyone to use.


    Off-Topix: I might make a version 3 of my no menu

  7. #6
    TheCamels8's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Israel :D
    Posts
    2,945
    Reputation
    174
    Thanks
    1,376
    My Mood
    Cheeky
    I found something in your base..
    1. You didn't include "Addresses.h" and also you don't need it because you define your Addys in "Main.cpp"
    2.
    Code:
    void /*addyname*/()
    {
    if(CH_/*addyname*/==1){
    DWORD dwPlayerPtr=*(DWORD*)ADR_PLAYERPOINTER; // < Function 
    if(dwPlayerPtr !=0){
    	*(float*)ADR_/*addyname*/=20000;}}
    }
    Wrong, because you need PlayerPointer only for Offsets.
    So it should be:
    Code:
    *(float*)(dwPlayerPtr+OFS_/*offsetname*/=20000;}}

  8. #7
    matthy's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    73
    Reputation
    10
    Thanks
    12
    My Mood
    Amazed
    nice release

  9. #8
    Threadstarter
    MY LIFE BE LIKE OOOOOOOOOOAH .
    MPGH Member
    Terell.'s Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    JAMAICAA
    Posts
    6,923
    Reputation
    273
    Thanks
    1,163
    My Mood
    Angry
    Quote Originally Posted by TheCamels8 View Post
    I found something in your base..
    1. You didn't include "Addresses.h" and also you don't need it because you define your Addys in "Main.cpp"
    2.
    Code:
    void /*addyname*/()
    {
    if(CH_/*addyname*/==1){
    DWORD dwPlayerPtr=*(DWORD*)ADR_PLAYERPOINTER; // < Function 
    if(dwPlayerPtr !=0){
    	*(float*)ADR_/*addyname*/=20000;}}
    }
    Wrong, because you need PlayerPointer only for Offsets.
    So it should be:
    Code:
    *(float*)(dwPlayerPtr+OFS_/*offsetname*/=20000;}}
    Woops. Fixing that right now, was in a rush
    EDIT : Fixed. Added new attachment
    Last edited by Terell.; 08-21-2011 at 08:29 AM.

    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:

    TheCamels8 (08-21-2011)

  11. #9
    ryski123's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    www.mpgh.net
    Posts
    1,772
    Reputation
    81
    Thanks
    634
    My Mood
    Stressed
    Nice but if your going to put Addresses in Main.cpp theres no reason to have a Addies.h :P
    Ryski123 MySize Rhyme

    *AeroMan's Apprentice*
    My Projects :
    Stealth No Menu
    No Menu
    Ryski123 D3D Menu
    Spammer
    Injector


    100 Posts [x]
    500 Posts [x]
    1000 Posts [x]
    2000 Posts [ ]
    Respect List! :
    AeroMan <--- My Brother you Helped me alot
    [MPGH]reaper
    [MPGH]vital
    reap3r <-- Helped me alot
    1possible <---- Awsome!
    Rave - AWSOME coder
    swiftdude <-- AWSOME coder!!! ---> Helps when needed
    thecamels8
    ropsu678 /
    Quote Originally Posted by fogest View Post


    Just because your on a hacking site doesn't mean you have to hack or like hacking.
    LOL, Why the Fuck would you be on here then?


    Press Thanks If I Helped You

  12. #10
    _Apostolos_'s Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Athnes, Greece
    Posts
    129
    Reputation
    62
    Thanks
    70
    My Mood
    Amused
    It's very good if you want to start!

  13. #11
    TheGoodB0y's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    507
    Reputation
    12
    Thanks
    44
    My Mood
    In Love
    Quote Originally Posted by ryski123 View Post
    Nice but if your going to put Addresses in Main.cpp theres no reason to have a Addies.h :P
    I'am do too with two thing,
    i have Main.cpp and Addies.h
    i want do that way. Then it's less mess with them

  14. #12
    Enj0i's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    217
    Reputation
    6
    Thanks
    419
    My Mood
    Amazed
    Haha Nice Shunnai
    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!

  15. #13
    barcoder's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Visual Studio C++
    Posts
    265
    Reputation
    14
    Thanks
    88
    My Mood
    Happy
    My boy Shunnai helping the community once more

  16. #14
    Threadstarter
    MY LIFE BE LIKE OOOOOOOOOOAH .
    MPGH Member
    Terell.'s Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    JAMAICAA
    Posts
    6,923
    Reputation
    273
    Thanks
    1,163
    My Mood
    Angry
    . Now anyone could easily release some noMenu hacks if they really wanted too.

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

  17. #15
    Mike Shinoda's Avatar
    Join Date
    May 2008
    Gender
    male
    Location
    127.0.0.1
    Posts
    1,177
    Reputation
    67
    Thanks
    165
    My Mood
    Amazed
    Quote Originally Posted by Shunnai View Post
    . Now anyone could easily release some noMenu hacks if they really wanted too.
    and if they have addiesXD
    It always starts with one thing...

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] Warrock Nomenu Base [Undecteted]
    By TheGoodB0y in forum WarRock Hack Source Code
    Replies: 11
    Last Post: 09-01-2011, 05:49 PM
  2. [Source Code] advanced nomenu base
    By Ikke0148 in forum WarRock Hack Source Code
    Replies: 5
    Last Post: 06-02-2011, 11:17 PM
  3. [Release] TheCamels8 NoMenu Base
    By TheCamels8 in forum WarRock Hack Source Code
    Replies: 52
    Last Post: 04-19-2011, 11:16 PM
  4. [Release] Deacon Unfinished NoMenu Base
    By Ikke0148 in forum WarRock Hack Source Code
    Replies: 4
    Last Post: 04-11-2011, 01:11 PM
  5. [Release] ColdTaker NoMenu Base
    By ♪ςander!♪ in forum WarRock Hack Source Code
    Replies: 12
    Last Post: 12-01-2010, 08:46 AM