test content
What is the Arc Client?
Install Arc
Options

Turning Tap and Combo Powers into Maintain powers? (So I can hold the button instead of tapping)

Is there any kind of bind or method for making tap and combo powers work when you hold the button/key?

Clicking/pressing thousands of times everyday is just not working out. Even games with action combat (Tera and BDO) let you hold the buttons to do combos. I've tried looking through the forums and searching but can't find anything.

Comments

  • Options
    flyingfinnflyingfinn Posts: 8,408 Arc User
    Macros.
    CHAMPIONS ONLINE:Join Date: Apr 2008
    And playing by myself since Aug 2009
    Godtier: Lifetime Subscriber
    tumblr_n7qtltG3Dv1rv1ckao1_500.gif
    Get the Forums Enhancement Extension!
  • Options
    renegade0renegade0 Posts: 119 Arc User
    I know what macros are, but what do you mean? Are they in-game somewhere? I have no idea how I go about doing this. Is there a tutorial or documentation anywhere?
  • Options
    renegade0renegade0 Posts: 119 Arc User
    Nevermind, I figured it out.
    For anyone else who might want to do this.

    I'm using Autohotkey the program.

    The script i'm using is this:
    
    Ins::Suspend 
    SendMode Input
    ~$*XButton1:: 
    Loop 
      { 
        Send {XButton1 up}
        Sleep 0 ;change 0 to whatever you want. 1000 = 1 second
        Send {XButton1 down}
        Sleep 0 ;change 0 to whatever you want. 1000 = 1 second
        If (GetKeyState("XButton1","P")=0)
          {
            Send {XButton1 up}
            Break 
          }
      }
    Return
    
    


    XButton1 = Mouse 4
    XButton2 = Mouse 5

    I have the power set to Mouse 4 in the power tray. So when i hold down Mouse 4 it works like a maintain. I have a combo power set to that button. You can also use keys and stuff like that. You make the script, compile it into an exe and then run the exe
Sign In or Register to comment.