Results 1 to 15 of 15
  1. #1
    placeholda's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    4

    AutoHotkey Macros

    Download AutoHotkey from the attachment. Then, save these scripts with a .ahk file extension. To use them, drag and drop them on autohotkey.exe.

    Quick Scoping [middle mouse button]
    WinActivate, alterIWnet
    WinGetPos,,,ModW, ModH, alterIWnet
    NewX := (A_ScreenWidth / 2) - (ModW / 2)
    NewY := (A_ScreenHeight / 2 - 11) - (ModH / 2)
    WinMove, alterIWnet,, %NewX%, %NewY%

    #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)

    Return

    ExitRoutine:
    DllCall("ReleaseDC", UInt, 0, UInt, hDrwArea)
    DllCall("FreeLibrary", "UInt", hDrwArea)
    ExitApp

    ~NumLock::Suspend, toggle

    $Mbutton::

    { GetKeyState, state, Mbutton, T
    if state = D


    {
    send {RButton Down}
    sleep 273
    MouseClick,left
    send {RButton Up}
    send {RButton Down}
    send {RButton Up}
    }

    else

    {
    MouseClick,middle

    }
    }

    Automatic Weaponry- makes weapons automatic. Turn scroll lock on to activate.
    ~LButton::
    GetKeyState, state, Scrolllock, T
    if state = D
    {
    Goto, FireIt
    }
    return





    FireIt:
    Loop
    {
    GetKeyState, LButtonState, LButton, P
    if LButtonState = U
    {
    break
    }
    MouseClick, left,,, 1, 0, D
    Sleep 5
    MouseClick, left,,, 1, 0, U

    }
    return
    Knifing:

    To set this up, you will need to find your config_mp.cfg file in a folder named players.

    Paste this somewhere, and then set the file to Read-Only:

    unbind e
    bind 1 "weapnext"
    bind O "+melee"
    bind PGDN "+frag"
    Then you can use this quick knifing script, which lets you recover from knifing faster than with a tactical knife attachment. Press E to use.


    E::

    Send, {O}
    sleep 100
    Send, {PGDN down}
    sleep 50
    Send,{1}
    sleep 50
    Send, {PGDN up}
    sleep 200
    Last edited by B4M; 03-13-2011 at 03:24 AM.

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

    bodzik155 (04-03-2011)

  3. #2
    Moto's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Bay Area, CA
    Posts
    13,055
    Reputation
    707
    Thanks
    14,558
    My Mood
    Blah
    No outside links

    Add 2 virus scans

    also upload as attachment

    if not,

    /request close.



  4. #3
    placeholda's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    4
    Virustotal:
    VirusTotal - Free Online Virus, Malware and URL Scanner


    NVT:
    File Info

    Report date: 2011-03-12 20:49:46 (GMT 1)
    File name: autohotkey-exe
    File size: 245248 bytes
    MD5 Hash: d960f13a44d3bd8f262df625f5705a63
    SHA1 Hash: 7af551a851da5ccb8a98ba980b6b19ec5892884d
    Detection rate: 0 on 9 (0%)
    Status: CLEAN

    Detections

    Avast -
    AVG -
    ClamAV -
    Comodo -
    Emsisoft -
    F-Prot -
    Ikarus -
    TrendMicro -
    Zoner -

    Scan report generated by
    NoVirusThanks.org

  5. #4
    Private Ali's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Oberfranken
    Posts
    91
    Reputation
    17
    Thanks
    10
    My Mood
    Cynical
    Why should we download something from a guy thats only posts are in this and the 'Auto QuickScope' Thread?

    And the VirusScans could also be just a scan of the clean .exe, as you find it in the internet.

  6. #5
    placeholda's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    4
    Quote Originally Posted by Private Ali View Post
    Why should we download something from a guy thats only posts are in this and the 'Auto QuickScope' Thread?

    And the VirusScans could also be just a scan of the clean .exe, as you find it in the internet.
    Compare the file hashes, genius. If not, you can get it from the official website.

  7. #6
    Moto's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Bay Area, CA
    Posts
    13,055
    Reputation
    707
    Thanks
    14,558
    My Mood
    Blah
    Waiting for a minion to approve



  8. #7
    xPWNZz's Avatar
    Join Date
    Mar 2011
    Gender
    female
    Posts
    113
    Reputation
    -9
    Thanks
    5
    My Mood
    Angelic
    Quote Originally Posted by Minivan Man View Post
    No outside links

    Add 2 virus scans

    also upload as attachment

    if not,

    /request close.
    whers the outside links?

  9. #8
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    haha..I added a AQS mode in my VIP Hack now..The difference is that mine is on C++
    GJ anyways..

  10. #9
    sgtdwhite's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed
    Put on some V scans in the post maybe a vid...screenie i dunno just get these aprroved iveb een looking for this


    Click on it please

  11. #10
    B4M's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Real World
    Posts
    6,940
    Reputation
    478
    Thanks
    1,752
    My Mood
    Bored
    Follow the rules of posting please.

    /closed
    [center]

    Back in '10



    Got a question?PM/VM me!
    I read them all.
    Also contact me via MSN.
    vlad@mpgh.net

    Minion since:07-04-2010
    Mod since:08-31-2010
    Till : 05.07.2011

  12. #11
    eternityX14's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    Can you do that for me with the key X ? then i like you

    and set the crosshair in the middle of the Sniper scope (:
    Last edited by eternityX14; 03-13-2011 at 10:45 AM.

  13. #12
    saadaziz's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    United States
    Posts
    209
    Reputation
    19
    Thanks
    43
    My Mood
    Angelic
    btw does this aim for you or u need to aim urself xd? just asking since it has set pixels thing in it

  14. #13
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Quote Originally Posted by saadaziz View Post
    btw does this aim for you or u need to aim urself xd? just asking since it has set pixels thing in it
    SetPixel is a function to change a specific pixel in the screen....It has nothing to do with auto aiming,,and no, you have to press the right mouse button to aim and it will qs atuomatically..

  15. #14
    FUKO's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    PBlackout.exe /mhu
    Posts
    11,128
    Reputation
    1103
    Thanks
    3,860
    @TheGodfather
    Miss the close button?

  16. #15
    B4M's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Real World
    Posts
    6,940
    Reputation
    478
    Thanks
    1,752
    My Mood
    Bored
    Quote Originally Posted by Fuko View Post
    @TheGodfather
    Miss the close button?
    Ohh damn.
    [center]

    Back in '10



    Got a question?PM/VM me!
    I read them all.
    Also contact me via MSN.
    vlad@mpgh.net

    Minion since:07-04-2010
    Mod since:08-31-2010
    Till : 05.07.2011