Results 1 to 6 of 6
  1. #1
    llzll's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    44
    Reputation
    10
    Thanks
    0

    need help with my nomenu

    hi all since 1 week now i try to make a warrock hack no menu

    i've coded all my hack but when i play nothing happen can someone look my code to tell me if i make mistakes ???

    i will give it in pm !!

    pls help ...

  2. #2
    Hacker8)'s Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Behind you!
    Posts
    132
    Reputation
    10
    Thanks
    155
    My Mood
    Pensive
    Mmmm... Maybe PM me, i will can help you...

  3. #3
    IHelper's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Ask me tommorow
    Posts
    4,797
    Reputation
    53
    Thanks
    2,056
    My Mood
    Amazed
    Post the source
    You want respect
    Earn it.

  4. #4
    ~J8y~'s Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    113
    Reputation
    10
    Thanks
    8
    My Mood
    Blah
    i can't help you there sir im sorry.....im still earing how to code a no menu hack.
    [CENTER] PM me if you need help on anything

  5. #5
    llzll's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    44
    Reputation
    10
    Thanks
    0
    my source :

    Code:
    #include <windows.h>
    #include <stdio.h>
    
    //-----------------Define Hacks-----------------//
    
    #define Ofs_X                  0x0000C680
    #define Ofs_Y                  0x0000C688
    #define Ofs_Z                  0x0000C684
    #define Ofs_NoFallDmg          0x0000C74C
    #define Ofs_Stamina            0x0000002C
    #define Addr_Playerpointer     0x00C40288
    #define Addr_Serverpointer     0x00B3F728
    #define Addr_NoSpread          0x00A83420
    
    
    //-----------------End Define Hacks-----------------//
    
    //-----------------Define HackThread-----------------//
    
    DWORD *ingame= (DWORD*)Addr_Playerpointer;
    DWORD *outgame= (DWORD*)Addr_Serverpointer;
    
    //-----------------End Define HackThread-----------------//
    //-----------------Start Hacks-----------------//
    
    void superjump()
    {
    	DWORD dwPlayerPtr = *(DWORD*)Addr_Playerpointer;
        if(dwPlayerPtr !=0)
    	{
    		    if(GetAsyncKeyState(VK_CONTROL) &1)
    			{
    				*(float*) (dwPlayerPtr+Ofs_Z) = 1000;
    			}
    	}
    }
    
    void nfd()
    {
        DWORD dwPlayerPtr = *(DWORD*)Addr_Playerpointer;
        if(dwPlayerPtr != 0)
        {
            *(float*)(dwPlayerPtr+Ofs_NoFallDmg) = -200000;
        }
    }
    
    void NoSpread()//spread
    {
    	*(float*)Addr_NoSpread = 0.0f;
    }
    
    void Stamina()
    {
        DWORD dwPlayerPtr = *(DWORD*)Addr_Playerpointer;
        if(dwPlayerPtr != 0)
    {
        *(float*)(dwPlayerPtr+Ofs_Stamina) = 100; // 100 = full, 50 = stealth
    }
    }
    //-----------------End Hacks-----------------//
    
    //-----------------HackThread-----------------//
    
    void HackThread ()
    {
        for(;;)
        {
            if(*ingame)
            {
                superjump();
                nfd();
                NoSpread();
    			Stamina();
    		}
        }
    	Sleep(200);
    }
    
    //-----------------End HackThread-----------------//
    
    //-----------------End-----------------//
    
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
        if(dwReason==DLL_PROCESS_ATTACH)
        {
            CreateThread(NULL,NULL,(LPTHREAD_START_ROUTINE)HackThread,NULL,NULL,NULL);
        }
        return TRUE;
    }
    just the stamina doesn't work

    don't know why ...

  6. #6
    Pixipixel_'s Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    VCExpress.exe || France :D
    Posts
    2,087
    Reputation
    27
    Thanks
    742
    My Mood
    Cool
    Quote Originally Posted by llzll View Post
    my source :


    just the stamina doesn't work

    don't know why ...

    Stamina doesn't work anymore in this way.


    closed.

Similar Threads

  1. [Help Request] Need Help With A.V.A Error
    By ch1025 in forum Alliance of Valiant Arms (AVA) Help
    Replies: 7
    Last Post: 05-14-2011, 09:15 AM
  2. [Help Request] Need help with making binds !
    By JonathanTBM in forum Vindictus Help
    Replies: 4
    Last Post: 05-10-2011, 07:40 PM
  3. [Help Request] Need help with numpad while recording macro !
    By JonathanTBM in forum Vindictus Help
    Replies: 2
    Last Post: 05-10-2011, 07:37 PM
  4. [Help Request] need help with mod
    By .:MUS1CFR34K:. in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 4
    Last Post: 05-01-2011, 12:40 PM
  5. [Help Request] need help with modding
    By BayBee Alyn in forum Combat Arms Help
    Replies: 0
    Last Post: 04-27-2011, 09:06 PM