Page 4 of 4 FirstFirst ... 234
Results 46 to 60 of 60
  1. #46
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty
    Quote Originally Posted by Matrix_NEO006 View Post
    lol they make millions of dollars they have super computer better then alienwares of course they would store it on their side + their computers are linux(not gaming).

    well i should come up with tutorials. suggest something.
    WOMG better than alienwares! D:

    Lol.. alienwares, their servers still can't store all the information needed for millions of computers, regardless, only a small percentage andsince that infomrmation must at some time be transferred to your own computer it is still possible to alter it.

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

  2. #47
    rwkeith's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Posts
    457
    Reputation
    11
    Thanks
    79
    My Mood
    Angelic
    Quote Originally Posted by why06 View Post
    WOMG better than alienwares! D:

    Lol.. alienwares, their servers still can't store all the information needed for millions of computers, regardless, only a small percentage andsince that infomrmation must at some time be transferred to your own computer it is still possible to alter it.
    I'd like to answer that thought with another small article....

    I'll make an article soon regarding information sent and received by the server. Kinda Busy =S
    Goals In Life:
    [X] Become an Advanced Member
    [X]Release a tut on mpgh
    [0]Post 300 posts
    [X]Make a working hack
    [X] Learn c++

  3. #48
    Matrix_NEO006's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    240
    Reputation
    12
    Thanks
    33
    My Mood
    Lonely
    Win32 Api Tutorial
    Basic: A window
    Not my tutorial
    Code:
    //=============================================================================
    //SIMPLE WINDOW - Copyright © 2000,2005 Ken Fitlike
    //=============================================================================
    //API functions used: CreateWindowEx,DefWindowProc,DispatchMessage,GetMessage,
    //GetSystemMetrics,LoadImage,MessageBox,PostQuitMessage,RegisterClassEx,
    //ShowWindow,UpdateWindow,TranslateMessage,WinMain.
    //=============================================================================
    //This creates a window, half the height and half the width of the desktop
    //which is centred on the desktop.
    //
    //WinMain is the entry point function for winapi applications (equivalent to 
    //main). _tWinMain is a placeholder for WinMain (non-unicode fn) or wWinMain 
    //(unicode) but, since there is currently no wWinMain defined for MinGW just 
    //use  WinMain; if a unicode command line string is required then use the 
    //GetCommandLine api function.
    //=============================================================================
    #include <windows.h>  //include all the basics
    #include <tchar.h>    //string and other mapping macros
    #include <string>
    
    //define an unicode string type alias
    typedef std::basic_string<TCHAR> ustring;
    //=============================================================================
    //message processing function declarations
    LRESULT CALLBACK WndProc(HWND,UINT,WPARAM,LPARAM);
    
    //non-message function declarations
    inline int ErrMsg(const ustring&);
    //=============================================================================
    int WINAPI WinMain(HINSTANCE hInst,HINSTANCE,LPSTR pStr,int nCmd)
    {
    ustring classname=_T("SIMPLEWND");
    WNDCLASSEX wcx={0};  //used for storing information about the wnd 'class'
    
    wcx.cbSize         = sizeof(WNDCLASSEX);           
    wcx.lpfnWndProc    = WndProc;             //wnd Procedure pointer
    wcx.hInstance      = hInst;               //app instance
    //use 'LoadImage' to load wnd class icon and cursor as it supersedes the 
    //obsolete functions 'LoadIcon' and 'LoadCursor', although these functions will 
    //still work. Because the icon and cursor are loaded from system resources ie 
    //they are shared, it is not necessary to free the image resources with either 
    //'DestroyIcon' or 'DestroyCursor'.
    wcx.hIcon         = reinterpret_cast<HICON>(LoadImage(0,IDI_APPLICATION,
                                                IMAGE_ICON,0,0,LR_SHARED));
    wcx.hCursor       = reinterpret_cast<HCURSOR>(LoadImage(0,IDC_ARROW,
                                                  IMAGE_CURSOR,0,0,LR_SHARED));
    wcx.hbrBackground = reinterpret_cast<HBRUSH>(COLOR_BTNFACE+1);   
    wcx.lpszClassName = classname.c_str(); 
    //the window 'class' (not c++ class) has to be registered with the system
    //before windows of that 'class' can be created
    if (!RegisterClassEx(&wcx))
      {
      ErrMsg(_T("Failed to register wnd class"));
      return -1;
      }
    
    int desktopwidth=GetSystemMetrics(SM_CXSCREEN);
    int desktopheight=GetSystemMetrics(SM_CYSCREEN);
    
    HWND hwnd=CreateWindowEx(0,                     //extended styles
                             classname.c_str(),     //name: wnd 'class'
                             _T("Simple Window"),   //wnd title
                             WS_OVERLAPPEDWINDOW,   //wnd style
                             desktopwidth/4,        //position:left
                             desktopheight/4,       //position: top
                             desktopwidth/2,        //width
                             desktopheight/2,       //height
                             0,                     //parent wnd handle
                             0,                     //menu handle/wnd id
                             hInst,                 //app instance
                             0);                    //user defined info
    if (!hwnd)
      {
      ErrMsg(_T("Failed to create wnd"));
      return -1;
      }
    
    ShowWindow(hwnd,nCmd); 
    UpdateWindow(hwnd);
    //start message loop - windows applications are 'event driven' waiting on user,
    //application or system signals to determine what action, if any, to take. Note 
    //that an error may cause GetMessage to return a negative value so, ideally,  
    //this result should be tested for and appropriate action taken to deal with 
    //it(the approach taken here is to simply quit the application).
    MSG msg;
    while (GetMessage(&msg,0,0,0)>0)
      {
      TranslateMessage(&msg);
      DispatchMessage(&msg);
      }
    return static_cast<int>(msg.wParam);
    }
    //=============================================================================
    LRESULT CALLBACK WndProc(HWND hwnd,UINT uMsg,WPARAM wParam,LPARAM lParam)
    {
    switch (uMsg)
      {
      case WM_DESTROY:
        PostQuitMessage(0);    //signal end of application
        return 0;
      default:
        //let system deal with msg
        return DefWindowProc(hwnd,uMsg,wParam,lParam);  
      }
    }
    //=============================================================================
    inline int ErrMsg(const ustring& s)
    {
    return MessageBox(0,s.c_str(),_T("ERROR"),MB_OK|MB_ICONEXCLAMATION);
    }
    //=============================================================================
    
    Making Trainer With Win32 Api - GUI
    if you using higher MSVC(mine is 2005) make sure set the character to multibyte.
    Last edited by Matrix_NEO006; 12-13-2009 at 05:07 PM.

  4. #49
    Matrix_NEO006's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    240
    Reputation
    12
    Thanks
    33
    My Mood
    Lonely

  5. #50
    wantedc's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    usa
    Posts
    3
    Reputation
    10
    Thanks
    1
    My Mood
    Amazed
    sweet all that info ty guys

  6. #51
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty
    Will be doing a bit of revision here. If you guys think of something I should include please say so

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

  7. #52
    Matrix_NEO006's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    240
    Reputation
    12
    Thanks
    33
    My Mood
    Lonely
    MFC HACK APPLICATION/ENGINE (SIMPLE)

    end result is this




    Basics:



    Pro:
    How to handle the keyboard input this took me a while to find out
    example if you want to activate a hack option using numpad1 or 2 you need this

    1st step



    2nd step
    is to make a aclearator and when it gives you VK_RETURN you change it to
    VK_NUMPAD1



    3rd last step is to write the function

    --------------------------------------------
    Changing BG color and text color

    1st step

    2nd step

    3rd step

    if you didnt understand watch the video

    my last tutorial
    Last edited by Matrix_NEO006; 02-27-2010 at 10:04 PM.

  8. #53
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty
    MFC sorta makes me want to shoot myself, but I guess its a good thing to learn. =/

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

  9. #54
    Matrix_NEO006's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    240
    Reputation
    12
    Thanks
    33
    My Mood
    Lonely
    once you get hang of it you will like took me 1 month to learn this shit so fucking hard man.

  10. #55
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty
    Quote Originally Posted by Matrix_NEO006 View Post
    once you get hang of it you will like took me 1 month to learn this shit so fucking hard man.
    Yeh, I hate trying to design windows, stay away from it as much as possible, but did your make these vids yourself? Just asking....

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

  11. #56
    Coke's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Location
    You would like to know wouldn't you.
    Posts
    4,665
    Reputation
    885
    Thanks
    1,249
    My Mood
    Daring
    Wow nice stuff to start off my hacking training

  12. #57
    Matrix_NEO006's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    240
    Reputation
    12
    Thanks
    33
    My Mood
    Lonely
    Quote Originally Posted by why06 View Post
    Yeh, I hate trying to design windows, stay away from it as much as possible, but did your make these vids yourself? Just asking....
    Wow nice stuff to start off my hacking training
    @why, of course take a look the youtube account

    yes i hate making hax in console, a black(empty) thats just makes me uninterested to hacking but when you have a good trainer engine it always makes me wanna make more hax.
    Last edited by Matrix_NEO006; 02-27-2010 at 10:10 PM.

  13. #58
    Arhk's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Engineering
    Posts
    3,618
    Reputation
    35
    Thanks
    217
    My Mood
    Amused
    I resent MFC with a passion. I figure it sux ass since the code isn't portable, I'm old school I like having the option of switching (I don't usually anyways~) my code back and forth through a *nix. Plus MFC itself is Microsoft's way of spoon-feeding people with Windows only code. I've dedicated myself to ASM I enjoy it when the under belly of the API is exposed to me (lower than that in terms of window making and a computer becomes a scary place).
    ~
    "If the world hates you, keep in mind that it hated me first." John 15:18

  14. #59
    $$$ DANGER $$$'s Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    nice guides

  15. #60
    Matrix_NEO006's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    240
    Reputation
    12
    Thanks
    33
    My Mood
    Lonely
    Videos has been removed(im sorry) but im no longer interested in game ha cking

Page 4 of 4 FirstFirst ... 234

Similar Threads

  1. What would you look for in a game hacking tool kit?
    By Dave84311 in forum General Game Hacking
    Replies: 23
    Last Post: 06-02-2015, 06:34 AM
  2. MPGH Game Hacking Group
    By Dave84311 in forum General Game Hacking
    Replies: 22
    Last Post: 08-08-2007, 12:43 PM
  3. Web-based game hacking..
    By Krilliam in forum General Game Hacking
    Replies: 7
    Last Post: 02-20-2006, 01:12 PM
  4. how can i make game hack?!!!!
    By UnknownID in forum General Game Hacking
    Replies: 2
    Last Post: 02-07-2006, 07:21 PM
  5. Game Hacking IMPOSSIBLE IN VISTA?
    By Dave84311 in forum General Game Hacking
    Replies: 13
    Last Post: 01-09-2006, 08:58 PM

Tags for this Thread