Skip to content

Instantly share code, notes, and snippets.

@PedroHLC
Last active November 2, 2020 13:09
Show Gist options
  • Save PedroHLC/a95b672d2949b5a572e3fb1d1e180fed to your computer and use it in GitHub Desktop.
Save PedroHLC/a95b672d2949b5a572e3fb1d1e180fed to your computer and use it in GitHub Desktop.
I don't play League of Legends, but I was challenged, and here's what I did to get it running flawless!
sudo pacman -Sy
sudo powerpill -Su dxvk-mingw-git wine-tkg-git-leagueoflegends winetricks-git
export WINEPREFIX="$HOME/.lol"
export WINE=/usr/bin/wine
export WINEARCH=win32
winetricks d3dcompiler_43 d3dx9
setup_dxvk install --symlink
cd /tmp
aget 'https://riotgamespatcher-a.akamaihd.net/releases/live/installer/deploy/League%20of%20Legends%20installer%20NA.exe'
echo 0 | sudo tee /proc/sys/abi/vsyscall32
"$WINE" 'League of Legends installer NA.exe' # Don't launch at the end
export WINEPREFIX="$HOME/.lol"
export WINE=/usr/bin/wine
export WINEARCH=win32
cd "$WINEPREFIX/drive_c/Riot Games/League of Legends"
echo 0 | sudo tee /proc/sys/abi/vsyscall32
gamemoderun "$WINE" LeagueClient.exe
@PedroHLC
Copy link
Author

PedroHLC commented Apr 29, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment