Page 1 of 2 12 LastLast
Results 1 to 15 of 26
  1. #1
    Mr.Skafighter[Bro]'s Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    8
    My Mood
    Amused

    Cool Hot-Key Base|Noob|*How to do it*

    Need to start on small hacks, so start on this
    ------------------------------------------------------
    1)Make a .cpp item in c++
    2) Put the following code
    Code:
    //By:Mr.Skafigther[Bro]
    //Credit: Nubz
    //Deadline
    //YOU MUST UPDATE THIS HOTKEY FOR IT TO WORK :)
    //////////////////////////////////////////////////
    
    #include "stdafx.h"
    #include <windows.h>
    #define Engine 0x000 //Replace 0x000 to Engine LTC
    
    bool IsGameReadyForHook()
    {
    if( GetModuleHandleA( "d3d9.dll" ) != NULL 
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL 
    && GetModuleHandleA( "CShell.dll" ) != NULL )
    return true;
    return false;
    }
    void __cdecl PushToConsole(char *szCommand) 
    { 
        typedef int (__cdecl* RunConsoleCommand_t)(char* cmd); 
        RunConsoleCommand_t RCC = (RunConsoleCommand_t)Engine //EngineLTC;  
        RCC(szCommand); 
    }
    3)Lets to the Main
    Code:
    void main()
    {
    	
    
    	while(!IsGameReadyForHook()){
    		Sleep(200);
        }// bool myhack = false; (add your hacks )
    	bool FPS = false;
    	bool nxchams = false;
    	bool superbullet = false;
    	bool speed = false;
    	bool emo = false;
    	bool fire = false;
    	bool fly = false;
    
    	while(true)
    	{// set hot-key for hack......
    	if(GetAsyncKeyState(VK_NUMPAD1)<0)// FPS
    		if(FPS){
    		pRunConsoleCommand("ShowFPS 1");
    		FPS = true;
    		}else{
    		pRunConsoleCommand("ShowFPS 0");
    		FPS = false;
    		}
    	}
    
    		if(GetAsyncKeyState(VK_NUMPAD2)<0)// nxchams
    		if(nxchams){
    		pRunConsoleCommand("SkelModelStencil 0");
    		nxchams = false;
    		}else{
    		pRunConsoleCommand("SkelModelStencil 1");
    		nxchams = true;
    		}
    	
    
    
    		if(GetAsyncKeyState(VK_NUMPAD3)<0)// superbullet
    		if(superbullet){
    		//you can edit this....//
    		superbullet = false;
    		}else{
    		 switch(*(int*)0x3781886C){  
        case 1: // 1 = Ingame  
           memcpy((LPVOID)0x374AF296, "\x90\x90\x90", 3); // Super Bullets On  
    		superbullet = true;
    		}
    		}
    		if(GetAsyncKeyState(VK_NUMPAD4)<0)//Speed
    		if(speed){
    pRunConsoleCommand("WalkVel 1000.000000");
    pRunConsoleCommand("FRunVel 1000.000000");
    pRunConsoleCommand("BRunVel 1000.000000");
    pRunConsoleCommand("SRunVel 1000.000000");
    pRunConsoleCommand("DuckVel 1000.000000");
    		speed = false;
    		}else{
    pRunConsoleCommand("WalkVel 70.000000");
    pRunConsoleCommand("FRunVel 285.000000");
    pRunConsoleCommand("BRunVel 285.000000");
    pRunConsoleCommand("SRunVel 285.000000");
    pRunConsoleCommand("DuckVel 50.000000");
    		speed = true;
    		}
    		
    }
    Lastly put this code....
    Code:
    DWORD WINAPI dwHackThread(LPVOID) {
    while( !IsGameReadyForHook() )
    Sleep(300);
    main();
    return 0;
    }
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if ( dwReason == DLL_PROCESS_ATTACH )
    			    MessageBoxA( NULL, "Mr.Skafigther[Bro]Hoyt Key V.1|\n" "Mr.Skafigther[Bro]", "Mr.Skafigther[Bro]|||||", MB_YESNO| MB_ICONWARNING);
    {               //You can edit the message above, please dont forget to give credit
    CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL);
    }
    return TRUE;
    }
    Info: Need SDK 2010 June
    For Working PTC method... on step one replace the old PTC method with this..
    Code:
    typedef int (__cdecl* RunConsoleCommand_t)(char* cmd);
    RunConsoleCommand_t pRunConsoleCommand = (RunConsoleCommand_t); //get updates on LTC
    ---------------------------------------------
    If dont know how to use c++, use steps bellow...




    ====================
    Credits
    Mr.Skafighter[Bro] (Base Make)
    Alessandro10 (Instruction + helped)
    SeePuls
    Nubz

  2. The Following 8 Users Say Thank You to Mr.Skafighter[Bro] For This Useful Post:

    -MAJ (07-07-2012),[MPGH]AVGN (12-16-2010),chandler1289 (04-17-2012),DannyIzHere (12-17-2010),Nightmare (11-10-2011),nxkun (11-30-2011),Turbulence (03-22-2011),yoterompo (12-16-2010)

  3. #2
    sylar07's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Location
    C++ Visual Basic
    Posts
    28
    Reputation
    10
    Thanks
    3
    Cool! .. .... ... .. ..
    Last edited by sylar07; 12-04-2010 at 12:35 AM.
    C + + creator and developer of hacker programs
    Few learn the rest...covers only


  4. #3
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    Quote Originally Posted by Mr.Skafighter[Bro] View Post
    Info: Need SDK 2010 June
    why put it if not gona use it?





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  5. #4
    RagedYet's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    California
    Posts
    220
    Reputation
    -3
    Thanks
    34
    My Mood
    Devilish
    Quote Originally Posted by GodHack2 View Post
    why put it if not gona use it?
    Cause he is MRskat's brother so they dont know shit but copypaste



  6. #5
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Just to tell you now - this doesn't work .

  7. #6
    MrSkafighter's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    410
    Reputation
    23
    Thanks
    2,238
    My Mood
    Cool
    Quote Originally Posted by RagedYet View Post


    Cause he is MRskat's brother so they dont know shit but copypaste
    Oh Really? How About You? You Don't Know Shit But Flame And Also How You Know He Is My Bro Anyway His Not LOL I Think You Got The Wrong Person Hahaha.

  8. #7
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Pretty sloppy/unorganized code right there. Just saying.

  9. #8
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    Hotkey base again? Thought these were long gone..

    Member since September 25, 2010

    Current Objectives:
    • Graduate college with a degree in Computer Science
    • Find a decent job in the Computer Science Field
    • Learn more programming languages

    Looking for Elo Boosting Job - League of Legends
    Looking for Bronze -> Gold Jobs


    Skype: whatthedream

  10. #9
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    But what's the point of posting an "un-updated" base when there are 100s of them just like this.

  11. The Following 2 Users Say Thank You to NOOB For This Useful Post:

    Capevaldo (12-04-2010),GodHack2 (12-04-2010)

  12. #10
    UGodly's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    https://www.mpgh.net/forum/members/645501-ugodly.html
    Posts
    1,234
    Reputation
    18
    Thanks
    160
    My Mood
    Yeehaw
    Quote Originally Posted by RagedYet View Post


    Cause he is MRskat's brother so they dont know shit but copypaste
    Well I tell you skafighter did not learn c++ but he is smart. He knows what he is doing and learns a lot just by copy and paste

    Skafighyer knows wat he is doing though...
    Sorry if double posted iam using phone
    Last edited by UGodly; 12-04-2010 at 09:56 PM.

  13. The Following 2 Users Say Thank You to UGodly For This Useful Post:

    MrSkafighter (12-04-2010),PID3RMAN (12-04-2010)

  14. #11
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Quote Originally Posted by UGodly View Post
    Well I tell you skafighter did not learn c++ but he is smart. He knows what he is doing and learns a lot just by copy and paste

    Skafighyer knows wat he is doing though...
    Sorry if double posted iam using phone
    you dont learn from copy and pasting.
    You learn from looking at other code and seeing how it works and what it does. It doesnt have to be game specific.
    Ive learnt lots from open source code, NOT by copy and pasting, but by taking the time to read it and find what it does properly

  15. The Following 5 Users Say Thank You to ac1d_buRn For This Useful Post:

    ғᴜᴋᴏᴊʀ (12-05-2010),moo9801 (12-29-2010),o-o (12-05-2010),skiiiz (12-04-2010),Tsinghua (08-29-2011)

  16. #12
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    Quote Originally Posted by ac1d_buRn View Post


    you dont learn from copy and pasting.
    You learn from looking at other code and seeing how it works and what it does. It doesnt have to be game specific.
    Ive learnt lots from open source code, NOT by copy and pasting, but by taking the time to read it and find what it does properly
    I copy codes into my project. fix it. understand it
    then change it to what I like.
    but I mean copy, paste, compile.
    if that is all you do I feel sorry for you. since I want to learn to get better at coding. some people just want to release hacks ... but Whats the point if you learned nothing/ do none of it yourself?

    Member since September 25, 2010

    Current Objectives:
    • Graduate college with a degree in Computer Science
    • Find a decent job in the Computer Science Field
    • Learn more programming languages

    Looking for Elo Boosting Job - League of Legends
    Looking for Bronze -> Gold Jobs


    Skype: whatthedream

  17. #13
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    I'm afraid of c+p because of the errors c++ will yell at me for.

  18. #14
    UKnownError's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    ERROR
    Posts
    280
    Reputation
    27
    Thanks
    32
    My Mood
    Breezy
    um yea... i tried testing it and i get error
    1>base.cpp(79): error C3861: 'pRunConsoleCommand': identifier not found

  19. #15
    seeplusplus's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Massachusetts
    Posts
    329
    Reputation
    8
    Thanks
    85
    Quote Originally Posted by RagedYet View Post


    Cause he is MRskat's brother so they dont know shit but copypaste
    DAM! YOUR BACK! JUST GTFO! YOU ARE SO ANNOYING! ALL YOU DO IS SPAM!
    AND BOTH MRSKA AND HIS BRO ARE AMAZING CODERS, THEY JUST DON'T RELEASE STUFF!

    Quote Originally Posted by UKnownError View Post
    um yea... i tried testing it and i get error
    1>base.cpp(79): error C3861: 'pRunConsoleCommand': identifier not found
    xD figure it out...
    Obviously it's noob proof...
    Goals:
    Green = Done
    Blue = Getting Somewhere
    Red = Not Done
    • Mouse Grid
    • PTC Method
    • Trigger Bot

    I'm trying to think of more stuff!

Page 1 of 2 12 LastLast