Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
But got me mad like rly..
I think it was smh about mouse refresh. My mouse has 3 positions for choose DPI and has to reduce it for this game
didnt work in overloard 1 and neither does here meh
0. you might need several dev tools, open Terminal, install packets
$ sudo apt install git make build-essential linux-headers-$(uname -r)
1. get your mouse VID:PID number
$ lsusb
Bus 001 Device 009: ID 1532:007a Razer USA, Ltd Razer Viper Ultimate
2. clone mouse driver repo
$ git clone https://github.com/YeaSeb/wmo-oc-kmod && cd wmo-oc-kmod
3. modify wmo_oc.c source file to use your mouse and slowest polling rate
$ nano wmo_oc.c
line 5-6 - VID/PID of your mouse with 0x prefix, in my case
#define WMO_VID 0x1532
#define WMO_PID 0x007a
line 17 - slowest polling rate number 8, that means 125Hz
static unsigned short configured_interval = 8;
Ctrl+C, Y to save
4. to make and install driver
$ make
$ sudo insmod wmo_oc.ko
mouse will start moving slowly and finally game is playable!
5. after playing revert back default driver:
$ sudo rmmod wmo_oc