Page 1 of 3 123 LastLast
Results 1 to 15 of 45
  1. #1
    DeadLinez's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    https://mpgh.net Sexy Points: 989,576,420
    Posts
    465
    Reputation
    11
    Thanks
    500
    My Mood
    Psychedelic

    [Function] DrawRadar [Release]

    DrawRadar
    Made By DeadLine



    Here is a function that i made for my ESP Radar im making.
    Please Give Credits if i Helped You.

    DrawRadar Function:
    Code:
    void DrawRadar( int X, int Y, int Size, IDirect3DDevice9* pDevice )
    {
    	DrawBox( (X+5), (Y+5), (Size-10), (Size-10), D3DCOLOR_ARGB( 255, 0, 0, 0 ), D3DCOLOR_ARGB( 255, 184, 184, 184 ), pDevice );
        FillARGB( (X+(Size/2)), (Y+6), 1, (Size-12), D3DCOLOR_ARGB( 255, 0, 255, 0 ), pDevice );
        FillARGB( (X+6), (Y+(Size/2)), (Size-12), 1, D3DCOLOR_ARGB( 255, 0, 255, 0 ), pDevice );
    }
    Parameters:

    X-
    This is the X position Value of your Radar.

    Y-
    This is the Y position Value of your Radar.

    Size-
    This is the Size of your Radar.

    IDirect3DDevice9* pDevice-
    This is your D3D Device.


    Other Functions Needed:
    Code:
    void FillRGB( int x, int y, int w, int h, D3DCOLOR color, IDirect3DDevice9* pDevice )
    {
        if( w < 0 )w = 1;
        if( h < 0 )h = 1;
        if( x < 0 )x = 1;
        if( y < 0 )y = 1;
    
        D3DRECT rec = { x, y, x + w, y + h };
        pDevice->Clear( 1, &rec, D3DCLEAR_TARGET, color, 0, 0 );
    }
    void FillARGB( int x, int y, int w, int h, D3DCOLOR color, IDirect3DDevice9* pDevice )
    {
        FillRGB( x, y, w, h, color, pDevice );
    }
    Note: i only made the "DrawRadar" Function, i did not make these other Functions.


    Please Give Thanks if You Used This



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

    dogo09 (08-05-2010),the grim reaper (01-16-2011)

  3. #2
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    All u did was draw a BOX with crosshair -.-/...
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  4. #3
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Wtf your not goin to be able to see people in it

  5. #4
    mmbob's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    ja
    Posts
    653
    Reputation
    70
    Thanks
    1,157
    My Mood
    Bitchy
    Oh em gee this was so hard to do. Could you explain it a bit more please? LOL@100% unlimited ammo.

  6. The Following 4 Users Say Thank You to mmbob For This Useful Post:

    Crash (08-05-2010),matypatty (08-04-2010),topblast (08-04-2010),whatup777 (08-05-2010)

  7. #5
    flashlight95's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    12-34 Poopie Street Posts: Over 9000!
    Posts
    127
    Reputation
    10
    Thanks
    15
    Lol a box with 2 lines in it! Great

  8. #6
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Oh he didnt say it would show the Ememys
    This is just for the radar box..
    But i guess useless but ok...

  9. #7
    DeadLinez's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    https://mpgh.net Sexy Points: 989,576,420
    Posts
    465
    Reputation
    11
    Thanks
    500
    My Mood
    Psychedelic
    Wow! thanks guys, and mmbob yes i have Unlimited Ammo, and SuperBullets. no need to doubt me. And i made this for the fuck of it okayz??

  10. #8
    mmbob's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    ja
    Posts
    653
    Reputation
    70
    Thanks
    1,157
    My Mood
    Bitchy
    Quote Originally Posted by DeadLinez View Post
    Wow! thanks guys, and mmbob yes i have Unlimited Ammo, and SuperBullets. no need to doubt me. And i made this for the fuck of it okayz??
    This is almost completely useless. And you have visual unlimited ammo if you have it at all. Superbullets is easy to find once you know what to look for. However you need to know the engine like the back of your hand. I highly doubt half of your accomplishments are fact.

  11. #9
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    Quote Originally Posted by DeadLinez View Post
    Wow! thanks guys, and mmbob yes i have Unlimited Ammo, and SuperBullets. no need to doubt me. And i made this for the fuck of it okayz??
    HEY DID I SAY U CAN SPEAK TO LORD MMBOB?? WELL U CANT

    HE IS THE LORD.. NOW KISS THE VERY SHIT HE MADE... DO IT R DIE

    noobs dont kno who there are talking to
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  12. #10
    DeadLinez's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    https://mpgh.net Sexy Points: 989,576,420
    Posts
    465
    Reputation
    11
    Thanks
    500
    My Mood
    Psychedelic
    lol? i did not take any of mmbob's code.

    and mmbob its not visual, and yes superbullets is easy to find, but rather hard if you dont know what your doing..

  13. #11
    Synns's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    5,174
    Reputation
    170
    Thanks
    2,557
    My Mood
    Bitchy
    So you can make unlimited ammo and superbullets but you can't install and link Boost libraries?

    k.

  14. #12
    mmbob's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    ja
    Posts
    653
    Reputation
    70
    Thanks
    1,157
    My Mood
    Bitchy
    Quote Originally Posted by DeadLinez View Post
    lol? i did not take any of mmbob's code.

    and mmbob its not visual, and yes superbullets is easy to find, but rather hard if you dont know what your doing..
    Im going to tell you a little something. There are many many vip coders out there. Do you know how many have unlimited ammo? Maybe 5 or 6. I know Gordon, Raj inn, and DC have it or have gotten it. Do you know how long they have been coding CA hacks, building up knowledge about the lithtech engine and how CA works on the inside? I know Gordon at least has been working for over a year and a half. And here's you, first started working on hacks a month or two ago. You even needed help on a menu on another forum. So you want us to believe that you, someone who couldnt even get a menu to work, has found unlimited ammo and superbullets in a matter of weeks? Think again.

  15. The Following 8 Users Say Thank You to mmbob For This Useful Post:

    ac1d_buRn (08-04-2010),CoderNever (08-04-2010),Crash (08-05-2010),markoj (08-05-2010),supercarz1991 (08-05-2010),Void (08-04-2010),whatup777 (08-05-2010),whit (08-04-2010)

  16. #13
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by mmbob View Post
    Im going to tell you a little something. There are many many vip coders out there. Do you know how many have unlimited ammo? Maybe 5 or 6. I know Gordon, Raj inn, and DC have it or have gotten it. Do you know how long they have been coding CA hacks, building up knowledge about the lithtech engine and how CA works on the inside? I know Gordon at least has been working for over a year and a half. And here's you, first started working on hacks a month or two ago. You even needed help on a menu on another forum. So you want us to believe that you, someone who couldnt even get a menu to work, has found unlimited ammo and superbullets in a matter of weeks? Think again.
    that was kinda inspiring...
    Idk Why../

  17. #14
    DeadLinez's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    https://mpgh.net Sexy Points: 989,576,420
    Posts
    465
    Reputation
    11
    Thanks
    500
    My Mood
    Psychedelic
    alight mmbob, im not crazy over you either. i've been coding hacks for over 2 years now. i just recently signed up on this site, to code hacks for CA, but i already know how to find addys, , etc.. i have proof too, i showed whit.

  18. #15
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow
    23% radar and 10% ESP?

    You do know.. it's nearly the same math...

Page 1 of 3 123 LastLast

Similar Threads

  1. [RELEASE] Useful Functions
    By ac1d_buRn in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 188
    Last Post: 10-26-2010, 05:12 PM
  2. [Release] DrawCheckBox Function
    By DeadLinez in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 17
    Last Post: 09-10-2010, 04:49 AM
  3. [RELEASE] Time & Date Function
    By Fabolous in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 26
    Last Post: 07-13-2010, 02:55 AM
  4. [Release] Sals 1njector 4.0 with functions [Release]
    By Sals in forum CrossFire Hacks & Cheats
    Replies: 245
    Last Post: 06-20-2010, 08:33 AM
  5. [Discussion] Ideas for my next launcher release, look, functions & more
    By teun95 in forum CrossFire Hacks & Cheats
    Replies: 17
    Last Post: 03-02-2010, 04:38 PM