Page 18 of 62 FirstFirst ... 8161718192028 ... LastLast
Results 256 to 270 of 917
  1. #256
    yippykaiyee's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    45
    Reputation
    10
    Thanks
    17
    no. i cant

  2. The Following User Says Thank You to yippykaiyee For This Useful Post:

    Trollpocalypse (07-28-2010)

  3. #257
    Archangel's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Between Both Worlds
    Posts
    8,866
    Reputation
    1021
    Thanks
    9,003
    My Mood
    Angelic
    Quote Originally Posted by yippykaiyee View Post
    no. i cant
    you cant what?

  4. The Following User Says Thank You to Archangel For This Useful Post:

    Trollpocalypse (07-28-2010)

  5. #258
    BigPop's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    BerlinCity
    Posts
    451
    Reputation
    20
    Thanks
    101
    My Mood
    Psychedelic
    war3z do you know if this hack is uac2 safe?
    PM me if you need help.

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

    Trollpocalypse (07-28-2010)

  7. #259
    Archangel's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Between Both Worlds
    Posts
    8,866
    Reputation
    1021
    Thanks
    9,003
    My Mood
    Angelic
    no, i dont, the only way to know this is by testing it

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

    Trollpocalypse (07-28-2010)

  9. #260
    Failur3's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    pussyland
    Posts
    37
    Reputation
    10
    Thanks
    5
    My Mood
    Inspired
    thnx awsome the eternap ESP

  10. The Following User Says Thank You to Failur3 For This Useful Post:

    Trollpocalypse (07-28-2010)

  11. #261
    yippykaiyee's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    45
    Reputation
    10
    Thanks
    17
    oops i forgot the 't'. my keys are sooo hard to press...

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

    Failur3 (05-17-2010),Trollpocalypse (07-28-2010)

  13. #262
    sph4ck's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    main.py
    Posts
    230
    Reputation
    59
    Thanks
    1,565
    Hey guys, kolbybrooks posted a very nice improvement on uc for a better WorldToScreen.

    Basically it means the ESP works with Predator Missile - and a little better overall.

    Here is how to add it on version 4.3:

    First add this at line 895:
    Code:
    		ReadProcessMemory(mw2_process,(PVOID)(REFDEF+0x24),&viewAxis,36,NULL);
    Then, replace the WorldToScreen function (lines 765-783) with this:
    Code:
    bool WorldToScreen(const Vector &WorldLocation, float *fScreenX, float *fScreenY)
    {
        Vector Position = WorldLocation - mypos;
        Vector Transform;
    
        // get our dot products from viewAxis
        Transform.x = Position.dotproduct(viewAxis[1]);
        Transform.y = Position.dotproduct(viewAxis[2]);
        Transform.z = Position.dotproduct(viewAxis[0]);
    
        // make sure it is in front of us
        if (Transform.z < 0.1f)
            return false;
    
        *fScreenX = screencenter[0] * (1 - (Transform.x / fov[0] / Transform.z));
        *fScreenY = screencenter[1] * (1 - (Transform.y / fov[1] / Transform.z));
        return true;
    }
    Last add this at line 225:
    Code:
    Vector                    viewAxis[3];
    Full credits go to kolbybrooks.

  14. The Following 4 Users Say Thank You to sph4ck For This Useful Post:

    daavve (05-17-2010),Failur3 (05-17-2010),Melodia (05-17-2010),Trollpocalypse (07-28-2010)

  15. #263
    delab0ss's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    2
    detected? .

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

    Failur3 (05-17-2010),Trollpocalypse (07-28-2010)

  17. #264
    daavve's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Sweden
    Posts
    121
    Reputation
    9
    Thanks
    68
    My Mood
    Mellow
    Quote Originally Posted by sph4ck View Post
    Hey guys, kolbybrooks posted a very nice improvement on uc for a better WorldToScreen.

    Basically it means the ESP works with Predator Missile - and a little better overall.

    Here is how to add it on version 4.3:

    First add this at line 895:
    Code:
    		ReadProcessMemory(mw2_process,(PVOID)(REFDEF+0x24),&viewAxis,36,NULL);
    Then, replace the WorldToScreen function (lines 765-783) with this:
    Code:
    bool WorldToScreen(const Vector &WorldLocation, float *fScreenX, float *fScreenY)
    {
        Vector Position = WorldLocation - mypos;
        Vector Transform;
    
        // get our dot products from viewAxis
        Transform.x = Position.dotproduct(viewAxis[1]);
        Transform.y = Position.dotproduct(viewAxis[2]);
        Transform.z = Position.dotproduct(viewAxis[0]);
    
        // make sure it is in front of us
        if (Transform.z < 0.1f)
            return false;
    
        *fScreenX = screencenter[0] * (1 - (Transform.x / fov[0] / Transform.z));
        *fScreenY = screencenter[1] * (1 - (Transform.y / fov[1] / Transform.z));
        return true;
    }
    Last add this at line 225:
    Code:
    Vector                    viewAxis[3];
    Full credits go to kolbybrooks.
    looks good, but how can i search for lines? plz answer

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

    Failur3 (05-17-2010),Trollpocalypse (07-28-2010)

  19. #265
    Failur3's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    pussyland
    Posts
    37
    Reputation
    10
    Thanks
    5
    My Mood
    Inspired
    Nice looks good

    This haxx are ftw
    Last edited by Melodia; 05-17-2010 at 12:08 PM. Reason: Merged, Again

  20. The Following User Says Thank You to Failur3 For This Useful Post:

    Trollpocalypse (07-28-2010)

  21. #266
    kevin_owner's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    7
    Quote Originally Posted by delab0ss View Post
    detected? .
    Why should it be detected xD
    It's undected and 99% safe or more.

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

    Failur3 (05-17-2010),Trollpocalypse (07-28-2010)

  23. #267
    SofaKingH4rd's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    United Kingdom, England
    Posts
    1,751
    Reputation
    22
    Thanks
    146
    My Mood
    Buzzed
    wHAT DOES areo THEME MEAN?

    I don't know how to make areo theme :P
    pls help me

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

    Failur3 (05-17-2010),Trollpocalypse (07-28-2010)

  25. #268
    Melodia's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Posts
    2,608
    Reputation
    276
    Thanks
    1,662
    My Mood
    Dead
    Quote Originally Posted by 100dom1 View Post
    wHAT DOES areo THEME MEAN?

    I don't know how to make areo theme :P
    pls help me
    It means you must have WinCrap's Aero Enabled.

    ( Aero is the faggy "Effects" of windows Vista+ )
    Love You All~

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

    Failur3 (05-17-2010),Trollpocalypse (07-28-2010)

  27. #269
    Failur3's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    pussyland
    Posts
    37
    Reputation
    10
    Thanks
    5
    My Mood
    Inspired
    great 2 bad i have windows 7 so i prolly dont have aero crap xD

  28. The Following User Says Thank You to Failur3 For This Useful Post:

    Trollpocalypse (07-28-2010)

  29. #270
    kevin_owner's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    7
    windows 7 has aero it uses even more aero stuff than vista:P

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

    Failur3 (05-17-2010),Trollpocalypse (07-28-2010)

Page 18 of 62 FirstFirst ... 8161718192028 ... LastLast

Similar Threads

  1. [Detected] External BoxEsp for XP Users (1.2.208 compatible)
    By Archangel in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 563
    Last Post: 01-12-2011, 07:12 PM
  2. External BoxESP V5.2(1.2.208 compatible) doesnt lock on
    By da20valve in forum Call of Duty Modern Warfare 2 Help
    Replies: 6
    Last Post: 10-09-2010, 02:14 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. [Solved]External BoxESP V5.1(1.2.208)
    By Hammy2 in forum Call of Duty Modern Warfare 2 Help
    Replies: 5
    Last Post: 09-03-2010, 08:32 PM
  5. [Detected] External BoxESP aimbot tweaks. [1.1.195 compatible]
    By Tigermisu in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 20
    Last Post: 06-11-2010, 11:32 PM