Question about Sniper.

Discussion in 'Monday Night Combat PC Discussion' started by zodiark1234, June 19, 2011.

  1. zodiark1234

    zodiark1234 New Member

    Messages:
    576
    Likes Received:
    0
    Is there a mod or program that will "hold" the right mouse click then undo it if I hit said button again. In games like CS:S, or TF2, I am a pretty decent Sniper, but this mouse I'm using is really awkward to hold the right click for an extended period of time and maintain a semblance of aim in this game.
  2. hobo-with-a-shotgun

    hobo-with-a-shotgun Active Member

    Messages:
    230
    Likes Received:
    0
    You should have no problem going 50/0 in this game then. You can't do what you asked natively in game though. I guess there's an app that could do it, like AutoHotKey or something.
  3. zodiark1234

    zodiark1234 New Member

    Messages:
    576
    Likes Received:
    0
    I wish I can go 50/0. I am good at seizing opportunities at range, but I'm not all that good at quickscoping (except in CS:S where the AWP is 10x what the Sniper is here). I hardscope more than most Snipers in this game, but also have a good set of headphones handy.
  4. zarakon

    zarakon Active Member

    Messages:
    1,581
    Likes Received:
    0
    You can do it with autohotkey, but you would have to take into consideration using different classes, different weapons, and dying while scoped
  5. zodiark1234

    zodiark1234 New Member

    Messages:
    576
    Likes Received:
    0
    Yeah, that's true. I'd have to remember to turn it off when switching to another class, and using the SMG grapple probably won't be all that fun either.
  6. Awpteamoose

    Awpteamoose Active Member

    Messages:
    290
    Likes Received:
    0
    It's all scriptable and not really hard. But I never had a problem with holding the button to zoom anyway, don't know why it bothers you so much.
  7. Kurnuttaja

    Kurnuttaja New Member

    Messages:
    54
    Likes Received:
    0
    It bothers me too, aiming is basically impossible when having to hold down the right button.
  8. Awpteamoose

    Awpteamoose Active Member

    Messages:
    290
    Likes Received:
    0
    wut
    In every game with sights I set it to "hold to iron sight" the only exception so far being tf2 with its scope delay mechanic.
    Also, I use spacebar for scoping, that might be the issue.
  9. zarakon

    zarakon Active Member

    Messages:
    1,581
    Likes Received:
    0
    Here's an autohotkey script that should do the trick..

    Use F5 and F6 to switch between normal mode and sniper mode

    It's set to detect WheelDown and WheelUp as primary and secondary weapon switch keys, respectively. You can change those to whatever you use. Changing weapons lets the script know whether it should use the toggle behavior or not

    "MButton" is my reload key. I just have it set to unzoom when I press that. Change "MButton::" to whatever your reload key is

    Code:
    #IfWinActive Monday Night Combat
    
    F5::
        MNCClass = Normal
        return
    F6::
        MNCClass = Sniper
        return
    
    
    ;; Select main weapon
    ~WheelDown::
        MNCWeapon = 1
        if (MNCClass = "Sniper") {
            Send {RButton Up}
        }
        return
    
    ;; Select second weapon
    ~WheelUp::
        MNCWeapon = 2
        if (MNCClass = "Sniper") {
            Send {RButton Up}
        }
        return
    
    ;; Alt-fire down
    $RButton::
        if (MNCClass = "Sniper" and MNCWeapon = 1) {
            GetKeyState, state, RButton
            if state = U
                Send {RButton Down}
            else
                Send {RButton Up}
        } else {
            Send {RButton Down}
        }
        return
    
    ;; Alt-fire up
    $RButton Up::
        if (MNCClass = "Sniper" and MNCWeapon = 1) {
            ; Nothing
        } else {
            Send {RButton Up}
        }
        return
    
    ;; Reload
    $MButton::
        if (MNCClass = "Sniper" and MNCWeapon = 1) {
            Send {RButton Up}
        }
        Send {MButton Down}
        return
    
  10. zodiark1234

    zodiark1234 New Member

    Messages:
    576
    Likes Received:
    0
    Thanks, if I ever see you in a room, I won't go Sniper for one round. :lol:
  11. Xx Tikki xX

    Xx Tikki xX New Member

    Messages:
    1,261
    Likes Received:
    0
    what do you jump with?
  12. Awpteamoose

    Awpteamoose Active Member

    Messages:
    290
    Likes Received:
    0
    Right mouse button, mostly. In Q3 (I also have all the weapons mapped to letters), TF2 (I play mainly scout), MNC, Global Agenda I jump with right mouse. On the other hand in CoD4 I aim down sights right mouse, spacebar to sprint and shift to jump (also ctrl crouch, mwheelup knife, e tactical grenade, g regular, q switch weapons), in Brink I jump spacebar and melee right mouse button, zoom toggle on mousewheel (I never use it anyway).

Share This Page