Page 31 of 38 FirstFirst ... 212930313233 ... LastLast
Results 451 to 465 of 564
  1. #451
    yoda23456's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    420Sweden
    Posts
    1,335
    Reputation
    16
    Thanks
    384
    My Mood
    Cheerful
    This Is kinda Awsome... Good work

  2. #452
    Birdshit's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    170
    Reputation
    10
    Thanks
    59
    My Mood
    Dead
    well I managed (under debugging) to get it to show the resolution properly but thats it for not knowing a single thing about C++ or even how to find the offset (played with Cheat Engine for the first time today) btw:

    Code:
    ReadProcessMemory(process,(PVOID)0x633B424,&resolution,8,NULL);
    under debugging made the proper resolution show up, does that mean the code is good until that point, and its the other things I dont have right?

    Code:
    ReadProcessMemory(process,(PVOID)0x7F58C8,&IsInGame,4,NULL); //k
    		
    		if(IsInGame)
    		{
    			ReadProcessMemory(process,(PVOID)(0x7F8C08),&localclientnum,4,NULL); //k
    			ReadProcessMemory(process,(PVOID)(0xB32AB0+0x10),&fov,8,NULL); //k
    			ReadProcessMemory(process,(PVOID)(0xB32AB0+0x18),&mypos,12,NULL); //k
    			ReadProcessMemory(process,(PVOID)(0xB32AB0+0x3F90),&viewangles,12,NULL); //k
    			for(int i = 0; i < 18; i++)
    			{
    				ReadProcessMemory(process,(PVOID)(0x8EC2C8+i*0x204+0xE0),&typ,4,NULL); //k
    				if(typ != 1)
    					continue;
    				ReadProcessMemory(process,(PVOID)(0x8EC2C8+i*0x204+0x2),&valid,4,NULL); //k
    				ReadProcessMemory(process,(PVOID)(0x8EC2C8+i*0x204+0x1DC),&alive,4,NULL); //k
    				ReadProcessMemory(process,(PVOID)(0x8EC2C8+i*0x204+0xDC),&clientnum,4,NULL); //k
    				if(valid && alive && (localclientnum != clientnum))
    				{
    					ReadProcessMemory(process,(PVOID)(0x8EB2E4+i*0x52C+0x1C),&team,4,NULL); //k
    					if(team == 1)
    						info.color = RGB(255,0,0);
    					else if(team == 2)
    						info.color = RGB(0,0,255);
    					else
    						info.color = RGB(255,255,255);
    					ReadProcessMemory(process,(PVOID)(0x56AC70+i*0x204+0x18),&info.pos,12,NULL); //k
    					ReadProcessMemory(process,(PVOID)(0x5707D0+i*0x52C+0xC),&info.name,16,NULL); //k
    Im such a noob at this, and it would be so much better(and sooner) if someone who knew what they were doing (AT ALL) did this... how hard is it to take the 1.1.177 Kn4ck3r source and JUST update the offsets, and change the box to be *around* the size and area of his head?

    alright so I got it to work (compiled using Dev-C++, thank you Sumo1) but there are a few things that I would like to do but I dont have a clue how to

    how do I adjust the "base" y value in the calculations so that it doesn't completely mess everything up?

    Im trying to move the origin of the box to somewhere near the head (doesn't have to be super perfect), and I was going to make a box or even an ellipse 100x100 as long as it was at head level (right now as I understand it doesnt compensate for what stance the player is in so I have the box drawing "1400" tall to have the very top of the box be right under his head if he is standing and you are aim down the sight. All this is new to me and Im still discovering the limits of kn4ck3r's original 1.1.177 source code (Im thinking of doing the Sumo1 thing and adding in my own stuff eg. copy/paste other people's stuff)

    Code:
    void ReadGame()
    {
    	while(true)
        {
    		ReadProcessMemory(process,(PVOID)0x7F58C8,&IsInGame,4,NULL); //k
    		
    		if(IsInGame)
    		{
    			ReadProcessMemory(process,(PVOID)(0x7F59BC),&localclientnum,4,NULL); //k
    			ReadProcessMemory(process,(PVOID)(0x860030+0x10),&fov,8,NULL); //k
    			ReadProcessMemory(process,(PVOID)(0x860030+0x18),&mypos,12,NULL); //k
    			ReadProcessMemory(process,(PVOID)(0x860030+0x3F90),&viewangles,12,NULL); //k
    			for(int i = 0; i < 18; i++)
    			{
    				ReadProcessMemory(process,(PVOID)(0x8F8AF8+i*0x204+0xE0),&typ,4,NULL); //k
    				if(typ != 1)
    					continue;
    				ReadProcessMemory(process,(PVOID)(0x8F8AF8+i*0x204+0x2),&valid,4,NULL); //k
    				ReadProcessMemory(process,(PVOID)(0x8F8AF8+i*0x204+0x1DC),&alive,4,NULL); //k
    				ReadProcessMemory(process,(PVOID)(0x8F8AF8+i*0x204+0xDC),&clientnum,4,NULL); //k
    				if(valid && alive && (localclientnum != clientnum))
    				{
    					ReadProcessMemory(process,(PVOID)(0x8EC2C8+i*0x52C+0x1C),&team,4,NULL); //k
    					if(team == 1)
    						info.color = RGB(255,0,0);
    					else if(team == 2)
    						info.color = RGB(0,0,255);
    					else
    						info.color = RGB(255,255,255);
    					ReadProcessMemory(process,(PVOID)(0x8F8AF8+i*0x204+0x18),&info.pos,12,NULL); //k
    					ReadProcessMemory(process,(PVOID)(0x8EC2C8+i*0x52C+0xC),&info.name,16,NULL); //k
    					
    					dist = (mypos-info.pos).length()/48;
    					if(WorldToScreen(info.pos,&ScreenX,&ScreenY))
    					{
    						drawx = 100.0/dist;
    						drawy = 1400.0/dist;
    
    						DrawBox(ScreenX-(drawx/2),ScreenY-drawy,drawx,drawy,info.color);	
    						DrawString(ScreenX-(drawx/2),ScreenY,RGB(255,255,255),true,info.name);
    					}
    				}
    			}
    		}
    		Sleep(1);
    	}
    }

    oh btw THIS WORKS IN FULLSCREEN AND THERE IS NOBODY WITHOUT A BOX EVER!

    uh yeah here is a tip... don't try out other source code you may think is external... listen to the advice here, it wasnt kn4ck3r's source it was some other "external" that got me banned, I was just VAC banned, but its ok, now Im going to try the hardcore ones
    Last edited by House; 09-12-2010 at 07:13 PM.

  3. #453
    House's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    2,990
    Reputation
    223
    Thanks
    9,296
    My Mood
    Cynical
    wow man triple post, we dont even have rules for that, I think Ima contact HA xD
    /Posts Merged

  4. #454
    oggeproductions's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Sweden.
    Posts
    15
    Reputation
    10
    Thanks
    7
    My Mood
    Sleepy
    House I love you, and I love your tv show haha xD<3

  5. #455
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,670
    My Mood
    Breezy
    Quote Originally Posted by oggeproductions View Post
    House I love you, and I love your tv show haha xD<3
    Spam much? Oh and great post Birdshit... I couldn't be bothered reading all of it though /yea
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  6. The Following User Says Thank You to master131 For This Useful Post:

    Blubb1337 (09-14-2010)

  7. #456
    Terio's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Hmm Let me Think
    Posts
    5,763
    Reputation
    125
    Thanks
    477
    My Mood
    Blah
    nice hack good job

  8. #457
    orlaub's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    70
    Reputation
    10
    Thanks
    7
    My Mood
    Grumpy
    Edit: nvm...

  9. #458
    Calibur123's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    in my room
    Posts
    35
    Reputation
    10
    Thanks
    5
    My Mood
    Sneaky
    can i get banned for this?i realy whant a hack ...

  10. #459
    Alen's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    Liquid Generator
    Posts
    27,920
    Reputation
    2548
    Thanks
    4,224
    My Mood
    Fine
    Quote Originally Posted by Calibur123 View Post
    can i get banned for this?i realy whant a hack ...
    No, this just reads memory and doesn't mess with the game.

  11. #460
    nockoutz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Texas
    Posts
    86
    Reputation
    10
    Thanks
    77
    My Mood
    Amazed

    ...

    its kindya f**cked up .. becuse the red square around the enemies isnt exactly at them and he moves up and down

  12. #461
    matjuh123's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    So.. you didn't look in your closet yet?
    Posts
    1,204
    Reputation
    21
    Thanks
    641
    My Mood
    Amazed
    Quote Originally Posted by nockoutz View Post
    its kindya f**cked up .. becuse the red square around the enemies isnt exactly at them and he moves up and down
    If you don't like it, don't use it.
    -I'm back as an active member. (8th December, 2013)

  13. #462
    ulimmortal's Avatar
    Join Date
    Apr 2007
    Gender
    male
    Location
    Ontario
    Posts
    1
    Reputation
    10
    Thanks
    0
    Is this still undetected?

  14. #463
    cayongrayoo's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Adelaide
    Posts
    188
    Reputation
    15
    Thanks
    25
    My Mood
    Confused
    Quote Originally Posted by ulimmortal View Post
    Is this still undetected?
    no it's not STILL undeteected, Because it can never be detected because it is external. so YOU WILL NOT GET BANNED!
    When i was younger, my fairy god mother asked me whether I want a long penis or a long memory.....................I forget my response.


    I came here to drink milk, and kick ass....and I've just finished my milk


    "I'm gunna report you to Activision"
    "Ok tell them I said HAI!"
    Did I help?
    Click thanks? :P


    If I make a mod that you think is easy to make then don't flame me because I did something that COULD of done, I don't care if you can do it or not, the point is you gotta start with the easy stuff.


    Call Of Duty Modern Warfare 2 Legit: Banned as of 25/08/2010
    Reason: Steam Loader.


  15. The Following User Says Thank You to cayongrayoo For This Useful Post:

    House (09-26-2010)

  16. #464
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    /deleted posts above...



  17. #465
    View0my0package's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    So how does this stack against the new patches, that they haven't identified? I know this program works not only for XP but vista and 7 however since their unidentified patches Ive noticed (well at least on 7) that it is now blocked and no longer works, now idk if thats the case with Xp or Vista, but a concern, someone else may run into

Page 31 of 38 FirstFirst ... 212930313233 ... LastLast

Similar Threads

  1. [Detected] External BoxESP v4.3 ( V1.2.208 compatible )
    By Archangel in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 916
    Last Post: 12-29-2010, 02:27 PM
  2. [Detected] External BoxESP v5.1 - BigRadar [1.2.208]
    By sph4ck in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 917
    Last Post: 10-02-2010, 05:40 AM
  3. [Detected] External BoxEsp V4.32 Sniper Aimbot + Strings Esp (v1.2.208 compatible)
    By Archangel in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 1004
    Last Post: 09-19-2010, 10:00 AM
  4. [Release] Sumol+Kn4ck3r's External ESP v2 ( For XP Users =)
    By Melodia in forum Call of Duty Modern Warfare 2 Private Servers
    Replies: 45
    Last Post: 08-02-2010, 01:06 AM
  5. [Release] External BoxESP v3.1 - for build 184 [Updated Hack]
    By Skyline. in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 28
    Last Post: 03-11-2010, 09:49 AM

Tags for this Thread