#!/usr/bin/env bash # Author: Castro-Fidel (linux-gaming.ru) ######################################################################## export PW_PREFIX_NAME="LEAGUE_OF_LEGENDS" export PW_AUTOINSTALL_EXE="${PW_USER_TEMP}/live.na.exe" export LAUNCH_PARAMETERS="--launch-product=league_of_legends --launch-patchline=live" export PW_MUST_HAVE_DLL="" export PW_VULKAN_USE=1 export PW_WINE_USE=WINE_LOL_GE_7.0-5 export WINEDLLOVERRIDES="mscoree,mshtml=" export PW_USE_D3D_EXTRAS=1 if [ ! -d "${PORT_WINE_PATH}/data/dist/${PW_WINE_USE}" ] ; then if try_download "github.com/Castro-Fidel/wine_builds/releases/download/${PW_WINE_USE}/${PW_WINE_USE}.tar.xz" \ "${PORT_WINE_PATH}/data/tmp/${PW_WINE_USE}.tar.xz" ; then if unpack_tar_xz "${PORT_WINE_PATH}/data/tmp/${PW_WINE_USE}.tar.xz" "${PORT_WINE_PATH}/data/dist/" ; then try_remove_file "${PORT_WINE_PATH}/data/tmp/${PW_WINE_USE}.tar.xz" UNPACK_STATUS=0 else try_remove_file "${PORT_WINE_PATH}/data/tmp/${PW_WINE_USE}.tar.xz" try_remove_dir "${PORT_WINE_PATH}/data/dist/${PW_WINE_USE}" fi fi [[ "${UNPACK_STATUS}" != 0 ]] && exit 1 fi start_portwine if try_download "lol.secure.dyn.riotcdn.net/channels/public/x/installer/current/live.na.exe" "${PW_AUTOINSTALL_EXE}" then pw_start_progress_bar_block "Installing League of Legends. ${loc_gui_please_wait} " zenity --info --width=500 --text "You must click the install button without changing the settings!" pw_kill_autostart RiotClientServices.exe & pw_run "${PW_AUTOINSTALL_EXE}" portwine_exe="$WINEPREFIX/drive_c/Riot Games/Riot Client/RiotClientServices.exe" try_remove_file "${PW_AUTOINSTALL_EXE}" try_remove_file "${portwine_exe}.ppdb" kill_portwine pw_stop_progress_bar export PORTWINE_CREATE_SHORTCUT_NAME="League of Legend" portwine_create_shortcut fi stop_portwine