From 7af2590effd8e029fc8421bc63285bfc61d44658 Mon Sep 17 00:00:00 2001 From: zoli Date: Thu, 19 Mar 2026 17:18:13 +0100 Subject: [PATCH] Upload files to "/" --- setup.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 setup.sh diff --git a/setup.sh b/setup.sh new file mode 100644 index 0000000..bb316be --- /dev/null +++ b/setup.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +GW2_PATH="/home/zoli/.local/share/Steam/steamapps/common/Guild Wars 2/" + +#Remove previous installation +rm -f "$GW2_PATH"d3d11.dll +rm -f "$GW2_PATH"arcdps_unofficial_extras.dll +rm -f "$GW2_PATH"arcdps_healing_stats.dll +rm -f "$GW2_PATH"d3d9_arcdps_table.dll +rm -rf "$GW2_PATH"addons + +#ccreate addons folders +mkdir -p "$GW2_PATH"addons/arcdps/ + +#download arc dps +wget -P "$GW2_PATH" https://www.deltaconnected.com/arcdps/x64/d3d11.dll +#download unoffical extras +wget -P "$GW2_PATH" https://github.com/Krappa322/arcdps_unofficial_extras_releases/releases/latest/download/arcdps_unofficial_extras.dll +#download healing stats +wget -P "$GW2_PATH" https://github.com/Krappa322/arcdps_healing_stats/releases/latest/download/arcdps_healing_stats.dll +#download boon table +wget -P "$GW2_PATH" https://github.com/knoxfighter/GW2-ArcDPS-Boon-Table/releases/latest/download/d3d9_arcdps_table.dll +