Added game "EmpireMUD". updated README.
This commit is contained in:
parent
6cdf6f79e6
commit
ee0f6a0417
@ -21,3 +21,7 @@ While exceptions could probably be added for some of the games, AGM is already a
|
|||||||
Improper phase of the moon? You drew an imperfect circle when summoning the installer daemons? Your guess is as good as mine.
|
Improper phase of the moon? You drew an imperfect circle when summoning the installer daemons? Your guess is as good as mine.
|
||||||
|
|
||||||
In all seriousness, there are so many different configurations, computers, and distros out there, it is really difficult to give a detailed reason to the exact problem you are having. The best advice I can give is check your game's documentation for dependencies, and your distro's documentation for people who have had similar problems.
|
In all seriousness, there are so many different configurations, computers, and distros out there, it is really difficult to give a detailed reason to the exact problem you are having. The best advice I can give is check your game's documentation for dependencies, and your distro's documentation for people who have had similar problems.
|
||||||
|
|
||||||
|
## Q: I installed a game from Desktop or Downloads, where did it go?
|
||||||
|
|
||||||
|
LGM moves games into place when installing them. So the game can be found in ~/.local/games/. This is to save disk space and not have the game in 2 places at once.
|
||||||
|
@ -282,10 +282,12 @@ game_launcher() {
|
|||||||
open_url "https://ko-fi.com/stormux"
|
open_url "https://ko-fi.com/stormux"
|
||||||
;;
|
;;
|
||||||
*".tin")
|
*".tin")
|
||||||
pushd "${game%/*}"
|
git -C "${game%/*}" pull | \
|
||||||
|
dialog --progressbox "Checking for updates, please wait..." -1 -1
|
||||||
if [[ -n "${COLORTERM}" ]]; then
|
if [[ -n "${COLORTERM}" ]]; then
|
||||||
terminal_emulator tt++ ${game##*/}
|
terminal_emulator tt++ ${game##*/}
|
||||||
else
|
else
|
||||||
|
pushd "${game%/*}"
|
||||||
exec tt++ ${game##*/}
|
exec tt++ ${game##*/}
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
@ -318,12 +320,14 @@ unset noCache
|
|||||||
# Use menu friendly names.
|
# Use menu friendly names.
|
||||||
gameList=(
|
gameList=(
|
||||||
"Aliens"
|
"Aliens"
|
||||||
|
"Alter Aeon"
|
||||||
"Audo"
|
"Audo"
|
||||||
"Auroboros"
|
"Auroboros"
|
||||||
"Battle Weary"
|
"Battle Weary"
|
||||||
"Bladius"
|
"Bladius"
|
||||||
"Chimera"
|
"Chimera"
|
||||||
"E.X.O."
|
"E.X.O."
|
||||||
|
"EmpireMUD"
|
||||||
"Fantasy Story II"
|
"Fantasy Story II"
|
||||||
"Monkey Spank"
|
"Monkey Spank"
|
||||||
"Numnastics"
|
"Numnastics"
|
||||||
@ -396,6 +400,11 @@ case "${game}" in
|
|||||||
dialog --backtitle "Linux Game manager" \
|
dialog --backtitle "Linux Game manager" \
|
||||||
--infobox "${game} is a web based game and does not need to be installed." -1 -1
|
--infobox "${game} is a web based game and does not need to be installed." -1 -1
|
||||||
;;
|
;;
|
||||||
|
"Alter Aeon")
|
||||||
|
git -C "${installPath}/" clone --recurse-submodules https://github.com/lilmike/tintin-alteraeon.git | \
|
||||||
|
dialog --progressbox "Installing \"${game}\", please wait..." -1 -1
|
||||||
|
add_launcher "${installPath}/tintin-alteraeon/aa.tin"
|
||||||
|
;;
|
||||||
"Audo")
|
"Audo")
|
||||||
get_installer "Audo-linux-x64.zip" "https://shiftbacktick.itch.io/audo"
|
get_installer "Audo-linux-x64.zip" "https://shiftbacktick.itch.io/audo"
|
||||||
mkdir -p "${installPath}/Audo"
|
mkdir -p "${installPath}/Audo"
|
||||||
@ -426,6 +435,11 @@ case "${game}" in
|
|||||||
unzip -d "${installPath}/E.X.O." "${cache}/EXO-linux-x64.zip"
|
unzip -d "${installPath}/E.X.O." "${cache}/EXO-linux-x64.zip"
|
||||||
add_launcher "${installPath}/E.X.O./EXO"
|
add_launcher "${installPath}/E.X.O./EXO"
|
||||||
;;
|
;;
|
||||||
|
"EmpireMUD")
|
||||||
|
git -C "${installPath}/" clone --recurse-submodules https://github.com/lilmike/tintin-empiremud.git | \
|
||||||
|
dialog --progressbox "Installing \"${game}\", please wait..." -1 -1
|
||||||
|
add_launcher "${installPath}/tintin-empiremud/em.tin"
|
||||||
|
;;
|
||||||
"Fantasy Story II")
|
"Fantasy Story II")
|
||||||
get_installer "FS2_2.6_Linux.zip" "https://drive.google.com/file/d/187OaD1HhPoty85yJafZyvfqD5_G3P04c/view?usp=sharing"
|
get_installer "FS2_2.6_Linux.zip" "https://drive.google.com/file/d/187OaD1HhPoty85yJafZyvfqD5_G3P04c/view?usp=sharing"
|
||||||
unzip -d "${installPath}" "${cache}/FS2_2.6_Linux.zip"
|
unzip -d "${installPath}" "${cache}/FS2_2.6_Linux.zip"
|
||||||
|
Loading…
Reference in New Issue
Block a user