Results 1 to 13 of 13
  1. #1
    ryski123's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    www.mpgh.net
    Posts
    1,772
    Reputation
    81
    Thanks
    634
    My Mood
    Stressed

    [need Help] Source Included >.>

    My super jump and NFD work but my No Recoil, No spread and 5 Slot dont?

    By The Way, The SuperJump and NFD are Basic I used Void on the rest because I only know the SuperJump and NFD Basics!

    *Removed Source*

    Regards

    Your fellow Mpgh Member Ryski123
    Last edited by ryski123; 12-05-2010 at 05:17 PM.
    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

  2. #2
    TGH Zero.'s Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Behind you!
    Posts
    854
    Reputation
    35
    Thanks
    628
    My Mood
    Cool
    5th slot should be serversided... but i will try it, i will paste it to my c++ and will look carefully on the source.. I will come back if i found any solution....

    Edit: fk my visual studio 2010 expired...

    Editedit: it should be like so:
    void NoSpread()
    {
    *(float*)Ofs_NoSpread = 0;
    }


    void NoRecoil()
    {
    *(float*)Ofs_NoRecoil1 = 0;
    *(float*)Ofs_NoRecoil2 = 0;
    *(float*)Ofs_NoRecoil3 = 0;
    }


    Say if dont work... i dont want to go test... 5th slot should be serversided... if u cant put it to serversided, or u dont know what im talking, send me pm, i will make all ur hack working...
    Last edited by TGH Zero.; 12-05-2010 at 12:07 AM.


  3. #3
    Ikke0148's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    124
    Reputation
    15
    Thanks
    36
    Quote Originally Posted by TGH Zero. View Post
    5th slot should be serversided... but i will try it, i will paste it to my c++ and will look carefully on the source.. I will come back if i found any solution....

    Edit: fk my visual studio 2010 expired...

    Editedit: it should be like so:
    void NoSpread()
    {
    *(float*)Ofs_NoSpread = 0;
    }


    void NoRecoil()
    {
    *(float*)Ofs_NoRecoil1 = 0;
    *(float*)Ofs_NoRecoil2 = 0;
    *(float*)Ofs_NoRecoil3 = 0;
    }


    Say if dont work... i dont want to go test... 5th slot should be serversided... if u cant put it to serversided, or u dont know what im talking, send me pm, i will make all ur hack working...
    5th slot is not serversided man, its fixable.


    you fergot to include into your threads.

    Code:
    #include <windows.h>
    
    #define ADR_ServerPointer 0xC24B10
    #define ADR_PlayerPointer 0xD284E8
    #define OFS_SuperJump 0x0102D8 
    #define OFS_NoFallDamage 0x103A4
    #define Ofs_NoSpread 0x008B834C
    #define Ofs_NoRecoil1 0x0000001c
    #define Ofs_NoRecoil2 0x00000020
    #define Ofs_NoRecoil3 0x00000024
    #define OFS_5SLOT 0x00D147C
    
    void __stdcall MainHacks (void)
    {
          DWORD dwPTR = *(DWORD*) ADR_PlayerPointer;
           if (  dwPTR  !=0) 
          {
              
          
    // Super Jump
      if ( GetAsyncKeyState(VK_CONTROL)&0x8000 ) 
    {
              *(float*) ( dwPTR +  OFS_SuperJump ) = 5000;
    }
    // No Fall Damage
    {
                   *(float*) ( dwPTR +  OFS_NoFallDamage ) = -50000;  
    }
    
    
          }
    }
    
    void NoSpread()
    {
    	*(float*)Ofs_NoSpread = 0;
    }
    
    
    void NoRecoil()
    {
    	*(float*)Ofs_NoRecoil1 = 1;
    	*(float*)Ofs_NoRecoil2 = 1;
    	*(float*)Ofs_NoRecoil3 = 1;
    }
    
    void Slots5()
    {
    DWORD dwServerPtr = *(DWORD*)ADR_ServerPointer;
    if(dwServerPtr != 0)
    {
    *(long*)(dwServerPtr+OFS_5SLOT) = 1;
    }
    }
    
    DWORD WINAPI HACKthread( LPVOID param )  
    {
          while(1)
         {
            MainHacks();
    NoSpread(); // <- Include when you use void
    NoRecoil();
    Slots5();
          Sleep(200); // <- 20 is to low
          }
        return 0;
    }
    
    
              bool __stdcall DllMain ( HMODULE hDll, unsigned long Reason , LPVOID LPReserved )
    {
          DisableThreadLibraryCalls(hDll);
        switch ( Reason )
        {
    
        case  DLL_PROCESS_ATTACH :
    
    		MessageBoxA(0, "Made By Ryski123", "Success Injection", MB_OK);
    
          
                        CreateThread(0,0,(LPTHREAD_START_ROUTINE)HACKthread,0,0,0);                
        break;
            }
    
        return TRUE;
    }

  4. #4
    TheCamels8's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Israel :D
    Posts
    2,945
    Reputation
    174
    Thanks
    1,376
    My Mood
    Cheeky
    Slot5 addy is wrong

  5. #5
    n4n033's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Windows
    Posts
    1,090
    Reputation
    43
    Thanks
    2,425
    My Mood
    Cool
    #define Ofs_Slot5 0x001021A4


    Remplace 5th slot addy


    The Only Bests :


    R3d_L!n3(Fares)
    Aeroman (Brent)
    TheCamels8 (Ori)


  6. #6
    TGH Zero.'s Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Behind you!
    Posts
    854
    Reputation
    35
    Thanks
    628
    My Mood
    Cool
    Quote Originally Posted by n4n033 View Post
    #define Ofs_Slot5 0x001021A4


    Remplace 5th slot addy
    Yea ur one is outdated :P


  7. #7
    ryski123's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    www.mpgh.net
    Posts
    1,772
    Reputation
    81
    Thanks
    634
    My Mood
    Stressed
    Ty for your help I will try now, The 5th slot addy came from Camel's addy program :S

    Edit: Its not going past hacksheild :S Anyone got the source for the bypass?
    Last edited by ryski123; 12-05-2010 at 10:11 AM.
    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

  8. #8
    Ikke0148's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    124
    Reputation
    15
    Thanks
    36
    Quote Originally Posted by ryski123 View Post
    Ty for your help I will try now, The 5th slot addy came from Camel's addy program :S

    Edit: Its not going past hacksheild :S Anyone got the source for the bypass?
    You dont need bypass for nomenu, its cuz one of your functions is detected, not done well...
    Try the source i pasted (updted) for you
    It works 100% (if addies are updated)

  9. #9
    ryski123's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    www.mpgh.net
    Posts
    1,772
    Reputation
    81
    Thanks
    634
    My Mood
    Stressed
    Ok i need updated addys now ^^, i used Camels's addy program but they seem to be outdated :S
    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

  10. #10
    pollywanna's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    9
    My Mood
    Cheerful
    If anyone can get updated addys please post them

  11. #11
    TheCamels8's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Israel :D
    Posts
    2,945
    Reputation
    174
    Thanks
    1,376
    My Mood
    Cheeky
    Are you sure my addys outdated?

  12. #12
    pollywanna's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    9
    My Mood
    Cheerful
    Well if 5th slot is then they gotta be :S

  13. #13
    ryski123's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    www.mpgh.net
    Posts
    1,772
    Reputation
    81
    Thanks
    634
    My Mood
    Stressed
    I'm back from my 1337 ban, has anyone got addys yet?
    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