Page 25 of 31 FirstFirst ... 152324252627 ... LastLast
Results 361 to 375 of 457
  1. #361
    ktyzd's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    On a Farm
    Posts
    71
    Reputation
    10
    Thanks
    3
    My Mood
    Brooding
    Quote Originally Posted by B4M View Post
    How can you run a program as XP SP3.. I just wonder..?

    You suggest reinstalling the OS just for this script?
    No...

    Right click program>Properties>Compatibility>Run this program in compatibility mode for: XP SP3.

  2. #362
    WfGBrutality's Avatar
    Join Date
    Jun 2010
    Gender
    female
    Location
    Vantaa
    Posts
    10
    Reputation
    10
    Thanks
    1
    My Mood
    Confused
    I wish it works

  3. #363
    wap101's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    76
    Reputation
    10
    Thanks
    14
    My Mood
    Amazed
    This is awesome, worked like a charm and easy too. Was pullin off sick shots with all the sniper rifles.. not just the intervention. And across maps as well. Thanks for this its super fun to use.

    Wap101

  4. #364
    ethan2035's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Psychedelic
    how bout u all just learn to quick scope lol

  5. #365
    whoopa's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    lol
    Posts
    3
    Reputation
    10
    Thanks
    0
    2 Questions
    1. Can u get banned for this?
    2.Is there any kind of auto quickscope to Alteriwnet 13.3.7?
    Thanks,
    Whoopa

  6. #366
    Sentrax82's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    GFX Section
    Posts
    327
    Reputation
    21
    Thanks
    96
    My Mood
    Amused
    Quote Originally Posted by whoopa View Post
    2 Questions
    1. Can u get banned for this?
    2.Is there any kind of auto quickscope to Alteriwnet 13.3.7?
    Thanks,
    Whoopa
    Answers:
    1. You cant get banned for this script
    2. This should work for Alteriwnet, too...

    Btw: Works perfect but sometimes it dont shoot... you have to learn how to use it...
    I'm on MPGH since:
    09-03-09


    ...:::Latest:::...

  7. #367
    Repa's Avatar
    Join Date
    Apr 2010
    Gender
    female
    Location
    Turn around...
    Posts
    183
    Reputation
    10
    Thanks
    36
    My Mood
    Lurking
    Is there any way to remove the crosshair?

  8. #368
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    Quote Originally Posted by Repa View Post
    Is there any way to remove the crosshair?
    Remove this part from the .ahk file:
    Code:
    #SingleInstance force
    #Persistent
    
    OnExit, ExitRoutine
    xpos := A_ScreenWidth/2
    ypos := A_ScreenHeight/2
    hDrwArea := DllCall("GetDC", "uint", Null)
    SetTimer, SetPixel, 1
    
    
    SetPixel:
    
    ; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos - 1, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos + 1, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos - 1, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos + 1, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos - 2, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos + 2, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos - 3, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos + 3, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos - 2, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos + 2, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos - 3, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos + 3, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos - 4, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos + 4, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos - 4, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos + 4, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos - 5, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos + 5, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos - 5, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos + 5, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos - 6, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos + 6, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos - 6, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos + 6, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos - 7, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos + 7, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos - 7, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos + 7, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos - 8, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos + 8, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos - 8, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos + 8, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos - 9, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos + 9, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos - 9, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos + 9, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos - 10, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos + 10, "uint", 255, "uint", 0, "uint", 0)
    
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos - 10, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    DllCall("SetPixel", "uint", hDrwArea, "int", xpos + 10, "int", ypos, "uint", 255, "uint", 0, "uint", 0)
    
    IfWinNotExist, ahk_pid %NewPID%
    ExitApp
    Return
    
    ExitRoutine:
    DllCall("ReleaseDC", UInt, 0, UInt, hDrwArea)
    DllCall("FreeLibrary", "UInt", hDrwArea)
    ExitApp
    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]

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

    Repa (10-19-2010)

  10. #369
    mizzer3's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    MPGH.net
    Posts
    888
    Reputation
    7
    Thanks
    171
    My Mood
    Sleepy
    wow nice man!
    Heal Ur Allies, And You Will Win The War.



    RESPECT LIST :

    - Very Good Friend - Sn0wn00b
    - All the Mpgh minions ( special m3 )
    - th3reaper
    - respeckt52
    - s3liskar
    - thecamels8

  11. #370
    Sentrax82's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    GFX Section
    Posts
    327
    Reputation
    21
    Thanks
    96
    My Mood
    Amused
    sad... There isn't any Auto 360° :P
    I'm on MPGH since:
    09-03-09


    ...:::Latest:::...

  12. #371
    Characters's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    66
    Reputation
    10
    Thanks
    0
    My Mood
    Tired
    Not working for me I just opened MOW2 alterIWnet and opened the launcher and start a private match ... and then nothing happens... ? what do I wrong?

  13. #372
    xbeatsszzx's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Behind a dumpster jerking off. xD jks
    Posts
    2,519
    Reputation
    13
    Thanks
    1,508
    My Mood
    Asleep
    Quote Originally Posted by Characters View Post
    Not working for me I just opened MOW2 alterIWnet and opened the launcher and start a private match ... and then nothing happens... ? what do I wrong?
    the first time u use the tool in each game it wont work at first but then it will work , try runing the tool as admin ?
    I Am on this site for the mods for mw2 ONLY. Not hacks.

  14. #373
    Characters's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    66
    Reputation
    10
    Thanks
    0
    My Mood
    Tired
    Tell my exacly what do I have to own which exe and which next .. and RAs admin or not ?

  15. #374
    nr1234's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    1
    My Mood
    Daring
    I LIKE ALOT TY

  16. #375
    cvancek's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    PLS HELP!

    I am on Win7 x64,whenver i open the script,the crosshair pops up and immediatley dissappears,i am on latest alteriwnet update

Page 25 of 31 FirstFirst ... 152324252627 ... LastLast

Similar Threads

  1. Guide Team Guide compilation [Last Update 5th July]
    By TheUser in forum Call of Duty Modern Warfare 2 Tutorials
    Replies: 70
    Last Post: 07-06-2011, 04:21 AM
  2. [Source Code] My Version Of Auto QuickScope
    By winberg in forum Call of Duty Modern Warfare 2 Coding / Programming / Source Code
    Replies: 16
    Last Post: 04-16-2011, 03:09 AM
  3. [Request] Auto QuickScope?
    By Gervino in forum Call of Duty Modern Warfare 2 Private Servers
    Replies: 25
    Last Post: 03-12-2011, 11:54 AM
  4. Auto-QuickScope Customising Tutorial
    By master131 in forum Call of Duty Modern Warfare 2 Tutorials
    Replies: 45
    Last Post: 11-02-2010, 05:26 PM
  5. Replies: 6
    Last Post: 08-26-2009, 02:52 PM