Advertisement
S1L1R

game_settings

Jan 23rd, 2023 (edited)
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;;            Game Settings            ;;
  3. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  4. ; AHK key names:    https://www.autohotkey.com/docs/v1/KeyList.htm
  5. ;                   https://www.autohotkey.com/docs/v1/Hotkeys.htm
  6. ; Control keys
  7. fps             = 300       ; Average ingame fps
  8. shootKey        = F9        ; Fire Weapon
  9. shoot2Key       = F10       ; Secondary Fire
  10. aimKey          = RButton   ; Aim Weapon
  11. meleeKey        = e         ; Melee Attack
  12. switchKey       = f         ; Switch Weapon
  13. jumpKey         = Space     ; Jump
  14. shiftKey        = Shift     ; Sprint / Roll
  15. crouchKey       = Ctrl      ; Hold to Crouch
  16. operatorKey     = XButton1  ; Focus and Transference
  17. useKey          = x         ; Use
  18. chatKey         = t         ; Chat
  19.  
  20. ; Abilities
  21. firstAKey       = 1
  22. secondAKey      = 2
  23. thirdAKey       = 3
  24. fourthAKey      = 4
  25.  
  26. ; WASD Keys
  27. wKey            = w
  28. aKey            = a
  29. sKey            = s
  30. dKey            = d
  31.  
  32. ; Gear Hotkeys
  33. archwingKey     = c         ; Archwing Launcher
  34. energyPadKey    = 5         ; Squad Energy Restore
  35. hackKey         = y         ; Default ingame bind
  36. emoteKey        = F7        ; Agree emote
  37.  
  38. ; RTSS binds for FPS
  39. fpsLockKey      = PgDn
  40. fpsUncapKey     = Right
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement