Thread: 2d Radar.

Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    IGotBanned.'s Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    imageshack.us/photo/my-images/190/uban.png
    Posts
    1,290
    Reputation
    -49
    Thanks
    122
    My Mood
    Aggressive

    2d Radar.

    Sticky it?

    Credits : R4z8r



    Code:
    BOOL CBot::WorldToRadar( CVec3* vEntPos, CVec3* vOut, FLOAT PosX, FLOAT PosY, FLOAT Height, FLOAT Width )
    {
    	CVec3 vLocal;
    	CAngles vRot;
    
    	FLOAT MiddleX = Width  / 2.0f; 
    	FLOAT MiddleY = Height / 2.0f;
    
    	Vec3Subtract( &vLocal, vEntPos, &pRefdef->vOrigin );
    
    	vLocal.z = 0.0f; 
    
    	Distance = vLocal.Length() / 12.5f; 
    
    	Vec3ToAngles( &vRot, &vLocal ); 
    	
    	vRot.Yaw = AngleNormalize180( vRot.Yaw - pGame->CurrentSnap->vAngles.Yaw );
    	
    	AngleToVectors( &vRot, &vLocal, NULL, NULL );
    
    	Vec3Scale( &vLocal, &vLocal, Distance );
    
    	vOut->x = -vLocal.y + PosX + MiddleX;
    	vOut->y = -vLocal.x + PosY + MiddleY;
    	vOut->z = 0.0f;
    
    	if(vOut->x > (PosX + Width) )
    		vOut->x = (PosX + Width);
    	else if(vOut->x < (PosX) )
    		vOut->x = PosX;
    	
    	if(vOut->y > (PosY + Height) )
    		vOut->y = (PosY + Height);
    	else if(vOut->y < (PosY) )
    		vOut->y = PosY;
    
    	return TRUE;	
    }

  2. #2
    lightningss's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    amsterdam
    Posts
    216
    Reputation
    10
    Thanks
    66
    My Mood
    Sleepy
    hey mate, i don't know how to use this, i think i read that we need to compile it. could you give me a link or some information on how to use this please i'd thank you on any post i see if i can use this some day haha
    to do list

    MAKE A 'TO DO LIST'


    i bet i'm the firsrt one who finished


    thank me if you stared back

  3. #3
    jdslashv2's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Bratislava
    Posts
    138
    Reputation
    10
    Thanks
    304
    My Mood
    Yeehaw
    Quote Originally Posted by lightningss View Post
    hey mate, i don't know how to use this, i think i read that we need to compile it. could you give me a link or some information on how to use this please i'd thank you on any post i see if i can use this some day haha
    Click me!
    sig?

  4. The Following 3 Users Say Thank You to jdslashv2 For This Useful Post:

    FrostyTheSnowCone (09-02-2011),IGotBanned. (09-03-2011),lightningss (09-03-2011)

  5. #4
    IGotBanned.'s Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    imageshack.us/photo/my-images/190/uban.png
    Posts
    1,290
    Reputation
    -49
    Thanks
    122
    My Mood
    Aggressive
    Quote Originally Posted by jdslashv2 View Post
    as always.
    JDSLASH always withan good anwser.

  6. #5
    lightningss's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    amsterdam
    Posts
    216
    Reputation
    10
    Thanks
    66
    My Mood
    Sleepy
    thanks for the effort but i just need to know how i can use it, not the whole books of c++
    to do list

    MAKE A 'TO DO LIST'


    i bet i'm the firsrt one who finished


    thank me if you stared back

  7. #6
    jdslashv2's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Bratislava
    Posts
    138
    Reputation
    10
    Thanks
    304
    My Mood
    Yeehaw
    Quote Originally Posted by lightningss View Post
    thanks for the effort but i just need to know how i can use it, not the whole books of c++
    not to be a troll but this code is coded in c++ so in order to use it you need to understand c++ AND understand the cod4 engine (which is quake3) you can EASILY find source codes to learn from online. just google Cod4 Basehook and you should find a blank one you can make for your own cheats.
    sig?

  8. #7
    Heartview's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    KY Cygni
    Posts
    9,202
    Reputation
    717
    Thanks
    2,890
    Quote Originally Posted by jdslashv2 View Post
    not to be a troll but this code is coded in c++ so in order to use it you need to understand c++ AND understand the cod4 engine (which is quake3) you can EASILY find source codes to learn from online. just google Cod4 Basehook and you should find a blank one you can make for your own cheats.
    Technically, the engine is IW3 engine, and is based off an unnamed build of an idtech engine, not the actual quake engine itself. But its relatively the same.
    Texture Mods


    Obedear, the sky is low

  9. #8
    [TIB]injector's's Avatar
    Join Date
    Aug 2011
    Gender
    female
    Posts
    314
    Reputation
    -1
    Thanks
    108
    My Mood
    Angelic
    it's just copy and paste in C++ :P ??? answer fast @IGotBanned.

  10. #9
    Taylor Gang Or Die's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Look behind you.
    Posts
    26
    Reputation
    10
    Thanks
    16
    My Mood
    Drunk
    Quote Originally Posted by [TIB]injector's View Post
    it's just copy and paste in C++ :P ??? answer fast @IGotBanned.
    Lol also what i throught. I ain't into that coding stuff but i could imagine thats the way you could do it.



    Also known as: xZaTiC

    Its Taylor Gang Or Die!
    Goals:
    10 Posts []
    50 Posts []
    100 Posts[]
    Mod a server [X]
    Hack in a game [X]
    Troll [] (TROLOLOLOL]
    Complete this list [X]

  11. #10
    IGotBanned.'s Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    imageshack.us/photo/my-images/190/uban.png
    Posts
    1,290
    Reputation
    -49
    Thanks
    122
    My Mood
    Aggressive
    Quote Originally Posted by [TIB]injector's View Post
    it's just copy and paste in C++ :P ??? answer fast @IGotBanned.
    nope its not jsut copy and paste.
    u need to hook it.
    btw is that u?
    on the pic?
    @[TIB]injector's
    Last edited by IGotBanned.; 09-10-2011 at 07:51 AM.

  12. #11
    Moto's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Bay Area, CA
    Posts
    13,055
    Reputation
    707
    Thanks
    14,558
    My Mood
    Blah
    Why would someone sticky a source code for 2D radar.



  13. #12
    IGotBanned.'s Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    imageshack.us/photo/my-images/190/uban.png
    Posts
    1,290
    Reputation
    -49
    Thanks
    122
    My Mood
    Aggressive
    Quote Originally Posted by Moto View Post
    Why would someone sticky a source code for 2D radar.
    Idk.
    i just randomLy wrote that.

  14. #13
    dominator012's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    142
    Reputation
    2
    Thanks
    32
    My Mood
    Bored
    How long does it take you guys to study c++ and that you can hack games. Im willing to spend four hours a day. Thanks

    And btw, if you code your own hack and not release it, will it stay undetected forever?

  15. #14
    IGotBanned.'s Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    imageshack.us/photo/my-images/190/uban.png
    Posts
    1,290
    Reputation
    -49
    Thanks
    122
    My Mood
    Aggressive
    Quote Originally Posted by dominator012 View Post
    How long does it take you guys to study c++ and that you can hack games. Im willing to spend four hours a day. Thanks

    And btw, if you code your own hack and not release it, will it stay undetected forever?
    depends. but if you read c++ 4 hours day u wull be learning good.
    an ur hack will not be undeteced 4ever.
    but u can update it so it gets undetected
    hope i helped!

  16. #15
    Takari's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Cross Fire Section
    Posts
    11,889
    Reputation
    574
    Thanks
    1,966
    My Mood
    Cool
    This is a source.
    You need to know how to debug it with C++
    [IMG]https://i1114.photobucke*****m/albums/k538/ImminentJM/takari.png[/IMG]




     
    Goal:
    10,000 Posts - 10/13/2011
    Become Minion - Not Done
    Become Donator - 07/29/2011
    1000 Thanks - Done - 07/25/2011
    2000 Thanks - Not Done
    Thanks Archangel for my 1,000 Thanks.
    Thanks Keroaplt for my Signature.

Page 1 of 2 12 LastLast

Similar Threads

  1. ****************-Radar-v1.8 (finly out)
    By callmethe1 in forum Call of Duty 4 - Modern Warfare (MW) Hacks
    Replies: 18
    Last Post: 01-12-2010, 02:06 PM
  2. Last Chaos Radar
    By Mexara in forum Hack Requests
    Replies: 0
    Last Post: 06-11-2009, 10:57 AM
  3. I need just a radar hack?
    By Van666 in forum Call of Duty 4 - Modern Warfare (MW) Hacks
    Replies: 0
    Last Post: 01-18-2009, 11:31 AM
  4. Replies: 16
    Last Post: 08-10-2007, 07:10 AM
  5. [SEARCHING]Wallhack or Radar
    By stfustfu in forum WarRock - International Hacks
    Replies: 0
    Last Post: 01-12-2006, 11:37 PM