+1
|
Posted byikoz#7584on Jun 16, 2025, 2:03:58 PM
|
+1
|
Posted byquit7#4678on Jun 16, 2025, 2:11:54 PM
|
+1
|
Posted bychangeIing-#9302on Jun 16, 2025, 2:29:46 PM
|
+1
|
Posted byJromm043#6813on Jun 16, 2025, 2:32:31 PM
|
+1
|
Posted byhamirto#1530on Jun 16, 2025, 2:40:00 PM
|
While we wait, I turned the previous instructions into a shell script via ChatGPT.
#!/bin/bash
# Get current user
USER=$(whoami)
# Define paths
POE_DIR="/Users/$USER/Library/Application Support/Path of Exile"
STEAM_POE_DIR="/Users/$USER/Library/Application Support/Steam/steamapps/common/Path of Exile"
# Change to the Path of Exile directory
cd "$POE_DIR" || exit 1
# Copy and unzip update
cp update.dat update.zip
unzip -o update.zip
# Copy the .app to the Steam directory
cp -R "Path Of Exile.app" "$STEAM_POE_DIR"
# Fix permissions and sign the app
sudo xattr -cr "$STEAM_POE_DIR/PathOfExileClient.app"
sudo codesign --force --deep --sign - "$STEAM_POE_DIR/PathOfExileClient.app"
# Launch the game
"$STEAM_POE_DIR/Path Of Exile.app/Contents/MacOS/Path of Exile"
|
Posted byDr_ick#4198on Jun 16, 2025, 2:55:16 PM
|
+1
|
Posted bymzbarsk#2025on Jun 16, 2025, 3:06:04 PM
|
+1
|
Posted byMrVerboten#0495on Jun 16, 2025, 3:08:35 PM
|
as we are counting
+1
|
Posted byElBastardPOE#5350on Jun 16, 2025, 3:14:48 PM
|
+1
|
Posted byDzointaz#0945on Jun 16, 2025, 3:20:54 PM
|