blob: 1b39089d93e6483036aa4024a7734b6609427371 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
cd "/usr/lib/openra-kknd"
# Run the game
mono --debug OpenRA.Game.exe Game.Mod=kknd Engine.LaunchPath="/usr/bin/openra-kknd" "Engine.ModSearchPaths=/usr/lib/openra-kknd/mods" "$@"
# Show a crash dialog if something went wrong
if [ $? != 0 ] && [ $? != 1 ]; then
ERROR_MESSAGE="OpenRA Krush, Kill n' Destroy has encountered a fatal error.\nPlease refer to the crash logs and FAQ for more information.\n\nLog files are located in ~/.openra/Logs\nThe FAQ is available at http://wiki.openra.net/FAQ"
if command -v zenity > /dev/null; then
zenity --no-wrap --error --title "OpenRA Krush, Kill n' Destroy" --text "${ERROR_MESSAGE}" 2> /dev/null
elif command -v kdialog > /dev/null; then
kdialog --title "OpenRA Krush, Kill n' Destroy" --error "${ERROR_MESSAGE}"
else
printf "${ERROR_MESSAGE}\n"
fi
exit 1
fi
|