Thread: Help Hack

Page 1 of 5 123 ... LastLast
Results 1 to 15 of 68
  1. #1
    guabraao10's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    137
    Reputation
    9
    Thanks
    2
    My Mood
    Confused

    Post Help Hack

    #include "stdafx.h"
    #include <windows.h>
    #define Engine 0x4A4830 //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);
    }
    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){
    / 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;
    }

    }
    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;
    }

    ERROR IN BUILD > fatal error C1083: Cannot open include file: 'stdafx.h': No such file or directory < I HAVE SDK INSTALAD HELP PLZZZZ

  2. #2
    WiiByte's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Earth
    Posts
    111
    Reputation
    12
    Thanks
    82
    My Mood
    Inspired
    Unfortunately, this is wrong section, if you clicked the link above this section, it says "Coding Help & Discussion"


    Quote of the Month:
    Quote Originally Posted by Extravagant View Post

    Someone special removed a rake from my ass.
    Master Password for Mods: mpgh.net

  3. #3
    Alessandro10's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    MPGH.NET
    Posts
    6,140
    Reputation
    215
    Thanks
    4,607
    My Mood
    Busy
    This Metod dont work

    Code:
    void __cdecl PushToConsole(char *szCommand)
    {
    typedef int (__cdecl* RunConsoleCommand_t)(char* cmd);
    RunConsoleCommand_t RCC = (RunConsoleCommand_t)Engine //EngineLTC;
    RCC(szCommand);
    }
    This Engine LTC BR = 0x4A4830 Pacthed!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    Use this Address --> 0x00485DD0

    Use this Metod:
    Code:
    void __cdecl Console(const char* Command)
    {
    	DWORD __LTClient =  0x00485DD0;
    	__asm
    	{
    		push Command
    		call __LTClient
    		add esp, 0x4
    	}
    }
    Create a New Project Win32, not Mark Empty project because it will automatically create the stdafx.h.

    ================================================== ============================

    Change:

    Code:
    if(GetAsyncKeyState(VK_NUMPAD2)<0)// nxchams
    if(nxchams){
    pRunConsoleCommand("SkelModelStencil 0");
    nxchams = false;
    }else{
    pRunConsoleCommand("SkelModelStencil 1");
    nxchams = true;
    }
    TO

    Code:
    if(GetAsyncKeyState(VK_NUMPAD2)<0)// nxchams
    if(nxchams){
    Console("SkelModelStencil 0");
    nxchams = false;
    }else{
    Console("SkelModelStencil 1");
    nxchams = true;
    }
    Last edited by Alessandro10; 12-29-2010 at 03:46 AM.

  4. The Following User Says Thank You to Alessandro10 For This Useful Post:

    guabraao10 (12-29-2010)

  5. #4
    guabraao10's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    137
    Reputation
    9
    Thanks
    2
    My Mood
    Confused
    i have this is error now : fatal error C1083: Cannot open include file: 'windows.h': No such file or directory udasuhdasud fuck seeplusplus
    Last edited by guabraao10; 12-29-2010 at 05:31 AM.

  6. #5
    markoj's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    s
    Posts
    1,064
    Reputation
    60
    Thanks
    407
    My Mood
    Bored
    Quote Originally Posted by guabraao10 View Post
    i have this is error now : fatal error C1083: Cannot open include file: 'windows.h': No such file or directory udasuhdasud fuck seeplusplus
    Lol sorry to say this but Learn C++
    Your including it like this "windows.h"
    unless its in your folder or in the project that wont work
    do this instead:
    #incude <windows.h>

    PS if your saying fuck c++ then stop making hacks, go watch tv or masturbate and stop trying to make stuff in a language you don't know.
    Last edited by markoj; 12-29-2010 at 06:45 AM.
    Dont ban me

  7. #6
    Fabolous's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    192.168.1.01
    Posts
    2,704
    Reputation
    261
    Thanks
    682
    My Mood
    Paranoid
    Quote Originally Posted by markoj View Post
    Lol sorry to say this but Learn C++
    Your including it like this "windows.h"
    unless its in your folder or in the project that wont work
    do this instead:
    #incude <windows.h>

    PS if your saying fuck c++ then stop making hacks, go watch tv or masturbate and stop trying to make stuff in a language you don't know.
    Lol you made my day.

  8. #7
    guabraao10's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    137
    Reputation
    9
    Thanks
    2
    My Mood
    Confused
    Quote Originally Posted by markoj View Post
    Lol sorry to say this but Learn C++
    Your including it like this "windows.h"
    unless its in your folder or in the project that wont work
    do this instead:
    #incude <windows.h>

    PS if your saying fuck c++ then stop making hacks, go watch tv or masturbate and stop trying to make stuff in a language you don't know.
    do so much that I'm trying to do I'm interested in learning this language ... so much I'm studying it ... I just told her q and annoying thing q PS do not talk do not know ok?
    Fuck see plus plus fuck american noobs idiots MULTI... NOOBS NORTH AMERICANS NOOBS

  9. #8
    markoj's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    s
    Posts
    1,064
    Reputation
    60
    Thanks
    407
    My Mood
    Bored
    Quote Originally Posted by guabraao10 View Post
    do so much that I'm trying to do I'm interested in learning this language ... so much I'm studying it ... I just told her q and annoying thing q PS do not talk do not know ok?
    Fuck see plus plus fuck american noobs idiots MULTI... NOOBS NORTH AMERICANS NOOBS
    oh so your talking about seepluplus the person? Your "english" is a bit hard to read but what I told you will fix the error
    Dont ban me

  10. #9
    Alessandro10's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    MPGH.NET
    Posts
    6,140
    Reputation
    215
    Thanks
    4,607
    My Mood
    Busy
    This errors is very easy to fix...

  11. The Following User Says Thank You to Alessandro10 For This Useful Post:

    guabraao10 (12-29-2010)

  12. #10
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    Quote Originally Posted by guabraao10 View Post
    do so much that I'm trying to do I'm interested in learning this language ... so much I'm studying it ... I just told her q and annoying thing q PS do not talk do not know ok?
    Fuck see plus plus fuck american noobs idiots MULTI... NOOBS NORTH AMERICANS NOOBS
    Just GTFO.





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  13. #11
    guabraao10's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    137
    Reputation
    9
    Thanks
    2
    My Mood
    Confused
    ou alessandro ja q vc e o unico legal aqui esses norths americanos idiotas eu nao sei eles vem fala merda... oq eu tenho q faze ? dsuadhsudhsa


    @edit GTFO you monther in my room

  14. #12
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    Quote Originally Posted by guabraao10 View Post
    ou alessandro ja q vc e o unico legal aqui esses norths americanos idiotas eu nao sei eles vem fala merda... oq eu tenho q faze ? dsuadhsudhsa


    @edit GTFO you monther in my room
    GTFO immigrant cara de cu





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  15. #13
    _Fk127_'s Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    720
    Reputation
    16
    Thanks
    208
    My Mood
    Bitchy
    Quote Originally Posted by guabraao10 View Post
    do so much that I'm trying to do I'm interested in learning this language ... so much I'm studying it ... I just told her q and annoying thing q PS do not talk do not know ok?
    Fuck see plus plus fuck american noobs idiots MULTI... NOOBS NORTH AMERICANS NOOBS
    Dish es Engrish no i kno say what you not dont what?



    Put this image in your signature if you support HTML5 development!

  16. #14
    Sh3hw4z's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    30
    Quote Originally Posted by guabraao10 View Post
    GodHack sua mae ta aqui na minha cama
    Go post in the ca br section.We gave you the fix to the errors now go bitch somewhere else.If you can't talk english why try? Gtfo and go to your section stupid bitch.

  17. The Following User Says Thank You to Sh3hw4z For This Useful Post:

    GodHack2 (12-29-2010)

  18. #15
    _Fk127_'s Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    720
    Reputation
    16
    Thanks
    208
    My Mood
    Bitchy
    Quote Originally Posted by Sh3hw4z View Post
    Go post in the ca br section.We gave you the fix to the errors now go bitch somewhere else.If you can't talk english why try? Gtfo and go to your section stupid bitch.
    Engrish is his native language



    Put this image in your signature if you support HTML5 development!

Page 1 of 5 123 ... LastLast