[SOLVED] ut2004 crash on CEONSS using Luxtorpeda 61

UT2004 related discussions
Gil-galad
Posts: 12
Joined: Tue 21. Mar 2023, 23:33
Description: Hail the H.S.M!

ut2004 crash on CEONSS using Luxtorpeda 61

Post by Gil-galad »

A solution was found, or so it seems.

It all led to this glorious commit.
User avatar
Miauz55555
Posts: 2051
Joined: Sun 7. Jun 2015, 23:12
Description: https://discord.gg/X4V8THM
Location: Germany
Contact:

[SOLVED] ut2004 crash on CEONSS using Luxtorpeda 61

Post by Miauz55555 »

Gil-galad wrote: Thu 30. Mar 2023, 23:21 A solution was found, or so it seems.

It all led to this glorious commit.
Happy that he could fix it, thanks for letting us know. =)
Image
Image
Adler
Posts: 4
Joined: Mon 28. Nov 2022, 10:10

[SOLVED] ut2004 crash on CEONSS using Luxtorpeda 61

Post by Adler »

Hi
i have a new keyboard and the same problem now.

Code: Select all

Critical: AntiTCCInputMonitor Package.AntiTCCInputMonitor (Function AntiTCC2009r6.AntiTCCInputMonitor.O22034O:0012) Assertion failed, line 374
Exit: Executing UObject::StaticShutdownAfterError
Exit: Executing USDLClient::ShutdownAfterError
Log: Waiting for file streaming thread to finish...
Exit: OpenAL Audio subsystem shut down.
Exit: Exiting.
i found the solution...
the keyboard is recognized as a mouse (firmware bug). The keyboard presses 25 keys per second and this causes AntiTCC to crash.
Bildschirmfoto vom 2024-02-12 13-25-50.png
Bildschirmfoto vom 2024-02-12 13-25-50.png (117.2 KiB) Viewed 6543 times

run the command in terminal: xev
(package inside x11-utils
sudo apt-get install x11-utils)
the virtual keyboard pressing 25 keys per sec ( keycode 248)
Bildschirmfoto vom 2024-02-12 13-27-11.png
Bildschirmfoto vom 2024-02-12 13-27-11.png (128.53 KiB) Viewed 6543 times
quick and dirty solution-> shell script after login

Code: Select all

#!/bin/sh
ids=$(xinput list --id-only 'pointer:CHERRY CHERRY Keyboard')
xinput disable $ids
better solution -> udev rule
/usr/share/X11/xorg.conf.d/ or /etc/udev/rules.d/

Code: Select all

Section "InputClass"
	Identifier "CHERRY"
	Driver "evdev"
	MatchProduct "CHERRY CHERRY Keyboard"
	MatchIsPointer "on"
	Option "Ignore" "on"
EndSection
Post Reply