In this guide i will tell you how it's simple to make a good strafe without any difficulties and problem. Your strafe sync will be increased to 100%.
1. Download the programm AutoIT from official site https://www.autoitscript.com/site/autoit/downloads/
There is the link for virustotal: https://www.virustotal.com/ru/url/5d...c1ee/analysis/
2. Create on your desktop an empty script like strafe.au3. Put in that file the code and save. Important thing is follow for a syntax. All information stored in file "Help" or if you will use key "F1" in the programm AutoIT. There is the code:
#include <Misc.au3>
For $i = 0 to 1 Step 0
Switch MouseGetPos(0)
Case 0 to 959
Send("{d up}")
Send("{a down}")
Case 961 to 1920
Send("{a up}")
Send("{d down}")
EndSwitch
Next
A short notice.
959 961 1920 - it's the points of your display resolution. That means if your resolution will be 1024*768, then the variables will be changed too. There is an example:
#include <Misc.au3>
For $i = 0 to 1 Step 0
Switch MouseGetPos(0)
Case 0 to 511
Send("{d up}")
Send("{a down}")
Case 513 to 1024
Send("{a up}")
Send("{d down}")
EndSwitch
Next
3. Start the game and have fun with good strafing. Remember when you run script your moving of mouse is your strafes already. To stop it just stop your moving of mouse.
If your script doesn't work without any reasons, then just try to change your default language to English in Windows settings and it will work.
Before you will ask something, just read the documentation and instructions to the program AutoIT. The script is working at any program or game where was used same principle of strafing, for example like Quake.