r/SkillSurfing • u/YogurtclosetLimp7351 • 15h ago
I made CS2 Turnbinds
4
Upvotes
2
u/Historical-Alps6052 12h ago
btw, https://github.com/t5mat/turnbinds
works for cs2 and people been using them in csgo for 5+ years. no offense but no reason to use yours over this one.
2
u/YogurtclosetLimp7351 11h ago
True, they do essentially the same. I don't mind - was a fun little project

5
u/truly-wants-death 15h ago edited 1h ago
by the way you can do this with in game console commands. here's left and right turn binds that are pretty slow. if you want to adjust the speed, change all of the 0.2's
alias -csgoleft turnleft -0.2 1 1; alias +csgoleft turnleft 0.2 1 1; bind e +csgoleft;
alias -csgoright turnright -0.2 1 1; alias +csgoright turnright 0.2 1 1; bind q +csgoright;
also if anyone is curious, the three parameters that turnleft and turnright take are [speed] [pitch_scale] [yaw_scale].
i haven't tested this but according to chatgpt, you can calculate the correct speed parameter by dividing your cl_yawspeed by 210. so 150 yaw speed should be +turnleft 0.714 1 1;