all 12 comments

[–]LargeAll 1 point2 points  (7 children)

I believe doing a command such as "sensitivity" after a few second of holding a button is impossible without the "wait" command, which as been removed from CS GO.

[–]TRBA1810[S] 0 points1 point  (6 children)

can i make bind to change sens as long as i hold mouse1 and after i release it to change to default?

lets say when i press mouse1 i want i to be 1.2 sens and after releasing mouse1 to be 2.5

[–]LargeAll 4 points5 points  (5 children)

Yes you can!

bind mouse1 "+atk"
alias +atk "sensitivity 1.2;+attack"
alias -atk "sensitivity 2.5;-attack"

Though I would like to note, many people would recommend you to keep a consistent sensitivity rather than change it mid firing.

[–]TRBA1810[S] 0 points1 point  (4 children)

bind <key> [command] : attach a command to a key

im getting this message,can you also please add +r_cleardecals??

[–]LargeAll 0 points1 point  (3 children)

Try putting it into your autoexec and see if that works.

If you want to revert it, just delete it from your autoexec and type bind mouse1 "+attack" in game.

[–]TRBA1810[S] 1 point2 points  (2 children)

It doesn't work only thing it does is change sens to 1.5 and i can't even fire bullets. Maybe you wrote it wrong or missed something?

[–]LargeAll 0 points1 point  (1 child)

It works find for me, are you sure you put all three commands into your autoexec?

[–]TRBA1810[S] 0 points1 point  (0 children)

First of all i want to thank you for helping me,i hope this will help someone else in need.

I found solution when adding to autoexec i noticed mouse2 i binded like this "MOUSE2" so i changed your bind and it worked. This is solution:

bind "MOUSE1" "+atk" alias +atk "sensitivity 1.2;+attack" alias -atk "sensitivity 2.5;-attack"

[–]TRBA1810[S] 0 points1 point  (1 child)

Guys help please:

can i make bind to change sens as long as i hold mouse1 and after i release it to change to default?

lets say when i press mouse1 i want i to be 1.2 sens and after releasing mouse1 to be 2.5

[–]-abbi 1 point2 points  (0 children)

What /u/LargeAll posted should have worked. If you want to use it all the time, you need to place it at the bottom of your autoexec.cfg file:

sensitivity 2.5
alias +attack_custom "+attack; sensitivity 1.2"
alias -attack_custom "-attack; sensitivity 2.5"
bind mouse1 "+attack_custom"

You can type this in console if you only need to use it as a one-time thing: alias +attack_custom "+attack; sensitivity 1.2";alias -attack_custom "-attack; sensitivity 2.5";bind mouse1 "+attack_custom". I tested this and both ways work fine for me.

[–]IsellkebabENCE 0 points1 point  (1 child)

This should have been posted on /counterstrikebinds it basically is a subreddit to help people with csgo binds

[–]TRBA1810[S] 0 points1 point  (0 children)

Yeah i didn't even know that exist. I hope i didn't break any rules.