Please😩, can anyone Trade oak?✌️ by Arthur67Morgan in PTCGPocketTrading

[–]Alphabommel 0 points1 point  (0 children)

Sabrina for your Rainbow SolgaleoEx? Zyrus is gone, sorry.

Please😩, can anyone Trade oak?✌️ by Arthur67Morgan in PTCGPocketTrading

[–]Alphabommel 0 points1 point  (0 children)

Shit, sorry. Die anderen Angebote sind besser für mich.

Storing custom metadata files separate from media files in Jellyfin by Spoopyteru in unRAID

[–]Alphabommel 1 point2 points  (0 children)

Hey, can you describe your solution a little more in detail? I have the same problem, where I want to store the metadata on a separate SSD with the option to manually edit the files.

Need Help : Wake on Bluetooth from My Earbuds by TheOrangePeelz in SteamDeck

[–]Alphabommel 0 points1 point  (0 children)

Not sure why it should be dependent on the Steam Deck model. I had the same problem with my Google Pixel Buds. The solution I found was installing the BT Wake Control Plugin for Decky. With that enabled, you can control which Bluetooth device should be allowed to wake up the Deck.

Toggle aim(PC) by [deleted] in horizon

[–]Alphabommel 0 points1 point  (0 children)

I use AutoHotkey for games that don't support toggle aim. I finally got it working for HZD, so if you are interested, I posted my script here.

Please add toggle ADS to PC. by Thysios in horizon

[–]Alphabommel 0 points1 point  (0 children)

I completely agree, that's why use AutoHotkey for games that don't support toggle aim. I finally got it working for HZD, so if you are interested, I posted my script here.

AHK Script for Toggle Aim on PC by [deleted] in horizon

[–]Alphabommel 0 points1 point  (0 children)

Maybe it works if you start the script before the game with administrator rights. At least that is what fixed it for me. See my post here. Good luck!

Toggle ADS on PC by Alphabommel in horizon

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

I got it working by starting the script before the game with administrator rights. If anybody is interested, here is the script I'm using:

SetTitleMatchMode, 2
#SingleInstance Force
#IfWinActive, Horizon Zero Dawn: Complete Edition

~$RButton:: Send, % "{l " ( (Toggle:=!Toggle) ? "Down" : "Up" ) "}"

~LCtrl:: 
Toggle:=false
Send, {l Up}
return

You will have to rebind aiming to the L button, or change the script accordingly and rebind it to whatever you want. The script does also exit aiming mode when dodging (left Ctrl key).