Christian
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
21 additions and
2 deletions
lgsm/functions/fix_vh.sh
lgsm/functions/mods_list.sh
@ -8,14 +8,28 @@ functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
export LD_LIBRARY_PATH = ./linux64:$LD_LIBRARY_PATH
# special check if Valheim Plus is installed
modsdir = " ${ lgsmdir } /mods "
modsinstalledlistfullpath = " ${ modsdir } /installed-mods.txt "
if [ -f " ${ modsinstalledlistfullpath } " ] ; then
# special check if Valheim Plus is installed
if grep -qE "^valheimplus" " ${ modsinstalledlistfullpath } " ; then
if ! grep -qE "^executable=\"./start_server_bepinex.sh\"" " ${ configdirserver } / ${ selfname } .cfg " ; then
echo 'executable="./start_server_bepinex.sh"' >> " ${ configdirserver } / ${ selfname } .cfg "
executable = "./start_server_bepinex.sh"
fi
fi
# special exports for BepInEx if installed
if grep -qE "^bepinexvh" " ${ modsinstalledlistfullpath } " ; then
fn_print_info_nl "BepInEx install detected, applying start exports"
fn_script_log_info "BepInEx install detected, applying start exports"
# exports for BepInEx framework from script start_server_bepinex.sh
export DOORSTOP_ENABLE = TRUE
export DOORSTOP_INVOKE_DLL_PATH = ./BepInEx/core/BepInEx.Preloader.dll
export DOORSTOP_CORLIB_OVERRIDE_PATH = ./unstripped_corlib
export LD_LIBRARY_PATH = " ./doorstop_libs: ${ LD_LIBRARY_PATH } "
export LD_PRELOAD = " libdoorstop_x64.so: ${ LD_PRELOAD } "
export SteamAppId = 892970
fi
fi
@ -95,6 +95,8 @@ oxidehurtworldlatestlink=$(curl --connect-timeout 10 -sL https://api.github.com/
oxidesdtdlatestlink = $( curl --connect-timeout 10 -sL https://api.github.com/repos/OxideMod/Oxide.SevenDaysToDie/releases/latest | jq -r '.assets[]|select(.browser_download_url | contains("linux")) | .browser_download_url' )
# Valheim Plus
valeimpluslatestlink = $( curl --connect-timeout 10 -sL https://api.github.com/repos/valheimPlus/ValheimPlus/releases/latest | jq -r '.assets[]|select(.browser_download_url | contains("UnixServer.tar.gz")) | .browser_download_url' )
# Valheim BepInEx
bepinexvhlatestlink = $( curl --connect-timeout 10 -sL "https://valheim.thunderstore.io/api/experimental/package/denikson/BepInExPack_Valheim/" -H "accept: application/json" | jq -r '.latest.download_url' )
# Define mods information (required)
@ -194,5 +196,8 @@ mod_info_sdtdoxide=(MOD "sdtdoxide" "Oxide for 7 Days To Die" "${oxidesdtdlatest
# ValheimPlus
mod_info_valheimplus = ( MOD "valheimplus" "Valheim PLUS" " ${ valeimpluslatestlink } " "ValheimPlus.tar.gz" "0" "LowercaseOff" " ${ systemdir } " "OVERWRITE" "ENGINES" "Valheim;" "NOTGAMES" "https://github.com/valheimPlus/ValheimPlus" "Mod to improve Valheim gameplay" )
# BepInEx Valheim
mod_info_bepinexvh = ( MOD "bepinexvh" "BepInEx Valheim" " ${ bepinexvhlatestlink } " "denikson-BepInExPack_Valheim.zip" "0" "LowercaseOff" " ${ systemdir } " "OVERWRITE" "ENGINES" "Valheim;" "NOTGAMES" "https://valheim.thunderstore.io/package/denikson/BepInExPack_Valheim/" "Unity / XNA game patcher and plugin framework" )
# REQUIRED: Set all mods info into the global array
mods_global_array = ( " ${ mod_info_metamod [@] } " " ${ mod_info_base_amxx [@] } " " ${ mod_info_cs_amxx [@] } " " ${ mod_info_dod_amxx [@] } " " ${ mod_info_tfc_amxx [@] } " " ${ mod_info_ns_amxx [@] } " " ${ mod_info_ts_amxx [@] } " " ${ mod_info_metamodsource [@] } " " ${ mod_info_sourcemod [@] } " " ${ mod_info_steamworks [@] } " " ${ mod_info_gokz [@] } " " ${ mod_info_ttt [@] } " " ${ mod_info_get5 [@] } " " ${ mod_info_prac [@] } " " ${ mod_info_pug [@] } " " ${ mod_info_dhook [@] } " " ${ mod_info_movement [@] } " " ${ mod_info_cleaner [@] } " " ${ mod_info_ulib [@] } " " ${ mod_info_ulx [@] } " " ${ mod_info_utime [@] } " " ${ mod_info_uclip [@] } " " ${ mod_info_acf [@] } " " ${ mod_info_acf_missiles [@] } " " ${ mod_info_acf_sweps [@] } " " ${ mod_info_advdupe2 [@] } " " ${ mod_info_pac3 [@] } " " ${ mod_info_wiremod [@] } " " ${ mod_info_wiremodextras [@] } " " ${ mod_info_darkrp [@] } " " ${ mod_info_darkrpmodification [@] } " " ${ mod_info_rustoxide [@] } " " ${ mod_info_hwoxide [@] } " " ${ mod_info_sdtdoxide [@] } " " ${ mod_info_advduplicator [@] } " " ${ mod_info_trackassemblytool [@] } " " ${ mod_info_physpropertiesadv [@] } " " ${ mod_info_controlsystemse2 [@] } " " ${ mod_info_e2pistontiming [@] } " " ${ mod_info_propcannontool [@] } " " ${ mod_info_gearassemblytool [@] } " " ${ mod_info_spinnertool [@] } " " ${ mod_info_surfacefrictiontool [@] } " " ${ mod_info_magneticdipole [@] } " " ${ mod_info_environmentorganizer [@] } " " ${ mod_info_precision_alignment [@] } " " ${ mod_info_improved_stacker [@] } " " ${ mod_info_improved_weight [@] } " " ${ mod_info_improved_antinoclip [@] } " " ${ mod_info_laserstool [@] } " " ${ mod_info_valheimplus [@] } " )
mods_global_array = ( " ${ mod_info_metamod [@] } " " ${ mod_info_base_amxx [@] } " " ${ mod_info_cs_amxx [@] } " " ${ mod_info_dod_amxx [@] } " " ${ mod_info_tfc_amxx [@] } " " ${ mod_info_ns_amxx [@] } " " ${ mod_info_ts_amxx [@] } " " ${ mod_info_metamodsource [@] } " " ${ mod_info_sourcemod [@] } " " ${ mod_info_steamworks [@] } " " ${ mod_info_gokz [@] } " " ${ mod_info_ttt [@] } " " ${ mod_info_get5 [@] } " " ${ mod_info_prac [@] } " " ${ mod_info_pug [@] } " " ${ mod_info_dhook [@] } " " ${ mod_info_movement [@] } " " ${ mod_info_cleaner [@] } " " ${ mod_info_ulib [@] } " " ${ mod_info_ulx [@] } " " ${ mod_info_utime [@] } " " ${ mod_info_uclip [@] } " " ${ mod_info_acf [@] } " " ${ mod_info_acf_missiles [@] } " " ${ mod_info_acf_sweps [@] } " " ${ mod_info_advdupe2 [@] } " " ${ mod_info_pac3 [@] } " " ${ mod_info_wiremod [@] } " " ${ mod_info_wiremodextras [@] } " " ${ mod_info_darkrp [@] } " " ${ mod_info_darkrpmodification [@] } " " ${ mod_info_rustoxide [@] } " " ${ mod_info_hwoxide [@] } " " ${ mod_info_sdtdoxide [@] } " " ${ mod_info_advduplicator [@] } " " ${ mod_info_trackassemblytool [@] } " " ${ mod_info_physpropertiesadv [@] } " " ${ mod_info_controlsystemse2 [@] } " " ${ mod_info_e2pistontiming [@] } " " ${ mod_info_propcannontool [@] } " " ${ mod_info_gearassemblytool [@] } " " ${ mod_info_spinnertool [@] } " " ${ mod_info_surfacefrictiontool [@] } " " ${ mod_info_magneticdipole [@] } " " ${ mod_info_environmentorganizer [@] } " " ${ mod_info_precision_alignment [@] } " " ${ mod_info_improved_stacker [@] } " " ${ mod_info_improved_weight [@] } " " ${ mod_info_improved_antinoclip [@] } " " ${ mod_info_laserstool [@] } " " ${ mod_info_valheimplus [@] } " " ${ mod_info_bepinexvh [@] } " )