DebateFort - Where Warriors Come To Debate
RAGECRY - Funny, Amusing, Interesting, Trending & Viral Videos and Images
GameOrc - Free Flash Games Online
Page 2 of 3 FirstFirst 1 2 3 LastLast
Results 16 to 30 of 37
  1. #16
    Newbie
    MPGH Member
    P3RXK1NG's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    62
    Reputation
    10
    Thanks
    1
    My Mood
    Amazed
    interesting testing...

  2. #17
    Banned
    BANNED!
    IGotBanned.'s Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    imageshack.us/photo/my-images/190/uban.png
    Posts
    1,293
    Reputation
    -49
    Thanks
    119
    My Mood
    Aggressive
    useless, lol.

  3. #18
    Newbie
    MPGH Member
    pilatie's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    MPGH
    Posts
    94
    Reputation
    10
    Thanks
    7
    My Mood
    Amazed
    EXE CORRUPTED. I get that error. please help or fix it?

  4. #19
    New Member
    MPGH Member
    CA_FREAK's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    6
    My Mood
    Aggressive
    it works !!

    there are 3 files in the attachment.
    First run Hotkey.exe . it will ask you if a hotkey.ahk created in your documents folder, press yes.
    now search for it, put the clutch.ahk in the same direction and rename it to hotkey.ahk and delete the original.
    now you can delete clutch.exe and start the hotkey.exe, now when you are ingame press the middle mouse.

    hope you understand it

  5. #20
    MPGHiean
    MPGH Member
    Shocking's Avatar
    Join Date
    Oct 2008
    Gender
    female
    Location
    In your pants.
    Posts
    4,061
    Reputation
    112
    Thanks
    975
    My Mood
    Shocked
    Is this that animation where the sniper moves left then you qs.
    That kinda script?

  6. #21
    Newbie
    MPGH Member
    pilatie's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    MPGH
    Posts
    94
    Reputation
    10
    Thanks
    7
    My Mood
    Amazed
    still dont work

  7. #22
    Newbie
    MPGH Member
    JustAndy's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    62
    Reputation
    10
    Thanks
    2
    My Mood
    Fine

    Angry DO NOT DOWNLOAD ~ VIRUS

    THIS FILE HAS A WORM IN IT, IT INFECTS WINDOWS SECUIRTY FILE LSASS.EXE

    IF LIKE MANY PEOPLE ARE SAYING YOU HAVE THE EXE CORRUPTED YOU ARE INFECTED THIS IS BECUASE THE LSASS EXE HAS BEEN COMPRIMISSED

    SYSTEM RESTORE SAVED ME

    JUST A WARNING



    Apart from the exe corrupted message another way to see if you are infected is if there is more than one lsass.exe running in your process list.
    Ps: Dont try to delete the file as you need it

  8. #23
    Advanced Member
    MPGH Member
    Hayley Williams's Avatar
    Join Date
    Aug 2011
    Gender
    female
    Location
    United States, All you get Dx
    Posts
    152
    Reputation
    7
    Thanks
    251
    I suppose if everyone is having a problem with your program I'll just post 3 raw scripts, If you know how to copy and paste you'll be trick shooting in no time

    Switch Weapon + Throwing Knife (Does not throw) + No Bolt
    Code:
    ;VARIABLES
    
       V_OnOff = 0
    
    ;SCRIPT MANAGEMENT
    
       Loop
    {
       IfWinActive, Modern Warfare 2
     {
       Suspend, Off
     }
       IfWinNotActive, Modern Warfare 2
     {
       Suspend, On
     }
    }
    
    ;On Off Trigger
    
       Numpad0::
       V_OnOff = 0
       Return
    
       Numpad1::
       V_OnOff = 1
       Return
    
    ;Script
    
       ~$*MButton::
    {
       If V_OnOff = 1
    {
       Send, {1}
       Sleep, 131
       Send, {1}
       Send, {RButton down}
       Sleep, 265
       Send, {LButton down}
       Sleep, 8
       Send, {LButton up}
       Sleep, 10
       Send, {RButton up}
       Send, {R}
       Sleep, 375
       Send, {G down}
       Sleep, 215
       Send, {1}
       Sleep, 50
       Send, {G up}
       Send, {1}
       Send, {1}
    {
       Return
    }
    }
    }
    Switch Shoot + No Bolt

    Code:
    ;VARIABLES
    
       V_OnOff = 0
    
    ;SCRIPT MANAGEMENT
    
       Loop
    {
       IfWinActive, Modern Warfare 2
     {
       Suspend, Off
     }
       IfWinNotActive, Modern Warfare 2
     {
       Suspend, On
     }
    }
    
    ;On Off Trigger
    
       Numpad0::
       V_OnOff = 0
       Return
    
       Numpad1::
       V_OnOff = 1
       Return
    
    ;Script
    
       ~$*Mbutton::
    {
       If V_OnOff = 1
    {
       Send, {1}
       Sleep, 131
       Send, {1}
       Send, {RButton down}
       Sleep, 265
       Send, {LButton down}
       Sleep, 8
       Send, {LButton up}
       Sleep, 10
       Send, {RButton up}
       Send, {R}
       Sleep, 590
       Send, {1}
       Send, {1}
    {
       Return
    }
    }
    }
    Throwing Knife (Does not throw) + No Bolt

    Code:
    ;VARIABLES
    
       V_OnOff = 0
    
    ;SCRIPT MANAGEMENT
    
       Loop
    {
       IfWinActive, Modern Warfare 2
     {
       Suspend, Off
     }
       IfWinNotActive, Modern Warfare 2
     {
       Suspend, On
     }
    }
    
    ;On Off Trigger
    
       Numpad0::
       V_OnOff = 0
       Return
    
       Numpad1::
       V_OnOff = 1
       Return
    
    ;Script
    
       ~$*MButton::
    {
       If V_OnOff = 1
    {
       Send, {RButton down}
       Sleep, 265
       Send, {LButton down}
       Sleep, 8
       Send, {LButton up}
       Sleep, 10
       Send, {RButton up}
       Send, {R}
       Sleep, 375
       Send, {G down}
       Sleep, 215
       Send, {1}
       Sleep, 50
       Send, {G up}
       Send, {1}
       Send, {1}
    {
       Return
    }
    }
    }
    If you have everything set as an .ahk and it's running press "Nubpad1" (Number pad #1, with number lock on) to activate it, "Numpad0" will turn it off.

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

    douglaskx (10-06-2011)

  10. #24
    Synthetic Hacker
    MPGH Member
    cgallagher21's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Youtube
    Posts
    1,358
    Reputation
    11
    Thanks
    189
    My Mood
    Amused
    I cant seem to download this
    Have a Question?

    Pm | Vm





  11. #25
    Leecher slaaam's Avatar
    Join Date
    Apr 2011
    Gender
    female
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Asleep
    WTF every pc boot it says 2 times "exe corruptet"
    SAY HOW I CAN REMOVE THEM!!!
    its anoying -.-

  12. #26
    Choob
    MPGH Member
    Taylor Gang Or Die's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Look behind you.
    Posts
    26
    Reputation
    10
    Thanks
    4
    My Mood
    Drunk
    Pretty useless, but w/e. Somebody probably need it someday.

    Thanked anyway.

    #TGOD.



    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]

  13. #27
    Leecher
    MPGH Member
    zeky0709's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Hayley Williams View Post
    I suppose if everyone is having a problem with your program I'll just post 3 raw scripts, If you know how to copy and paste you'll be trick shooting in no time

    If you have everything set as an .ahk and it's running press "Nubpad1" (Number pad #1, with number lock on) to activate it, "Numpad0" will turn it off.
    For some reason I can get the OPs script working but not yours. :-/ I want yours to work lol

  14. #28
    Member
    MPGH Member
    timothy87's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    just auto?not a hack!!!

  15. #29
    Newbie
    MPGH Member
    Mp5xz's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    65
    Reputation
    10
    Thanks
    3
    My Mood
    Relaxed
    This is cool

  16. #30
    New Member thesait20's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    upload a Quike Video!

Page 2 of 3 FirstFirst 1 2 3 LastLast

Similar Threads

  1. [Help Request] Please I really need help for my MW2 iSnipe mod
    By Coder91 in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 17
    Last Post: 09-08-2011, 07:10 AM
  2. [Solved] Anti drop weapons - snippet for iSnipe
    By djmarvin in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 11
    Last Post: 08-25-2011, 12:06 AM
  3. [Solved] [Request] Gun Menu for iSnipe
    By hatebreed3323 in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 12
    Last Post: 05-12-2011, 04:49 AM
  4. Bunkers for iSnipe
    By jordyg97 in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 2
    Last Post: 04-25-2011, 04:57 AM
  5. Too Ownage For Words.
    By Flawless in forum Graphic Design
    Replies: 8
    Last Post: 12-28-2005, 04:55 PM