Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    Rasta's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Russian Federation
    Posts
    1,373
    Reputation
    122
    Thanks
    1,189

    CrossHair TUTORIAL

    How To make You First CrossHair hack
    This Tutorial will show you how to make begginer , crosshair hack . The program am using is called Visual Studio C++ [2010] , you can download 30day trial .
    The SourceCode am using is not made by me , its made by some other guy am just using it to show you guys how to use SourceCodes [ if you know this dont post any crap comments ]
    thanks .
    { i will include the source code here ]
    This CrossHair only works in Window Mode
    Works for any Game :P
    Press Numpad0 to turn it on / off

    TUTORIAL IS MADE BY ME


    VIDEO :
    [YOUTUBE]7395ChgTKlw[/YOUTUBE]

    Source Code :
    Code:
    #include <windows.h>
    #include <iostream>
    #include <math.h>
    using namespace std;
    
    bool crosshairon=false;
    HDC ragedc = NULL;
    int crosshairsize=0;
    int cx=0;
    int cy=0;
    
    void CrossThread(void)
    {
        while(1)
        {
            if(GetAsyncKeyState(VK_NUMPAD0)&1)
            {
                crosshairon=!crosshairon;
                ragedc = GetDC(HWND_DESKTOP);
                cx=GetSystemMetrics(SM_CXSCREEN)/2-((crosshairsize-1)/2);
                cy=GetSystemMetrics(SM_CYSCREEN)/2-((crosshairsize-1)/2);
            }
            Sleep(1);
        }
    }
    
    int main()
    {
        cout<<"Crosshair size in pixels:\n";
        cin>>crosshairsize;
        if(crosshairsize%2==0)
        {
            crosshairsize+=1; 
        }
        system("cls"); 
        cout<<"Press numpad0 to toggle the crosshair on and off\n";
        CreateThread(0,0,(LPTHREAD_START_ROUTINE)CrossThread,0,0,0);
        while(1)
        {
            if(crosshairon==true)
            {
                for(int i=0;i<crosshairsize;i++)
                {
                    SetPixel(ragedc, cx+i, cy+((crosshairsize-1)/2), RGB(255,0,0));
                    SetPixel(ragedc, cx+((crosshairsize-1)/2), cy+i, RGB(0,0,255));
                }
    
                if(crosshairon==false)
            
                for(int i=1;i<crosshairsize;i++)
                {
                    SetPixel(ragedc, cx+i, cy+((crosshairsize-1)/2), RGB(0,0,0));
                    SetPixel(ragedc, cx+((crosshairsize-1)/2), cy+i, RGB(0,0,0));
                }
            }
            Sleep(33);
        }
    }

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

    bonray (03-24-2011),S|W|P (12-04-2011)

  3. #2
    jessehotmail's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Location
    @home
    Posts
    325
    Reputation
    10
    Thanks
    10
    My Mood
    Psychedelic
    looks nice tnx for the toturail!!

  4. #3
    /b/oss's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    13,651
    Reputation
    795
    Thanks
    3,547
    thanks

  5. #4
    bonray's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    1
    Nice Job, Do you know how to make the debug of the VS to work?

  6. #5
    irish4's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    81
    Reputation
    10
    Thanks
    28
    My Mood
    Psychedelic
    lol /lo

  7. #6
    richardtreier's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    ya basement
    Posts
    223
    Reputation
    9
    Thanks
    285
    My Mood
    Cheerful
    "Dieses Video enthält Content von UMG. Es ist in deinem Land nicht verfügbar"

    Remove ur music, or i wont be able to see the vid.
    My working areas: Python26, HTML, JS, CSS, PHP, QT C++, VC++ ( XNA Framework, D3D10 ), AcTool, WP7

    Any public third-party programs of mine running atm: none
    "Fraps-technology based Xhair Overlay": fked by ijji Kinda sad... pwnt before I could release it
    Acc generator ijji/trashmail.de up and running - not released

    If ijji just had as many devs for the ut3 engine as nprotect for their gameguard, I wouldnt have fps-drops to 28 every 4 games, although my PC passes all requirements.



  8. #7
    hack08's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    But how start AVA in Windows Mode please?

  9. #8
    Insomniace's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    I Don't Know . Can You Tell Me !!
    Posts
    83
    Reputation
    11
    Thanks
    4
    My Mood
    Pensive
    Thank You But I Don't Like Your CH Style It's Very Big I Want One Like m_t_h
    @hack08
    I want Know Too

  10. #9
    TheLastStanding's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    I installed C++ And i need a registration key, why? >.>

  11. #10
    TheLastStanding's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    So.. I did that, now wheres the dll to inject that ?

  12. #11
    pcboss1's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In yo' face.
    Posts
    186
    Reputation
    13
    Thanks
    10
    My Mood
    Amused
    Too lazy to try it...
    [IMG]https://i1176.photobucke*****m/albums/x323/shdpro/shdpro4sig.jpg[/IMG]

  13. #12
    FlaVour's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    155
    Reputation
    7
    Thanks
    24
    My Mood
    Cynical
    thanks .. i need it
    [Respect List]
    All they respect me


    [My projects]
    Crossfire NA Public Hack with menu together with sapass209

    [html]"Sir we're surrounded!"
    "Excellent, then we can attack in all directions".[/html]



  14. #13
    Trollaux's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    2,074
    Reputation
    137
    Thanks
    792
    Can you post a video again? Or can you help, I have Visual C++ 2010 Express and I don't know what kind of file to make it as. Windows Forms Application? PLEASE HELP!

  15. #14
    S|W|P's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    The Netherlands
    Posts
    1,742
    Reputation
    -33
    Thanks
    91
    My Mood
    Doh
    Thanks that helped me ALOT Thanks!!

  16. #15
    Ba.avr1's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    375
    My Mood
    Hungover
    Why the Video doesn't work?!?!?

Page 1 of 2 12 LastLast