Results 1 to 15 of 15
  1. #1
    salen's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In Germany
    Posts
    23
    Reputation
    10
    Thanks
    0
    My Mood
    Yeehaw

    Is there any tutorial for making a crosshair

    can some one give me a tutorial for crosshair for ava

  2. #2
    Marchiano's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    1
    My Mood
    Amused
    I want to make a crosshair too

  3. #3
    Marchiano's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    1
    My Mood
    Amused
    What are your crosshair ideas?
    I would like to just make a small but striking crosshair.

  4. #4
    Threadstarter
    Unverified User
    salen's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In Germany
    Posts
    23
    Reputation
    10
    Thanks
    0
    My Mood
    Yeehaw
    just a simple crosshair should be dll

  5. #5
    kile978's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Florida
    Posts
    283
    Reputation
    12
    Thanks
    28
    My Mood
    Hungover
    OKAY TUTORIAL ON MAKING A CROSSHAIR




    First get 2 peices of Red Tape! (Or your favorite color)

    Tape them in the middle like an X

    Good job you made a crosshair

    Congratz



    Is your Computer Slow? Tired of Junk on your PC?
    Read my Thread & all of your Frustration with be gone. https://www.mpgh.net/forum/showthread...30#post1578330



    Become a Minion []
    Respect List!
    Dave|||||Justin|||||Liz|||||Thechipmyster|||||D3Dh 0oker|||||IHelper|||||Solice12
    Obama,King,Solice12, and Dave! (The Kewlest )


    Disrespect list
    Disrespectful Brats
    Vectorzz™
    Whtlight



  6. #6
    Lukas59's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Linz
    Posts
    2,197
    Reputation
    14
    Thanks
    306
    My Mood
    Amazed
    PM me and i will give ya a tut making a crosshair..

  7. #7
    Pixipixel_'s Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    VCExpress.exe || France :D
    Posts
    2,087
    Reputation
    27
    Thanks
    742
    My Mood
    Cool
    Put this in your globals

    Code:
    float ScreenCenterX = 0.0f;
    float ScreenCenterY = 0.0f;
    bool crosshair = false;
    D3DCOLOR redt = D3DCOLOR_XRGB( 255, 0, 0 );

    In SetViewport

    Code:
    ScreenCenterX = ( float )pViewport->Width / 2;
    ScreenCenterY = ( float )pViewport->Height / 2;
    In Endscene

    Code:
    if(crosshair)
    {
    D3DRECT rec2 = {ScreenCenterX-20, ScreenCenterY, ScreenCenterX+ 20, ScreenCenterY+2};
    D3DRECT rec3 = {ScreenCenterX, ScreenCenterY-20, ScreenCenterX+ 2,ScreenCenterY+20};
    
    m_pD3Ddev->Clear(1, &rec2, D3DCLEAR_TARGET,redt, 0, 0);
    m_pD3Ddev->Clear(1, &rec3, D3DCLEAR_TARGET,redt, 0, 0);
    Woot now you're done.

  8. The Following User Says Thank You to Pixipixel_ For This Useful Post:

    D3Dh0oker (02-25-2010)

  9. #8
    D3Dh0oker's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Snow vally
    Posts
    1,850
    Reputation
    8
    Thanks
    438
    My Mood
    Angelic
    Quote Originally Posted by Pixipixel_ View Post
    Put this in your globals

    Code:
    float ScreenCenterX = 0.0f;
    float ScreenCenterY = 0.0f;
    bool crosshair = false;
    D3DCOLOR redt = D3DCOLOR_XRGB( 255, 0, 0 );

    In SetViewport

    Code:
    ScreenCenterX = ( float )pViewport->Width / 2;
    ScreenCenterY = ( float )pViewport->Height / 2;
    In Endscene

    Code:
    if(crosshair)
    {
    D3DRECT rec2 = {ScreenCenterX-20, ScreenCenterY, ScreenCenterX+ 20, ScreenCenterY+2};
    D3DRECT rec3 = {ScreenCenterX, ScreenCenterY-20, ScreenCenterX+ 2,ScreenCenterY+20};
    
    m_pD3Ddev->Clear(1, &rec2, D3DCLEAR_TARGET,redt, 0, 0);
    m_pD3Ddev->Clear(1, &rec3, D3DCLEAR_TARGET,redt, 0, 0);
    Woot now you're done.
    beat me to it >.> xD

  10. #9
    FORCE™'s Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Omg ure a pedaphile
    Posts
    4,225
    Reputation
    69
    Thanks
    667
    My Mood
    Goofy
    get a pernament marker and put a dot in the middle of the screeen


    LIVERPOOL FC


  11. #10
    Lukas59's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Linz
    Posts
    2,197
    Reputation
    14
    Thanks
    306
    My Mood
    Amazed
    Done D3D?...

  12. #11
    dk173's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Location
    In your dreams
    Posts
    4,767
    Reputation
    19
    Thanks
    461
    My Mood
    Mellow
    lmfao tapi ne 0_0 and that code you must know codeing to even use it i think thid dude wants a step by step

  13. #12
    Threadstarter
    Unverified User
    salen's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In Germany
    Posts
    23
    Reputation
    10
    Thanks
    0
    My Mood
    Yeehaw
    yeah i want a step by step tut and a tut for making chams

  14. #13
    Pixipixel_'s Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    VCExpress.exe || France :D
    Posts
    2,087
    Reputation
    27
    Thanks
    742
    My Mood
    Cool
    Quote Originally Posted by salen View Post
    yeah i want a step by step tut and a tut for making chams
    K learn c++ and d3d, come back in 2 years.

  15. #14
    Ren103's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    Home
    Posts
    1,039
    Reputation
    15
    Thanks
    86
    Quote Originally Posted by Pixipixel_ View Post


    K learn c++ and d3d, come back in 2 years.
    Lmao. I laughed so hard.

  16. #15
    dk173's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Location
    In your dreams
    Posts
    4,767
    Reputation
    19
    Thanks
    461
    My Mood
    Mellow
    lmao 2 years just to make a crosshair im learning its not as hard as i thought if i get hand to hand people acually showing me the way i bet i can make hacks this year

Similar Threads

  1. [Help] Is there any tutorial on how to make a gold weapon?
    By Galyrion in forum Call of Duty Modern Warfare 2 Texture Modding
    Replies: 2
    Last Post: 07-19-2011, 04:10 PM
  2. Is There a Tutorial for Germany (Make zp)
    By Murat in forum CrossFire Help
    Replies: 3
    Last Post: 10-02-2010, 06:03 PM
  3. umm is there any way to make exceptions for avg?
    By Solley in forum Combat Arms Discussions
    Replies: 9
    Last Post: 03-15-2010, 05:25 AM
  4. Are there any Multiplayer Trainer Making Tutorials
    By JAA149 in forum Programming Tutorials
    Replies: 6
    Last Post: 04-07-2009, 05:53 AM
  5. Can i have a noob tutorial for making hacks please?
    By wakaraka in forum WarRock - International Hacks
    Replies: 11
    Last Post: 10-13-2007, 09:52 AM