Warframe Conditional Rapid-fire Scripts

Post gaming related scripts
alias588
Posts: 5
Joined: 24 Jan 2017, 11:13

Warframe Conditional Rapid-fire Scripts

25 Jan 2017, 08:57

Heya. I was having issues creating this and posted about it yesterday morning in the Help Me section of the forums, but I ended up finding the answers to the problems I was running into on my own, and I figured I might save other people the trouble I went through by posting the finished version here.

The (rather simple) script makes the left mouse button rapid-fire, but only when the right mouse button is being held down. In other words you can rapid-fire with any weapon while you're zoomed in.
This script also only functions while the Warframe window is active, so the RButton will retain its proper behavior outside the game, and when it's minimized.

Code: Select all

 ~*LButton::  
IfWinActive, WARFRAME  
{  
  loop  
  {        
    GetKeyState, LButtonState, LButton, P   
    GetKeyState, RButtonState, RButton, P   
    if (LButtonState = "U") || (RButtonState = "U")   
    {   
      break  
    } else {  
      send {click down}  
      Sleep 10  
      send {click up}  
      Sleep 10  
    }  
  }  
}
That script was modified from an original that used the toggle status of the Capslock key to determine whether the rapid-fire function was active or not, which is here:

Thanks to Reddit user silenthunt for sharing this script

Code: Select all

 ~*LButton::  
IfWinActive, WARFRAME  
{  
  loop  
  {        
    GetKeyState, LButtonState, LButton, P   
    GetKeyState, CapsState, CapsLock, T   
    if (LButtonState = "U") || (CapsState = "U")   
    {   
      break  
    } else {  
      send {click down}  
      Sleep 10  
      send {click up}  
      Sleep 10  
    }  
  }  
}
You may want to use this one instead if you have a charged weapon equipped, such as the Opticor, or any bow weapon.

Return to “Gaming Scripts (v1)”

Who is online

Users browsing this forum: No registered users and 58 guests