SubSpace Continuum
Informations
Creator | Wiadmości |
---|---|
argonaut
![]()
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks1 0 DescriptionMultiplayer 2D space shooter video game. Source code#!/usr/bin/env playonlinux-bash # Date : (2019-05-10 22-33) # Last revision : (2019-05-10 22-33) # Wine version used : see below # Distribution used to test : Ubuntu 18.04 x64 # Script licence : GPL3 # Program licence : Retail # # Playonlinux version used : 4.3.4 # # Software version used of the software to write this script: v0.40 (2010) # # As of 2019-05-10 the officials dedicated Wine instructions are down (http://wine.getcontinuum.com). # Windows .EXE is downloadable from other websites than the orignal (that block download because of Linux). [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Subspace Continuum" PREFIX="subspace-continuum" WORKING_WINE_VERSION="4.1" AUTHOR="Dadu042" EDITOR="" GAME_URL="http://subspace-continuum.com" Set_OS "win7" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$TITLE" ############### # Go # ############### POL_SetupWindow_InstallMethod "LOCAL" if [ "$INSTALL_METHOD" == "LOCAL" ]; then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" cd "$POL_System_TmpDir" fi POL_Shortcut "Continuum.exe" "$TITLE" "" # POL_Shortcut_Document "$TITLE" "e-sword_guide.pdf" POL_System_TmpDelete POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Wiadmości |
Dadu042 | Friday 10 May 2019 at 22:52 |
Dadu042
![]() Moderator
|
InformationThis update has been approved by the team. WiadmościI wrote the following script, hoping it would avoid to install the ".deb" component. But playing is impossible because the game does not see the network ("Failing to connect to server". Same with Wine 4.1 and 4.7). Still work to do ?... (someone ?) Differences@@ -0,0 +1,62 @@ +#!/usr/bin/env playonlinux-bash +# Date : (2019-05-10 22-33) +# Last revision : (2019-05-10 22-33) +# Wine version used : see below +# Distribution used to test : Ubuntu 18.04 x64 +# Script licence : GPL3 +# Program licence : Retail +# +# Playonlinux version used : 4.3.4 +# +# Software version used of the software to write this script: v0.40 (2010) +# +# As of 2019-05-10 the officials dedicated Wine instructions are down (http://wine.getcontinuum.com). +# Windows .EXE is downloadable from other websites than the orignal (that block download because of Linux). + + +[ -z "$PLAYONLINUX" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Subspace Continuum" +PREFIX="subspace-continuum" +WORKING_WINE_VERSION="4.1" +AUTHOR="Dadu042" +EDITOR="" +GAME_URL="http://subspace-continuum.com" + +Set_OS "win7" + +POL_SetupWindow_Init +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +POL_Wine_SelectPrefix "$PREFIX" +POL_System_SetArch "x86" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +POL_System_TmpCreate "$TITLE" + + +############### +# Go # +############### + +POL_SetupWindow_InstallMethod "LOCAL" + +if [ "$INSTALL_METHOD" == "LOCAL" ]; then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + SETUP_EXE="$APP_ANSWER" + POL_Wine start /unix "$SETUP_EXE" + POL_Wine_WaitExit "$TITLE" + cd "$POL_System_TmpDir" +fi + +POL_Shortcut "Continuum.exe" "$TITLE" "" + +# POL_Shortcut_Document "$TITLE" "e-sword_guide.pdf" + + +POL_System_TmpDelete +POL_SetupWindow_Close +exit 0 New source code#!/usr/bin/env playonlinux-bash # Date : (2019-05-10 22-33) # Last revision : (2019-05-10 22-33) # Wine version used : see below # Distribution used to test : Ubuntu 18.04 x64 # Script licence : GPL3 # Program licence : Retail # # Playonlinux version used : 4.3.4 # # Software version used of the software to write this script: v0.40 (2010) # # As of 2019-05-10 the officials dedicated Wine instructions are down (http://wine.getcontinuum.com). # Windows .EXE is downloadable from other websites than the orignal (that block download because of Linux). [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Subspace Continuum" PREFIX="subspace-continuum" WORKING_WINE_VERSION="4.1" AUTHOR="Dadu042" EDITOR="" GAME_URL="http://subspace-continuum.com" Set_OS "win7" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$TITLE" ############### # Go # ############### POL_SetupWindow_InstallMethod "LOCAL" if [ "$INSTALL_METHOD" == "LOCAL" ]; then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" cd "$POL_System_TmpDir" fi POL_Shortcut "Continuum.exe" "$TITLE" "" # POL_Shortcut_Document "$TITLE" "e-sword_guide.pdf" POL_System_TmpDelete POL_SetupWindow_Close exit 0 OdpowiedziEdytowane przez Dadu042 |
argonaut | Monday 20 July 2015 at 0:58 |
argonaut
![]()
|
WiadmościOnly need to run the ContinuumSetup40.exe installer after installing wine version 1 RC1 found here: http://wine.getcontinuum.com/files/winerc1_patched.deb OdpowiedziMonday 20 July 2015 at 0:59
|