Thread: Easy NoMenu Tut

Results 1 to 13 of 13
  1. #1
    Pitcher's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Screwing your mom.
    Posts
    524
    Reputation
    53
    Thanks
    797
    My Mood
    Flirty

    Easy NoMenu Tut

    As you all can see, the WarRock section is getting alive, since there are so many hacks people want to learn how to make a hack.

    Most of the people want to learn D3D, Well. This is a little start on your way to learn D3D.

    Step 1.

    Make a new WIN32 Project, make it .DLL and EMPTY PROJECT.

    Step 2.

    right click on the '' Source Files '' -> New item -> C++ File(.CPP)

    Name it whatever you want. in my case i name it "Base.cpp"

    Step 3.

    As we want to make a super easy no menu, im making it super easy. First add 2 more files,

    Just the same way, but make header files. in my case i name them : Addies.h and Hacks.h

    Step 4.

    Go to your base.cpp and C+P this :

    Code:
    #include <windows.h>
    #include <stdio.h>
    #include "Addies.h"
    #include "Hacks.h" 
    
    Step 5. Now we need to define our HackThread :
    Code:
    DWORD *ingame  = (DWORD*)PlayerPointer;
    DWORD *outgame = (DWORD*)ServerPointer;
    Step 6.

    Now make an hackthread :
    Code:
    void HackThread()
    {
    	for (;;)
    	{
    		if(*ingame)
    		{
    			PlayerHacks();
    		}
    		if(*outgame)
    		{
    			ServerHacks();
    		}
    		Sleep(150);
    	}
    }
    
    Step 7.

    Because we make a .DLL for WarRock, we need to get the code to inject them.

    :
    Code:
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    CreateThread(0,0,(LPTHREAD_START_ROUTINE)HackThread,0,0,0);
    }
    return TRUE;
    }
    
    Step 8.

    Now our base is done, we need to get our addies. double click on Addies.h and place this in it :

    Code:
    #define PlayerPointer             0x009E27B0
    #define Serverpointer             0x009E274C
    Step 9.

    All you have to do is go to Hacks.h and place this into it :

    Code:
    void PlayerHacks() 
    {
    	DWORD dwPlayerPtr= *(DWORD*)PlayerPointer;
    	if(dwPlayerPtr != 0){
    
     
    }
    }
    
    
    void ServerHacks() 
    {
    	DWORD dwServerPtr= *(DWORD*)ServerPointer;
    	if(dwServerPtr !=0)
    	{
    	}
    }
    
    Step 10.

    ADD YOUR OWN FUNCTIONS !

    Last edited by Terell.; 09-15-2011 at 03:39 PM.


    Back on the 30th of september.

    WarRock Contributer Force

    My hacks are only for WarRock International!


  2. The Following User Says Thank You to Pitcher For This Useful Post:

    alvermanlive (09-26-2011)

  3. #2
    Terell.'s Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    JAMAICAA
    Posts
    6,923
    Reputation
    273
    Thanks
    1,163
    My Mood
    Angry
    Too much of these, spend some time and actually explain what some of this means, so that people can stop C+P'ing and know what there actually doing. Other then that really good job.

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

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

  5. #4
    Margherita's Avatar
    Join Date
    Jan 2011
    Gender
    female
    Posts
    11,299
    Reputation
    783
    Thanks
    1,287
    My Mood
    Bashful
    I suggest putting the code in [CODE] tags to make it easier to read.

    Lots of tutorials on this though, good job.
    PM Me | VM Me | Rules

    MARGHERITA

  6. #5
    Enj0i's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    217
    Reputation
    6
    Thanks
    419
    My Mood
    Amazed
    Theres like...5 tuts on this now. Also you dont necessarily have to split it into three files. You could just put everything into the base.cpp
    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!

  7. #6
    IHaxYou!'s Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    HaxLand
    Posts
    936
    Reputation
    -18
    Thanks
    387
    My Mood
    Cynical
    Thank's for the tutorial

  8. #7
    FileCorrupt's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    658
    Reputation
    -2
    Thanks
    30
    My Mood
    Amazed
    Quote Originally Posted by Shunnai View Post
    Too much of these, spend some time and actually explain what some of this means, so that people can stop C+P'ing and know what there actually doing. Other then that really good job.
    Do You Consider Me One Of Those People? :P

  9. #8
    AeroMan's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Hell
    Posts
    3,294
    Reputation
    189
    Thanks
    3,049
    My Mood
    Busy
    Good job,but you should explain what it does, because this is not really helping people understand what it does and how it works

  10. #9
    Ryuesi's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Right here.
    Posts
    7,339
    Reputation
    413
    Thanks
    2,397
    My Mood
    Relaxed
    Thank You For The Tutorial





    Contributor Since 24-11-2011 ~ 26-12-2011
    VM / PM




  11. #10
    Pitcher's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Screwing your mom.
    Posts
    524
    Reputation
    53
    Thanks
    797
    My Mood
    Flirty
    @Swiftdude Jr
    @Alex_Agnew
    @FileCorrupt
    @Enj0i

    cant edit it anymore


    Back on the 30th of september.

    WarRock Contributer Force

    My hacks are only for WarRock International!


  12. #11
    Terell.'s Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    JAMAICAA
    Posts
    6,923
    Reputation
    273
    Thanks
    1,163
    My Mood
    Angry
    PM me what you need to add in and I'll do it for you.
    @bodhi

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

  13. #12
    Pitcher's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Screwing your mom.
    Posts
    524
    Reputation
    53
    Thanks
    797
    My Mood
    Flirty
    Quote Originally Posted by Shunnai View Post
    PM me what you need to add in and I'll do it for you.
    @bodhi
    just make de codes in a code font u know? kinda quote


    Back on the 30th of september.

    WarRock Contributer Force

    My hacks are only for WarRock International!


  14. #13
    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 bodhi View Post
    just make de codes in a code font u know? kinda quote
    Done . .

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

Similar Threads

  1. Aluseu's easy Camo Tut
    By 777Aluseu777 in forum Combat Arms Mod Tutorials
    Replies: 26
    Last Post: 05-29-2012, 10:51 AM
  2. [Tutorial] Wizdom-x + Gh0sts~l1fe Nomenu [TuT]
    By Wizdom-X in forum WarRock Hack Source Code
    Replies: 17
    Last Post: 02-08-2011, 01:01 PM
  3. [RELEASE]EASY CAMO TUT
    By RedThunder in forum Combat Arms Mod Discussion
    Replies: 9
    Last Post: 06-26-2010, 09:22 PM
  4. Club Penguin Coin hack Tut! 6 easy steps!
    By CAPTAIN OBVIOUS in forum Club Penguin Hacks & Cheats
    Replies: 18
    Last Post: 12-03-2008, 02:34 AM
  5. [Tut]How to Make KoWarrock Account Easy
    By EyalZamir in forum WarRock Korea Hacks
    Replies: 181
    Last Post: 06-08-2008, 12:05 PM