Skip to content

Instantly share code, notes, and snippets.

@lee8oi
Created May 11, 2017 05:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lee8oi/030b62fe44c7f5f488f6d5e8eb5d3c35 to your computer and use it in GitHub Desktop.
Save lee8oi/030b62fe44c7f5f488f6d5e8eb5d3c35 to your computer and use it in GitHub Desktop.
A simple script for downloading the autoupdate archive for Albion Online.
#!/bin/bash
# This script downloads the autoupdate archive for Albion Online. Useful if you
# have had problems running the game after using the official installer.
#
# If the game mentions the client is out of date just run this script again
# to get the latest version.
rm albiononline*.zip manifest.xml* &> /dev/null # cleanup
wget http://live.albiononline.com/autoupdate/manifest.xml
filename=`cat manifest.xml | grep -Po '(albiononline-linux-full.*.zip)'`
wget http://live.albiononline.com/autoupdate/$filename
unzip -fo $filename
chmod +x Albion-Online
rm albiononline*.zip manifest.xml* &> /dev/null # cleanup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment