PDA

View Full Version : exec a key instead of an action



Ni3ls
29th April 2017, 15:44
Hi all,

I want to make a bind that after I shoot I press my "R" key.
When I make a bind like

bind MOUSE1 "+attack; +reload" I will reload after I shoot. However, it needs to finish the action. Because when I shoot and reload and switch my weapon it will still finish the reload.
When I press "R" (my reload key) I can switch my weapon and it doesn't finish the reload.
Can I make a bind that after I shoot it will execute the "R" key?

kung foo man
29th April 2017, 18:14
AutoHotKey is a solution or you need this for all players?

Ni3ls
29th April 2017, 18:25
no just for me.
I want to create a faster shooting "script"
If you shoot, press R and switch after 0.5 secs you can shoot faster with a rifle :P

Lonsofore
29th April 2017, 19:38
You should use "wait" in your bind to wait betwen actions. And this is the main problem. Just try to use it and your controls will stuck on your wait time. So, you can't make a bind for your needs. (or maybe I don't know something. like multi-thread binds)
As kung said - you can use AHK for it.

Ni3ls
29th April 2017, 19:47
Yes even "bind 1 +reload; wait 1; -reload" will finish the reload after switching weapon. Okay thanks for the info :)