Upvote Upvoted 0 Downvote Downvoted
bind one key to prec_mark and shadowplay higlight?
posted in Q/A Help
1
#1
0 Frags +

i have f9 bound to both prec_mark in tf2 and make a highlight in shadowplay but it turns out when you hit it, shadowplay eats up the input and doesn't let it go through to the game

any idea how to make one key do both? could just have two next to each other but id inevitably forget some times which would be annoying. was thinking of doing an autohotkey script to replicate the input to also do f8 or something but id then have to see if u can make an ahk script run on startup (and if u can limit it to when you're in a game)

muma said he had this issue as well so dont think its just me messing up my config, checked in game and f9 is bound to prec_mark

i have f9 bound to both prec_mark in tf2 and make a highlight in shadowplay but it turns out when you hit it, shadowplay eats up the input and doesn't let it go through to the game

any idea how to make one key do both? could just have two next to each other but id inevitably forget some times which would be annoying. was thinking of doing an autohotkey script to replicate the input to also do f8 or something but id then have to see if u can make an ahk script run on startup (and if u can limit it to when you're in a game)

muma said he had this issue as well so dont think its just me messing up my config, checked in game and f9 is bound to prec_mark
2
#2
28 Frags +

hit 2 keys

hit 2 keys
3
#3
0 Frags +

thanks i never thought of that u are my savior

thanks i never thought of that u are my savior
4
#4
1 Frags +

autohotkey is capable of doing that yeah

autohotkey is capable of doing that yeah
5
#5
4 Frags +

i made this like 2 years ago in ahk
shadowplay is aids and takes and takes priority of the key its bound too so just pick one you dont use
add me if anyone needs help with it

f9:: ;; press this to do them both
Send {- down} ;; i have prec bound to -
Send {- up}
sleep 5000 ;; it waits 5 sec after prec to do shadowplay so you dont miss anything
Send {= down} ;; shadowplay bound to =
Send {= up}
return

i made this like 2 years ago in ahk
shadowplay is aids and takes and takes priority of the key its bound too so just pick one you dont use
add me if anyone needs help with it

f9:: ;; press this to do them both
Send {- down} ;; i have prec bound to -
Send {- up}
sleep 5000 ;; it waits 5 sec after prec to do shadowplay so you dont miss anything
Send {= down} ;; shadowplay bound to =
Send {= up}
return
Please sign in through STEAM to post a comment.