Luke H-W

Results 54 comments of Luke H-W

Runs on my end now thanks, without MIDI of course. Hitting Esc at certain points throws an unhandled `System.NullReferenceException` at `Fluid_Midi.cs` line 1082 - a bValid check would probably be...

I do my testing with this script rather than using a launcher: ``` #!/usr/bin/bash if test "$#" -ge 2; then d_name=$1; d_size=$2; else d_name=animegame; d_size=1920x1080; fi echo Opening in virtual...

Oops, last line was still in a virtual desktop. `$PROTON GenshinImpact.exe` should be fine, in my case I had to comment out `export WINEFSYNC="1" WINEESYNC="1"` to have it work like...

i.e. something like ``` #!/usr/bin/bash PROXY_ENV="http_proxy https_proxy ftp_proxy all_proxy HTTP_PROXY HTTPS_PROXY FTP_PROXY ALL_PROXY" for envar in $PROXY_ENV; do export $envar=http://127.0.0.1:8080/ done cd "/home/user/.local/share/anime-game-launcher/game/drive_c/Program Files/Genshin Impact" export WINEPREFIX="/home/user/.local/share/anime-game-launcher/game" export PROTON="/home/user/.local/share/anime-game-launcher/runners/lutris-GE-Proton7-9-x86_64/bin/wine64" $PROTON...

hmm, might be hitting some version-specific wine bugs. If you have an existing working config with a batch file elsewhere it should be enough to just add in the proxy...

ah no, those are unrolled in a loop that goes like ``` http_proxy="https://129.154.227.167:8443" https_proxy="https://129.154.227.167:8443" ftp_proxy="https://129.154.227.167:8443" ``` etc. No idea about which ones are actually critical and the lowercase vs uppercase...

> You mean to say online games (the ones using anti-cheat) don't ban linux users? We don't have any firsthand accounts of it happening. This can change at any time...

Should have been fixed by 0fb7d50acd4d3851a1c9a3531240ab6e46cb7759

`resources/ExcelBinOutput/ReliquaryAffixExcelConfigData.json` `weight` and `upgradeWeight` values

There's still a fair bit of duplication between `PasswordAuthenticator` and `ExperimentalPasswordAuthenticator`, it might be best to restructure `PasswordAuthenticator` to handle most of the steps in a new method, have `ExperimentalPasswordAuthenticator`...