Star Trek Online
Informations
Creator | Message |
---|---|
Ronin DUSETTE
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks11 27 DescriptionStar Trek Online ('STO') is a MMORPG (first release: 2010). Note: Arc and Steam clients are not required. ScreenshotsSource code#!/bin/bash # Date : (2015-04-02) # Last revision : (2021-07-16 22-23) # Distribution used to test : # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # CHANGELOG # [R. Dusette] (2015-04-02) # First script. # ... # [Yaotl] (2019-11-26) # Wine 3.19 -> 4.0.2 # [Dadu042] (2019-12-02) # Wine 4.0.2 -> 4.0.3, because 4.0.2 is still not available from OSX on Playonmac (while 4.0.3 is). # [Dadu042] (2020-01-09) # Fix VMS order. # [Yaotl] (2021-05-05) # Wine 4.0.3 -> 6.0 # Script updates [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" WINEVERSION="6.0.1" TITLE="Star Trek Online" PREFIX="StarTrekOnline" DOWNLOAD_URL=" http://files.startrekonline.com/launcher/Star Trek Online.exe" MD5_CHECKSUM="deb63cf6240232f92020ee95cf9fc435" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/star-trek-online" "RoninDusette" "$PREFIX" # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_vcrun2019 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver # Launcher Download mkdir -p "$WINEPREFIX/drive_c/Program Files/Star Trek Online" cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" "" "" "Game;" # Game Configuration POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir if [ "$POL_LANG" = "fr" ]; then lang="1036"; # French elif [ "$POL_LANG" = "de" ]; then lang="1031"; # German else lang="1033"; # English fi cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online] "InstallLanguage"="$lang" EOF POL_Wine regedit "lang.reg" if [ "$POL_OS" = "Linux" ]; then POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "DXVK" "~" if [ "$(echo $APP_ANSWER | grep -o "DXVK")" != "" ]; then POL_Call POL_Install_DXVK fi fi # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
RogerWilco | Tuesday 5 July 2022 at 17:41 |
RogerWilco
|
MessageI tried installing through PlayOnMac, but I get a MD5 checksum error. I have no clue how to continue from this point. I tried copying the Star Trek Online directory from my Windows machine, but that gives another error about the graphics card not being supported. 6S4TMV96 I have a Macbook Pro 2019 i9 16 GB with an AMD Radeon 5500M/4GB. Not the newest or the best, but I would think it to be new enough. This is what the debug window complains about: 024:fixme:seh:get_thread_times not implemented on this platform
Loaded FolderCache with 0 files from hoggs (0.00) UtilitiesLib_SetFileSystemIsInitted (0.00) GamePrefsInit: giGamePrefSet now 0 Thanks. RepliesTuesday 5 July 2022 at 17:42
Tuesday 5 July 2022 at 18:00
Tuesday 5 July 2022 at 18:41
Tuesday 5 July 2022 at 19:44
Tuesday 5 July 2022 at 20:18
Tuesday 5 July 2022 at 20:20
Edited by RogerWilco |
Newsdude | Friday 10 December 2021 at 3:11 |
Newsdude
|
MessageI am unable to install the game. I recieve an error during the installation process. I took a screenshot of the error, and have posted it below. The computer I use is a Mac desktop, running MacOS 11.5.1.
RepliesEdited by Newsdude |
Yaotl | Friday 16 July 2021 at 22:24 |
Yaotl
|
InformationThis update has been approved by the team. Messageit should work again now Differences@@ -1,6 +1,6 @@ #!/bin/bash # Date : (2015-04-02) -# Last revision : (2021-05-05 02-15) +# Last revision : (2021-07-16 22-23) # Distribution used to test : # Author : RoninDusette # Licence : GPLv3 @@ -26,7 +26,7 @@ WINEVERSION="6.0.1" TITLE="Star Trek Online" PREFIX="StarTrekOnline" -DOWNLOAD_URL=" http://files.startrekonline.com/launcher/Star%20Trek%20Online.exe" +DOWNLOAD_URL=" http://files.startrekonline.com/launcher/Star Trek Online.exe" MD5_CHECKSUM="deb63cf6240232f92020ee95cf9fc435" #Initialization @@ -67,6 +67,7 @@ POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" "" "" "Game;" # Game Configuration +POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir if [ "$POL_LANG" = "fr" ]; then New source code#!/bin/bash # Date : (2015-04-02) # Last revision : (2021-07-16 22-23) # Distribution used to test : # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # CHANGELOG # [R. Dusette] (2015-04-02) # First script. # ... # [Yaotl] (2019-11-26) # Wine 3.19 -> 4.0.2 # [Dadu042] (2019-12-02) # Wine 4.0.2 -> 4.0.3, because 4.0.2 is still not available from OSX on Playonmac (while 4.0.3 is). # [Dadu042] (2020-01-09) # Fix VMS order. # [Yaotl] (2021-05-05) # Wine 4.0.3 -> 6.0 # Script updates [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" WINEVERSION="6.0.1" TITLE="Star Trek Online" PREFIX="StarTrekOnline" DOWNLOAD_URL=" http://files.startrekonline.com/launcher/Star Trek Online.exe" MD5_CHECKSUM="deb63cf6240232f92020ee95cf9fc435" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/star-trek-online" "RoninDusette" "$PREFIX" # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_vcrun2019 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver # Launcher Download mkdir -p "$WINEPREFIX/drive_c/Program Files/Star Trek Online" cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" "" "" "Game;" # Game Configuration POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir if [ "$POL_LANG" = "fr" ]; then lang="1036"; # French elif [ "$POL_LANG" = "de" ]; then lang="1031"; # German else lang="1033"; # English fi cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online] "InstallLanguage"="$lang" EOF POL_Wine regedit "lang.reg" if [ "$POL_OS" = "Linux" ]; then POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "DXVK" "~" if [ "$(echo $APP_ANSWER | grep -o "DXVK")" != "" ]; then POL_Call POL_Install_DXVK fi fi # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Yaotl | Saturday 10 July 2021 at 11:06 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -26,8 +26,8 @@ WINEVERSION="6.0.1" TITLE="Star Trek Online" PREFIX="StarTrekOnline" -DOWNLOAD_URL="https://yaotl.heliohost.us/resources/setups/$PREFIX/CL_2021_05_21_17_59/$PREFIX.7z" -MD5_CHECKSUM="9819dcb9bbe9fe032bf80c4928e45404" +DOWNLOAD_URL=" http://files.startrekonline.com/launcher/Star%20Trek%20Online.exe" +MD5_CHECKSUM="deb63cf6240232f92020ee95cf9fc435" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" @@ -41,11 +41,6 @@ # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." -# Launcher Download -POL_System_TmpCreate "$PREFIX" -cd "$POL_System_TmpDir" -POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" - # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" @@ -63,10 +58,10 @@ # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver -# Installation +# Launcher Download mkdir -p "$WINEPREFIX/drive_c/Program Files/Star Trek Online" cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" -7z e "$POL_System_TmpDir/StarTrekOnline.7z" -o"$WINEPREFIX/drive_c/Program Files/Star Trek Online" +POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" "" "" "Game;" New source code#!/bin/bash # Date : (2015-04-02) # Last revision : (2021-05-05 02-15) # Distribution used to test : # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # CHANGELOG # [R. Dusette] (2015-04-02) # First script. # ... # [Yaotl] (2019-11-26) # Wine 3.19 -> 4.0.2 # [Dadu042] (2019-12-02) # Wine 4.0.2 -> 4.0.3, because 4.0.2 is still not available from OSX on Playonmac (while 4.0.3 is). # [Dadu042] (2020-01-09) # Fix VMS order. # [Yaotl] (2021-05-05) # Wine 4.0.3 -> 6.0 # Script updates [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" WINEVERSION="6.0.1" TITLE="Star Trek Online" PREFIX="StarTrekOnline" DOWNLOAD_URL=" http://files.startrekonline.com/launcher/Star%20Trek%20Online.exe" MD5_CHECKSUM="deb63cf6240232f92020ee95cf9fc435" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/star-trek-online" "RoninDusette" "$PREFIX" # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_vcrun2019 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver # Launcher Download mkdir -p "$WINEPREFIX/drive_c/Program Files/Star Trek Online" cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" "" "" "Game;" # Game Configuration cd $POL_System_TmpDir if [ "$POL_LANG" = "fr" ]; then lang="1036"; # French elif [ "$POL_LANG" = "de" ]; then lang="1031"; # German else lang="1033"; # English fi cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online] "InstallLanguage"="$lang" EOF POL_Wine regedit "lang.reg" if [ "$POL_OS" = "Linux" ]; then POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "DXVK" "~" if [ "$(echo $APP_ANSWER | grep -o "DXVK")" != "" ]; then POL_Call POL_Install_DXVK fi fi # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesMonday 12 July 2021 at 21:26
|
LBGK | Saturday 10 July 2021 at 2:17 |
LBGK
|
|
Yaotl | Tuesday 15 June 2021 at 23:26 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -23,11 +23,11 @@ [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" -WINEVERSION="6.0" +WINEVERSION="6.0.1" TITLE="Star Trek Online" PREFIX="StarTrekOnline" -DOWNLOAD_URL="http://yaotl.heliohost.us/resources/setups/$PREFIX/CL_2021_03_22_18_15/$PREFIX.7z" -MD5_CHECKSUM="c94dbad2add50eaa9263fe2d48a65670" +DOWNLOAD_URL="https://yaotl.heliohost.us/resources/setups/$PREFIX/CL_2021_05_21_17_59/$PREFIX.7z" +MD5_CHECKSUM="9819dcb9bbe9fe032bf80c4928e45404" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" @@ -72,6 +72,8 @@ POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" "" "" "Game;" # Game Configuration +cd $POL_System_TmpDir + if [ "$POL_LANG" = "fr" ]; then lang="1036"; # French elif [ "$POL_LANG" = "de" ]; then @@ -80,9 +82,6 @@ lang="1033"; # English fi -POL_System_TmpCreate "$PREFIX" -cd $POL_System_TmpDir - cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 @@ -91,10 +90,11 @@ EOF POL_Wine regedit "lang.reg" -POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "DXVK_181" "~" -if [ "$(echo $APP_ANSWER | grep -o "DXVK_181")" != "" ] -then - POL_Call POL_Install_DXVK_181 +if [ "$POL_OS" = "Linux" ]; then + POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "DXVK" "~" + if [ "$(echo $APP_ANSWER | grep -o "DXVK")" != "" ]; then + POL_Call POL_Install_DXVK + fi fi # Cleanup New source code#!/bin/bash # Date : (2015-04-02) # Last revision : (2021-05-05 02-15) # Distribution used to test : # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # CHANGELOG # [R. Dusette] (2015-04-02) # First script. # ... # [Yaotl] (2019-11-26) # Wine 3.19 -> 4.0.2 # [Dadu042] (2019-12-02) # Wine 4.0.2 -> 4.0.3, because 4.0.2 is still not available from OSX on Playonmac (while 4.0.3 is). # [Dadu042] (2020-01-09) # Fix VMS order. # [Yaotl] (2021-05-05) # Wine 4.0.3 -> 6.0 # Script updates [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" WINEVERSION="6.0.1" TITLE="Star Trek Online" PREFIX="StarTrekOnline" DOWNLOAD_URL="https://yaotl.heliohost.us/resources/setups/$PREFIX/CL_2021_05_21_17_59/$PREFIX.7z" MD5_CHECKSUM="9819dcb9bbe9fe032bf80c4928e45404" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/star-trek-online" "RoninDusette" "$PREFIX" # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Launcher Download POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_vcrun2019 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Star Trek Online" cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" 7z e "$POL_System_TmpDir/StarTrekOnline.7z" -o"$WINEPREFIX/drive_c/Program Files/Star Trek Online" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" "" "" "Game;" # Game Configuration cd $POL_System_TmpDir if [ "$POL_LANG" = "fr" ]; then lang="1036"; # French elif [ "$POL_LANG" = "de" ]; then lang="1031"; # German else lang="1033"; # English fi cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online] "InstallLanguage"="$lang" EOF POL_Wine regedit "lang.reg" if [ "$POL_OS" = "Linux" ]; then POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "DXVK" "~" if [ "$(echo $APP_ANSWER | grep -o "DXVK")" != "" ]; then POL_Call POL_Install_DXVK fi fi # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesWednesday 16 June 2021 at 6:27
|
Yaotl | Thursday 6 May 2021 at 15:08 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -1,7 +1,7 @@ #!/bin/bash # Date : (2015-04-02) -# Last revision : (2019-09-08 06-50) -# Distribution used to test : Linux Mint 19.2 Cinnamon - 64-bit +# Last revision : (2021-05-05 02-15) +# Distribution used to test : # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 @@ -16,15 +16,18 @@ # Wine 4.0.2 -> 4.0.3, because 4.0.2 is still not available from OSX on Playonmac (while 4.0.3 is). # [Dadu042] (2020-01-09) # Fix VMS order. +# [Yaotl] (2021-05-05) +# Wine 4.0.3 -> 6.0 +# Script updates [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" -WINEVERSION="4.0.3" +WINEVERSION="6.0" TITLE="Star Trek Online" PREFIX="StarTrekOnline" -DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_07_22_17_20/Star Trek Online.exe" -MD5_CHECKSUM="fb28fd2e7d53b94957689481afcd35a8" +DOWNLOAD_URL="http://yaotl.heliohost.us/resources/setups/$PREFIX/CL_2021_03_22_18_15/$PREFIX.7z" +MD5_CHECKSUM="c94dbad2add50eaa9263fe2d48a65670" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" @@ -35,46 +38,46 @@ # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/star-trek-online" "RoninDusette" "$PREFIX" -# Checks if the required PlayOnLinux/Mac version is installed. +# Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." +# Launcher Download +POL_System_TmpCreate "$PREFIX" +cd "$POL_System_TmpDir" +POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" + # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies -POL_Call POL_Install_corefonts -POL_Call POL_Install_d3dx9 -POL_Call POL_Install_d3dx10 -POL_Call POL_Install_d3dx11 -POL_Call POL_Install_dinput8 -POL_Call POL_Install_xinput +POL_Call POL_Install_vcrun2019 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} -# Useful when there is 2 GPU on the same computer. -POL_Call POL_Install_VideoDriver +POL_Wine_Direct3D "UseGLSL" "enabled" +POL_Wine_Direct3D "DirectDrawRenderer" "opengl" -# Configuration -Set_OS "win10" +# Set Graphic Card informations keys for wine +POL_Call POL_Install_VideoDriver # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Star Trek Online" cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" -POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" +7z e "$POL_System_TmpDir/StarTrekOnline.7z" -o"$WINEPREFIX/drive_c/Program Files/Star Trek Online" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" "" "" "Game;" # Game Configuration if [ "$POL_LANG" = "fr" ]; then - lang="1036" + lang="1036"; # French elif [ "$POL_LANG" = "de" ]; then - lang="1031" + lang="1031"; # German else - lang="1033" + lang="1033"; # English fi POL_System_TmpCreate "$PREFIX" @@ -88,6 +91,12 @@ EOF POL_Wine regedit "lang.reg" +POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "DXVK_181" "~" +if [ "$(echo $APP_ANSWER | grep -o "DXVK_181")" != "" ] +then + POL_Call POL_Install_DXVK_181 +fi + # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" New source code#!/bin/bash # Date : (2015-04-02) # Last revision : (2021-05-05 02-15) # Distribution used to test : # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # CHANGELOG # [R. Dusette] (2015-04-02) # First script. # ... # [Yaotl] (2019-11-26) # Wine 3.19 -> 4.0.2 # [Dadu042] (2019-12-02) # Wine 4.0.2 -> 4.0.3, because 4.0.2 is still not available from OSX on Playonmac (while 4.0.3 is). # [Dadu042] (2020-01-09) # Fix VMS order. # [Yaotl] (2021-05-05) # Wine 4.0.3 -> 6.0 # Script updates [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" WINEVERSION="6.0" TITLE="Star Trek Online" PREFIX="StarTrekOnline" DOWNLOAD_URL="http://yaotl.heliohost.us/resources/setups/$PREFIX/CL_2021_03_22_18_15/$PREFIX.7z" MD5_CHECKSUM="c94dbad2add50eaa9263fe2d48a65670" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/star-trek-online" "RoninDusette" "$PREFIX" # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Launcher Download POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_vcrun2019 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Star Trek Online" cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" 7z e "$POL_System_TmpDir/StarTrekOnline.7z" -o"$WINEPREFIX/drive_c/Program Files/Star Trek Online" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" "" "" "Game;" # Game Configuration if [ "$POL_LANG" = "fr" ]; then lang="1036"; # French elif [ "$POL_LANG" = "de" ]; then lang="1031"; # German else lang="1033"; # English fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online] "InstallLanguage"="$lang" EOF POL_Wine regedit "lang.reg" POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "DXVK_181" "~" if [ "$(echo $APP_ANSWER | grep -o "DXVK_181")" != "" ] then POL_Call POL_Install_DXVK_181 fi # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesSaturday 8 May 2021 at 10:12
|
Findell | Monday 18 May 2020 at 9:36 |
Findell
|
Message0009:fixme:win:EnumDisplayDevicesW ((null),0,0x33d120,0x00000000), stub! 0009:fixme:dxgi:DXGID3D10CreateDevice Ignoring flags 0x1. 0009:fixme:winediag:wined3d_select_feature_level None of the requested D3D feature levels is supported on this GPU with the current shader backend.
Let you install the game and patch to current version.
Wont let you execute the game with a hard lock of a Direct dx issue.
Tried a clean full install twice wiping out of the virtual drive.
Tried forcing a reinstall of the dx libs and the video card lib that it auto install same issues.
RepliesMonday 18 May 2020 at 10:18
Monday 22 February 2021 at 12:38
Monday 22 February 2021 at 12:39
|
Dadu042 | Thursday 9 January 2020 at 17:20 |
Dadu042
|
WarningThis update has not been approved yet by the team. Differences@@ -14,7 +14,8 @@ # Wine 3.19 -> 4.0.2 # [Dadu042] (2019-12-02) # Wine 4.0.2 -> 4.0.3, because 4.0.2 is still not available from OSX on Playonmac (while 4.0.3 is). - +# [Dadu042] (2020-01-09) +# Fix VMS order. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -50,12 +51,12 @@ POL_Call POL_Install_dinput8 POL_Call POL_Install_xinput -# Useful when there is 2 GPU on the same computer. -POL_Call POL_Install_VideoDriver - # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} +# Useful when there is 2 GPU on the same computer. +POL_Call POL_Install_VideoDriver + # Configuration Set_OS "win10" New source code#!/bin/bash # Date : (2015-04-02) # Last revision : (2019-09-08 06-50) # Distribution used to test : Linux Mint 19.2 Cinnamon - 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # CHANGELOG # [R. Dusette] (2015-04-02) # First script. # ... # [Yaotl] (2019-11-26) # Wine 3.19 -> 4.0.2 # [Dadu042] (2019-12-02) # Wine 4.0.2 -> 4.0.3, because 4.0.2 is still not available from OSX on Playonmac (while 4.0.3 is). # [Dadu042] (2020-01-09) # Fix VMS order. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" WINEVERSION="4.0.3" TITLE="Star Trek Online" PREFIX="StarTrekOnline" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_07_22_17_20/Star Trek Online.exe" MD5_CHECKSUM="fb28fd2e7d53b94957689481afcd35a8" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/star-trek-online" "RoninDusette" "$PREFIX" # Checks if the required PlayOnLinux/Mac version is installed. POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 POL_Call POL_Install_dinput8 POL_Call POL_Install_xinput # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Useful when there is 2 GPU on the same computer. POL_Call POL_Install_VideoDriver # Configuration Set_OS "win10" # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Star Trek Online" cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" "" "" "Game;" # Game Configuration if [ "$POL_LANG" = "fr" ]; then lang="1036" elif [ "$POL_LANG" = "de" ]; then lang="1031" else lang="1033" fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online] "InstallLanguage"="$lang" EOF POL_Wine regedit "lang.reg" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Dadu042 | Wednesday 4 December 2019 at 20:35 |
Dadu042
|
WarningThis update has not been approved yet by the team. Differences@@ -5,12 +5,21 @@ # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 +# +# CHANGELOG +# [R. Dusette] (2015-04-02) +# First script. +# ... +# [Yaotl] (2019-11-26) +# Wine 3.19 -> 4.0.2 +# [Dadu042] (2019-12-02) +# Wine 4.0.2 -> 4.0.3, because 4.0.2 is still not available from OSX on Playonmac (while 4.0.3 is). [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" -WINEVERSION="4.0.2" +WINEVERSION="4.0.3" TITLE="Star Trek Online" PREFIX="StarTrekOnline" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_07_22_17_20/Star Trek Online.exe" New source code#!/bin/bash # Date : (2015-04-02) # Last revision : (2019-09-08 06-50) # Distribution used to test : Linux Mint 19.2 Cinnamon - 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # CHANGELOG # [R. Dusette] (2015-04-02) # First script. # ... # [Yaotl] (2019-11-26) # Wine 3.19 -> 4.0.2 # [Dadu042] (2019-12-02) # Wine 4.0.2 -> 4.0.3, because 4.0.2 is still not available from OSX on Playonmac (while 4.0.3 is). [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" WINEVERSION="4.0.3" TITLE="Star Trek Online" PREFIX="StarTrekOnline" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_07_22_17_20/Star Trek Online.exe" MD5_CHECKSUM="fb28fd2e7d53b94957689481afcd35a8" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/star-trek-online" "RoninDusette" "$PREFIX" # Checks if the required PlayOnLinux/Mac version is installed. POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 POL_Call POL_Install_dinput8 POL_Call POL_Install_xinput # Useful when there is 2 GPU on the same computer. POL_Call POL_Install_VideoDriver # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win10" # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Star Trek Online" cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" "" "" "Game;" # Game Configuration if [ "$POL_LANG" = "fr" ]; then lang="1036" elif [ "$POL_LANG" = "de" ]; then lang="1031" else lang="1033" fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online] "InstallLanguage"="$lang" EOF POL_Wine regedit "lang.reg" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Yaotl | Monday 8 April 2019 at 15:03 |
Yaotl
|
WarningThis update has not been approved yet by the team. MessageDifferences@@ -1,35 +1,35 @@ #!/bin/bash -# Date : (2015-04-21) -# Distribution used to test : Linux Mint 19 Cinnamon 64-bit +# Date : (2015-04-02) +# Last revision : (2019-09-08 06-50) +# Distribution used to test : Linux Mint 19.2 Cinnamon - 64-bit # Author : RoninDusette -# Update (2018-07-24) by : Yaotl # Licence : GPLv3 -# PlayOnLinux : 4.2.12 +# PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" -PREFIX="StarTrekOnline" -WINEVERSION="3.19" +WINEVERSION="4.0.2" TITLE="Star Trek Online" -EDITOR="Perfect World Entertainment Inc." -GAME_URL="http://www.arcgames.com/en/games/star-trek-online" -AUTHOR="RoninDusette" -DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_06_22_08_32/Star Trek Online.exe" -MD5_CHECKSUM="e884b20e57272c441f93b1b79f906303" +PREFIX="StarTrekOnline" +DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_07_22_17_20/Star Trek Online.exe" +MD5_CHECKSUM="fb28fd2e7d53b94957689481afcd35a8" #Initialization -POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.bmp" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation -POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" +POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/star-trek-online" "RoninDusette" "$PREFIX" + +# Checks if the required PlayOnLinux/Mac version is installed. +POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Create Prefix -POL_System_SetArch "x64" +POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" @@ -38,47 +38,48 @@ POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 +POL_Call POL_Install_dinput8 +POL_Call POL_Install_xinput + +# Useful when there is 2 GPU on the same computer. +POL_Call POL_Install_VideoDriver # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration -Set_OS "win7" +Set_OS "win10" # Installation -POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français" "|" -if [ "$APP_ANSWER" = "English" ] -then - lang="1033" -elif [ "$APP_ANSWER" = "Deutsch" ] -then - lang="1031" -elif [ "$APP_ANSWER" = "Français" ] -then +mkdir -p "$WINEPREFIX/drive_c/Program Files/Star Trek Online" +cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" +POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" + +# Create Shortcut +POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" "" "" "Game;" + +# Game Configuration +if [ "$POL_LANG" = "fr" ]; then lang="1036" +elif [ "$POL_LANG" = "de" ]; then + lang="1031" +else + lang="1033" fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir -echo 'Windows Registry Editor Version 5.00 +cat << EOF > "lang.reg" +Windows Registry Editor Version 5.00 -[HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online]' > lang.reg -echo '"InstallLanguage"="'$lang'"' >> lang.reg +[HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online] +"InstallLanguage"="$lang" +EOF POL_Wine regedit "lang.reg" -mkdir "$WINEPREFIX/drive_c/Program Files/Star Trek Online" -cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" -POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" - # Cleanup POL_System_TmpDelete - -# Create Shortcut -POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" - POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" - POL_SetupWindow_Close - exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-04-02) # Last revision : (2019-09-08 06-50) # Distribution used to test : Linux Mint 19.2 Cinnamon - 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" WINEVERSION="4.0.2" TITLE="Star Trek Online" PREFIX="StarTrekOnline" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_07_22_17_20/Star Trek Online.exe" MD5_CHECKSUM="fb28fd2e7d53b94957689481afcd35a8" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/star-trek-online" "RoninDusette" "$PREFIX" # Checks if the required PlayOnLinux/Mac version is installed. POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 POL_Call POL_Install_dinput8 POL_Call POL_Install_xinput # Useful when there is 2 GPU on the same computer. POL_Call POL_Install_VideoDriver # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win10" # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Star Trek Online" cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" "" "" "Game;" # Game Configuration if [ "$POL_LANG" = "fr" ]; then lang="1036" elif [ "$POL_LANG" = "de" ]; then lang="1031" else lang="1033" fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online] "InstallLanguage"="$lang" EOF POL_Wine regedit "lang.reg" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesFriday 15 November 2019 at 12:45
Edited by Yaotl |
Yaotl | Monday 11 February 2019 at 5:38 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -1,32 +1,30 @@ #!/bin/bash -# Date : (2015-04-21) -# Distribution used to test : Linux Mint 19 Cinnamon 64-bit +# Date : (2015-04-02) +# Last revision : (2019-06-26 01-21) +# Distribution used to test : Linux Mint 19.1 Cinnamon - 64-bit # Author : RoninDusette -# Update (2018-07-24) by : Yaotl # Licence : GPLv3 -# PlayOnLinux : 4.2.12 +# PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" -WINEVERSION="3.19" +WINEVERSION="4.11" TITLE="Star Trek Online" -EDITOR="Perfect World Entertainment Inc." -GAME_URL="http://www.arcgames.com/en/games/star-trek-online" -AUTHOR="RoninDusette" -DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_06_22_08_32/Star Trek Online.exe" -MD5_CHECKSUM="e884b20e57272c441f93b1b79f906303" +DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_05_03_13_48/Star Trek Online.exe" +MD5_CHECKSUM="7da20e8b66354a8e3622f14b1c0959c6" #Initialization -POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.bmp" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" +POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.png" "http://0815.bplaced.net/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation -POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" +POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/star-trek-online" "RoninDusette" "$PREFIX" +POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Create Prefix POL_System_SetArch "x64" @@ -43,19 +41,24 @@ POL_SetupWindow_VMS ${GAME_VMS} # Configuration -Set_OS "win7" +Set_OS "win10" # Installation +mkdir -p "$WINEPREFIX/drive_c/Program Files/Star Trek Online" +cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" +POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" + +# Create Shortcut +POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" "" "" "Game;" + +# Game Configuration POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français" "|" if [ "$APP_ANSWER" = "English" ] -then - lang="1033" + then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] -then - lang="1031" + then lang="1031" elif [ "$APP_ANSWER" = "Français" ] -then - lang="1036" + then lang="1036" fi POL_System_TmpCreate "$PREFIX" @@ -63,20 +66,13 @@ echo 'Windows Registry Editor Version 5.00 -[HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online]' > lang.reg -echo '"InstallLanguage"="'$lang'"' >> lang.reg +[HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online] +"InstallLanguage"="'$lang'"' > lang.reg POL_Wine regedit "lang.reg" -mkdir "$WINEPREFIX/drive_c/Program Files/Star Trek Online" -cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" -POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" - # Cleanup POL_System_TmpDelete -# Create Shortcut -POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" - POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close New source code#!/bin/bash # Date : (2015-04-02) # Last revision : (2019-06-26 01-21) # Distribution used to test : Linux Mint 19.1 Cinnamon - 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="4.11" TITLE="Star Trek Online" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_05_03_13_48/Star Trek Online.exe" MD5_CHECKSUM="7da20e8b66354a8e3622f14b1c0959c6" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.png" "http://0815.bplaced.net/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/star-trek-online" "RoninDusette" "$PREFIX" POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win10" # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Star Trek Online" cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" "" "" "Game;" # Game Configuration POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] then lang="1031" elif [ "$APP_ANSWER" = "Français" ] then lang="1036" fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir echo 'Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online] "InstallLanguage"="'$lang'"' > lang.reg POL_Wine regedit "lang.reg" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesSunday 24 February 2019 at 19:05
Wednesday 27 February 2019 at 20:12
Sunday 17 March 2019 at 3:24
Sunday 17 March 2019 at 16:49
Sunday 17 March 2019 at 16:57
Thursday 4 April 2019 at 6:07
Edited by Yaotl |
Glowen88 | Sunday 10 February 2019 at 12:37 |
Glowen88
|
|
man-max | Saturday 2 February 2019 at 22:59 |
man-max
|
Messagehello, i cam currently having issues getting the correct directx version to run on playonmac. earlier in the post someone mentioned a wiki for guidance and help, if that is helpful, what is the link? RepliesSaturday 2 February 2019 at 23:02
Saturday 2 February 2019 at 23:03
Monday 4 February 2019 at 16:16
Wednesday 20 February 2019 at 6:02
Sunday 24 February 2019 at 18:45
Sunday 24 February 2019 at 18:52
Tuesday 26 February 2019 at 5:30
|
Yaotl | Wednesday 23 January 2019 at 10:26 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -1,35 +1,46 @@ #!/bin/bash # Date : (2015-04-21) -# Distribution used to test : Linux Mint 19 Cinnamon 64-bit +# Distribution used to test : Linux Mint 19.1 Cinnamon 64-bit # Author : RoninDusette -# Update (2018-07-24) by : Yaotl +# Update (2018-01-23) by : Yaotl # Licence : GPLv3 -# PlayOnLinux : 4.2.12 +# PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" -WINEVERSION="3.19" +#WINEVERSION="4.0-rc7" TITLE="Star Trek Online" -EDITOR="Perfect World Entertainment Inc." -GAME_URL="http://www.arcgames.com/en/games/star-trek-online" -AUTHOR="RoninDusette" -DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_06_22_08_32/Star Trek Online.exe" -MD5_CHECKSUM="e884b20e57272c441f93b1b79f906303" +DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_12_21_17_06/Star Trek Online.exe" +MD5_CHECKSUM="2ce8e5d06d17c122f106c3546183e4fa" #Initialization -POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.bmp" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" +POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.bmp" "" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation -POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" +POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/star-trek-online" "RoninDusette" "$PREFIX" + +POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" +if [ "$APP_ANSWER" = "64-bit installation" ] + then SetArch="x64" +elif [ "$APP_ANSWER" = "32-bit installation" ] + then SetArch="x86" +fi + +POL_SetupWindow_menu "" "$TITLE" "Wine_3.19|Wine_4.0-rc7_non_PlayOnLinux/Mac_4.2.12_compatible" "|" +if [ "$APP_ANSWER" = "Wine_3.19" ] + then WINEVERSION="3.19" +elif [ "$APP_ANSWER" = "Wine_4.0-rc7_non_PlayOnLinux/Mac_4.2.12_compatible" ] + then WINEVERSION="4.0-rc7" +fi # Create Prefix -POL_System_SetArch "x64" +POL_System_SetArch "$SetArch" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" @@ -43,7 +54,7 @@ POL_SetupWindow_VMS ${GAME_VMS} # Configuration -Set_OS "win7" +Set_OS "win10" # Installation POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français" "|" @@ -63,8 +74,8 @@ echo 'Windows Registry Editor Version 5.00 -[HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online]' > lang.reg -echo '"InstallLanguage"="'$lang'"' >> lang.reg +[HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online] +"InstallLanguage"="'$lang'"' > lang.reg POL_Wine regedit "lang.reg" mkdir "$WINEPREFIX/drive_c/Program Files/Star Trek Online" @@ -75,7 +86,7 @@ POL_System_TmpDelete # Create Shortcut -POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" +POL_Shortcut "Star Trek Online.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Linux Mint 19.1 Cinnamon 64-bit # Author : RoninDusette # Update (2018-01-23) by : Yaotl # Licence : GPLv3 # PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" #WINEVERSION="4.0-rc7" TITLE="Star Trek Online" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_12_21_17_06/Star Trek Online.exe" MD5_CHECKSUM="2ce8e5d06d17c122f106c3546183e4fa" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.bmp" "" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/star-trek-online" "RoninDusette" "$PREFIX" POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" if [ "$APP_ANSWER" = "64-bit installation" ] then SetArch="x64" elif [ "$APP_ANSWER" = "32-bit installation" ] then SetArch="x86" fi POL_SetupWindow_menu "" "$TITLE" "Wine_3.19|Wine_4.0-rc7_non_PlayOnLinux/Mac_4.2.12_compatible" "|" if [ "$APP_ANSWER" = "Wine_3.19" ] then WINEVERSION="3.19" elif [ "$APP_ANSWER" = "Wine_4.0-rc7_non_PlayOnLinux/Mac_4.2.12_compatible" ] then WINEVERSION="4.0-rc7" fi # Create Prefix POL_System_SetArch "$SetArch" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win10" # Installation POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] then lang="1031" elif [ "$APP_ANSWER" = "Français" ] then lang="1036" fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir echo 'Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online] "InstallLanguage"="'$lang'"' > lang.reg POL_Wine regedit "lang.reg" mkdir "$WINEPREFIX/drive_c/Program Files/Star Trek Online" cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Cleanup POL_System_TmpDelete # Create Shortcut POL_Shortcut "Star Trek Online.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesMonday 28 January 2019 at 9:15
Wednesday 6 February 2019 at 3:37
|
anyb | Thursday 17 January 2019 at 16:50 |
anyb
|
MessageI have been using the script provided by default via PlayOnLinux, it worked wonders! :)
Until now, STO seems to have dropped Windows XP support, and it fails to continue beyond the warning/error message that comes up because of it.
Is there any way to bypass this check perhaps? RepliesFriday 18 January 2019 at 22:41
|
jbieler864 | Wednesday 21 November 2018 at 2:00 |
jbieler864
|
MessageOkay, here's the complete poop on what I've got going that works for my set-up for Star Trek Online. It's gonna be long. Hope it helps and sets an example for others who want to report in. Late 2012 IMac,21.5 inch, 2.9 Ghz Intel Core i5, 8 GB RAM, Nvidia GeForce GT 650M 512 MB. Running High Sierra. POM Configurator set-up using Windows 10. Been playing since 2013 when the Mac client just came available. Went to POM after the Mac client was discontinued. Continued playing even after the DirectX changes in STO because I had so much time invested and I love the game. I was able to do PVE's, Admiralty and Duty Officer assignments to move my characters forward hoping that something would change, either with WINE or the game. I have NOT reinstalled POM or the game nor created any new vitual drives for quite some time. To give you a point of reference, when I started working on this post, the playonlinux.log was 37 GB. Was doing my thing (as noted above) on Wine 2.12. Age of Discovery comes out and suddenly 90 to 95% of the graphics are resolving including most ground scenes. Obviously, something within the game changed. I've updated the WINE version as each new one comes out. I'm using 2.17 now. Here is the log from a successful 2.17 log in: [11/20/18 19:11:29] - Running wine-3.17 Star Trek Online.exe (Working directory : /Users/joelcbieler/Library/PlayOnMac/wineprefix/StarTrekOnline/drive_c/users/Public/Games/Cryptic Studios) Connecting to patchserver.crypticstudios.com:7255 Connecting to patchserver.crypticstudios.com:7255 Log-ins from Subsequent versions, 2.18 to 2.20 have failed. Following is the log from a 2.20 attempt: [11/20/18 19:46:02] - Running wine-3.20 Star Trek Online.exe (Working directory : /Users/joelcbieler/Library/PlayOnMac/wineprefix/StarTrekOnline/drive_c/users/Public/Games/Cryptic Studios) Connecting to patchserver.crypticstudios.com:7255 Again, hope this helps. Time to play! RepliesWednesday 21 November 2018 at 2:12
Wednesday 21 November 2018 at 2:14
Saturday 22 December 2018 at 3:02
|
tomroseuk | Sunday 18 November 2018 at 21:33 |
tomroseuk
|
MessageI get this error when trying to install both star trek and what I think is the 3.19 update. any help appreciated. RepliesSunday 18 November 2018 at 21:34
Sunday 18 November 2018 at 21:34
Monday 19 November 2018 at 2:07
Monday 19 November 2018 at 11:52
Tuesday 20 November 2018 at 4:36
|
LinuxScripter | Friday 2 November 2018 at 14:04 |
LinuxScripter
|
WarningThis update has not been approved yet by the team. Differences@@ -11,7 +11,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" -WINEVERSION="3.17" +WINEVERSION="3.19" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Linux Mint 19 Cinnamon 64-bit # Author : RoninDusette # Update (2018-07-24) by : Yaotl # Licence : GPLv3 # PlayOnLinux : 4.2.12 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="3.19" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_06_22_08_32/Star Trek Online.exe" MD5_CHECKSUM="e884b20e57272c441f93b1b79f906303" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.bmp" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win7" # Installation POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] then lang="1031" elif [ "$APP_ANSWER" = "Français" ] then lang="1036" fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir echo 'Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online]' > lang.reg echo '"InstallLanguage"="'$lang'"' >> lang.reg POL_Wine regedit "lang.reg" mkdir "$WINEPREFIX/drive_c/Program Files/Star Trek Online" cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Cleanup POL_System_TmpDelete # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesFriday 2 November 2018 at 15:09
|
LinuxScripter | Friday 2 November 2018 at 13:46 |
LinuxScripter
|
MessageI get this error when the launcher is trying to connect: Setting default pigset mode... done (0x00000000) (0.00) Connecting to patchserver.crypticstudios.com:7255 PatchClientLib: connecting to patchserver.crypticstudios.com:7255 PatchClientLib: still connecting to patchserver.crypticstudios.com:7255 PatchClientLib: redirecting to 208.95.186.109:7255 PatchClientLib: still connecting to patchserver.crypticstudios.com:7255 PatchClientLib: redirecting to 208.95.184.40:7255 PatchClientLib: still connecting to patchserver.crypticstudios.com:7255 PatchClientLib: still connecting to patchserver.crypticstudios.com:7255 PatchClientLib: still connecting to patchserver.crypticstudios.com:7255 ERROR: Launcher PCL Error The connection was idle for too long Line: c:\src\core\crypticlauncher\patcher.c(396) RepliesFriday 2 November 2018 at 14:03
Friday 2 November 2018 at 20:17
Tuesday 6 November 2018 at 0:50
Tuesday 6 November 2018 at 1:00
|
newfontherock | Monday 29 October 2018 at 17:21 |
newfontherock
|
WarningThis update has not been approved yet by the team. Differences@@ -11,7 +11,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" -WINEVERSION="3.13" +WINEVERSION="3.17" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" @@ -67,8 +67,8 @@ echo '"InstallLanguage"="'$lang'"' >> lang.reg POL_Wine regedit "lang.reg" -mkdir "$WINEPREFIX/drive_c/Program Files (x86)/Star Trek Online" -cd "$WINEPREFIX/drive_c/Program Files (x86)/Star Trek Online" +mkdir "$WINEPREFIX/drive_c/Program Files/Star Trek Online" +cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Cleanup New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Linux Mint 19 Cinnamon 64-bit # Author : RoninDusette # Update (2018-07-24) by : Yaotl # Licence : GPLv3 # PlayOnLinux : 4.2.12 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="3.17" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_06_22_08_32/Star Trek Online.exe" MD5_CHECKSUM="e884b20e57272c441f93b1b79f906303" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.bmp" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win7" # Installation POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] then lang="1031" elif [ "$APP_ANSWER" = "Français" ] then lang="1036" fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir echo 'Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online]' > lang.reg echo '"InstallLanguage"="'$lang'"' >> lang.reg POL_Wine regedit "lang.reg" mkdir "$WINEPREFIX/drive_c/Program Files/Star Trek Online" cd "$WINEPREFIX/drive_c/Program Files/Star Trek Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Cleanup POL_System_TmpDelete # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesMonday 29 October 2018 at 17:24
Monday 29 October 2018 at 17:26
Monday 29 October 2018 at 18:02
|
jbieler864 | Tuesday 9 October 2018 at 20:42 |
jbieler864
|
MessageMac users....just ran the Age of Discovery update. Fired up the game on a single character and lo and behold Deep Space 9 interior is resolving and showing detail...not the skeletal appearance. Running a late 2012 IMac, High Sierra, and using Wine 3.17 in POM. Graphics card is an Nvidia GT 650M with 512 MB RAM. Will update as I try more characters and maps. RepliesThursday 11 October 2018 at 18:43
Thursday 11 October 2018 at 19:20
Thursday 11 October 2018 at 23:04
|
Yaotl | Tuesday 24 July 2018 at 20:08 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -1,52 +1,84 @@ #!/bin/bash # Date : (2015-04-21) -# Distribution used to test : Kubuntu 14.04 LTS 64-bit +# Distribution used to test : Linux Mint 19 Cinnamon 64-bit # Author : RoninDusette +# Update (2018-07-24) by : Yaotl # Licence : GPLv3 -# PlayOnLinux: 4.2.7 +# PlayOnLinux : 4.2.12 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" -WINEVERSION="3.0-rc6" +WINEVERSION="3.13" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" -DOWNLOAD_URL="http://files.startrekonline.com/installer/star_trek_online_setup.exe" +DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_06_22_08_32/Star Trek Online.exe" +MD5_CHECKSUM="e884b20e57272c441f93b1b79f906303" #Initialization -POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" +POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.bmp" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init - +POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix +POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" +# Dependencies +POL_Call POL_Install_corefonts +POL_Call POL_Install_d3dx9 +POL_Call POL_Install_d3dx10 +POL_Call POL_Install_d3dx11 + +# Asking about memory size of graphic card +POL_SetupWindow_VMS ${GAME_VMS} + # Configuration Set_OS "win7" # Installation +POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français" "|" +if [ "$APP_ANSWER" = "English" ] +then + lang="1033" +elif [ "$APP_ANSWER" = "Deutsch" ] +then + lang="1031" +elif [ "$APP_ANSWER" = "Français" ] +then + lang="1036" +fi + POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir -POL_Download "$DOWNLOAD_URL" "3b3454b554d68c13addb073af40fb631" -POL_Wine "star_trek_online_setup.exe" -POL_Wine_WaitExit "$TITLE" -# Create Shortcut -POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" +echo 'Windows Registry Editor Version 5.00 + +[HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online]' > lang.reg +echo '"InstallLanguage"="'$lang'"' >> lang.reg +POL_Wine regedit "lang.reg" + +mkdir "$WINEPREFIX/drive_c/Program Files (x86)/Star Trek Online" +cd "$WINEPREFIX/drive_c/Program Files (x86)/Star Trek Online" +POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Cleanup POL_System_TmpDelete +# Create Shortcut +POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" + POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close + exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Linux Mint 19 Cinnamon 64-bit # Author : RoninDusette # Update (2018-07-24) by : Yaotl # Licence : GPLv3 # PlayOnLinux : 4.2.12 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="3.13" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_06_22_08_32/Star Trek Online.exe" MD5_CHECKSUM="e884b20e57272c441f93b1b79f906303" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.bmp" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2491 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win7" # Installation POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] then lang="1031" elif [ "$APP_ANSWER" = "Français" ] then lang="1036" fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir echo 'Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Star Trek Online]' > lang.reg echo '"InstallLanguage"="'$lang'"' >> lang.reg POL_Wine regedit "lang.reg" mkdir "$WINEPREFIX/drive_c/Program Files (x86)/Star Trek Online" cd "$WINEPREFIX/drive_c/Program Files (x86)/Star Trek Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Cleanup POL_System_TmpDelete # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesThursday 16 August 2018 at 23:36
Friday 17 August 2018 at 0:03
Saturday 1 September 2018 at 10:19
Saturday 1 September 2018 at 16:45
Tuesday 9 October 2018 at 22:27
Tuesday 9 October 2018 at 22:28
Thursday 25 October 2018 at 6:26
|
ChanEnChun | Saturday 24 March 2018 at 5:13 |
ChanEnChun
|
MessageHey guys! Thought I should contribute my feedback regarding Star Trek Online. I've check other websites to find any proven solutions to the graphics error in-game, but unfortunately, nothing actually works currently. Since the wiki seems to still redirect me to the Home page on www.playonlinux.com, I've decided to give this feedback a shot. The game runs smoothly so far, I've not actually played a mission yet, but ran around SpaceDock and flown a ship to K-9. However, I can only see the hair, wrist and part of the pants of my character and bridge crew. The walls and most of the floor are missing as well, making it hard for me to navigate. I can only see the tip of my ship's warp nacelles and that's about it. My computer specs are not impressive, but it's the only one I can afford to use currently. It is a 2013 MacBook Air. MacOS High Sierra (unfortunately). CPU 1.3 GHz Intel Core i5. 4GB RAM. Intel HD Graphics 5000 1536MB. Thanks for any assistance. I really want to get back on while I'm currently free. It's been 3 years since I last played. RepliesMonday 9 April 2018 at 1:23
Monday 9 April 2018 at 1:23
Monday 9 April 2018 at 1:24
Monday 9 April 2018 at 2:31
Friday 4 May 2018 at 19:45
Friday 25 May 2018 at 22:42
Monday 4 June 2018 at 5:53
Wednesday 20 June 2018 at 7:08
Thursday 12 July 2018 at 16:48
Thursday 12 July 2018 at 16:59
Saturday 1 September 2018 at 10:20
Saturday 1 September 2018 at 16:45
|
Radmon25 | Monday 12 February 2018 at 12:38 |
Radmon25
|
MessageAs a few others already mentionned, I have an issue running the game where characters are only a floating wig and a few detals like teeth and the rest of the background is clearly not visible either. On the character creation mode I can see people on the background typing on computers only there's no computer... I don't have any knowledge what so ever of how this all thing works, and never used Wine before, so if someone could get me through an easily understandable process to fix this problem I'd be ever so grateful. RepliesFriday 16 February 2018 at 19:12
Friday 16 February 2018 at 19:59
Friday 16 February 2018 at 23:49
Monday 19 March 2018 at 12:55
Monday 19 March 2018 at 15:22
Tuesday 20 March 2018 at 12:19
Tuesday 20 March 2018 at 15:33
Tuesday 20 March 2018 at 15:33
Wednesday 21 March 2018 at 0:17
|
ferretman | Wednesday 7 February 2018 at 19:44 |
ferretman
|
MessageSo the installer runs wonderfully - but once I get logged in, the download of the game content is very slow - after twleve hours, it was less than 10% done - is this normal and I should just let it run - or is there some other issue going on, or a tweak I missed? If that's normal it makes me a little leary of server communications playing the game. Running on FC27 if it matters. RepliesMonday 12 February 2018 at 15:00
|
KODES | Saturday 20 January 2018 at 20:43 |
KODES
|
MessageSo im new to linux. I installed play on linux and then installed sto. I logged in and it patched. I hit engage and then it frezzes up. Would like to know if anyone else has this problem. Im a huge fan of the game. How do i fix this issue.
Replies |
Ronin DUSETTE | Tuesday 16 January 2018 at 22:32 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. MessageUpdating Wine version to fix crash. Differences@@ -10,7 +10,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" -WINEVERSION="2.3-staging" +WINEVERSION="3.0-rc6" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="3.0-rc6" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" DOWNLOAD_URL="http://files.startrekonline.com/installer/star_trek_online_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win7" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "3b3454b554d68c13addb073af40fb631" POL_Wine "star_trek_online_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesSaturday 20 January 2018 at 14:58
Saturday 20 January 2018 at 23:08
Tuesday 20 March 2018 at 14:00
|
Zethra | Tuesday 16 January 2018 at 21:23 |
Zethra
|
MessageGood evening, I would like to test Star Trek Online on ubuntu 16.04. Could you help me, please ? GTX750Ti 8go RAM RepliesTuesday 16 January 2018 at 21:56
Tuesday 16 January 2018 at 22:31
Tuesday 16 January 2018 at 22:33
Wednesday 17 January 2018 at 10:33
|
stevenbinion | Tuesday 16 January 2018 at 17:13 |
stevenbinion
|
MessageI still see everyone using older versions, anyway, I find STO working fine for me now with no exceptions, graphics look good. all I did was update to wine-3.0-rc6 Replies |
Ubunter | Monday 1 January 2018 at 17:01 |
Ubunter
|
MessageHi, I recently solved all graphical issues with STO on my Linux-PC. Wine Versions below 2.12-staging didn't work anymore. Often the game doesn't even start. But since the last big graphic patches in STO there is the problem with invisible hair and surfaces. This was a bug in wine and has been solved: https://bugs.winehq.org/show_bug.cgi?id=43131 Unfortunately there are new graphical issues since wine version 2.20 (strange colors or reflections). I also had problems with wine versions above 2.14 using a radeon graphic card (strange colored pixels). My NVidia card worked well with version 2.19. So the solution is the following: Try different wine versions and find the highest one with almost good graphics (except the problem with invisible hair/surfaces). Going to the character selection should be enough for checking graphic quality. When you found it, get the appropriate wine and wine-staging sources. Apply the discard_z patch from winehq and the staging patches. Then compile everything for x86 architecture and copy it to your .PlayOnLinux/wine/linux-x86 directory. I will give you detailed instructions for Ubuntu 16.04 (Linux Mint 18). You may adapt them for your own distro. STO can be installed via the POL script but you have to change the version before playing it. *For a new fresh PlayOnLinux installation do the following: *Get wine-staging and wine sources for version 2.14 into a new directory in your home dir (you can replace it with any other version tag) *Create a new x86 environment for compiling our wine version I tested it on the following two systems (it doesn't run fluently on the mobile radeon device but it looks good): Linux Mint 18.3 64-Bit (Ubuntu 16.04) Linux Mint 18.3 64-Bit (Ubuntu 16.04) RepliesMonday 1 January 2018 at 17:03
|
Aital | Friday 22 December 2017 at 8:27 |
Aital
|
MessageI'm running into problems in the last few days*(maybe2) where it is trying to update the client but fails repeatedly. anyone else run into this? It goes on for 5 tries and fails or stops altogether. I think it's a wine window giving the message. "Cryptic launcher autoupdate," I think. This may not be completely related to the installer as mine was paritally manually done. Although don't remember in which ways. It was following info in this thread inbetween launcher versions. So it might be relevant to something. Any ideas how to fix this? i've probably not tried alot of stuff. Still working on it. Figured I'd post something in case it speeds things up. Replies |
masterdavid98 | Friday 27 October 2017 at 17:39 |
masterdavid98
|
MessageHowdy folks, I am running STO on a new MacBook Pro, but with 2.3 staging I get the DirectX not supported pop up and I dont think the registry key hack is working (I am pretty sure I am doing it right anyways), when I switch to 2.18 staging it launches and I can get in game, but the floor and my character (except for hair) doesnt load in... RepliesFriday 19 January 2018 at 19:57
|
Aital | Tuesday 17 October 2017 at 20:26 |
Aital
|
MessageI started it up again after having problems with 2.12fix something and in 32bit Or similar. And then changed it to 2.18 staging and it has worked every since. Later version are working once you get it in the game. I don't know if I needed the 2.12fix. I may have just not waited long enough for it to start. But it's working consistantly with later versions now for me. Graphics problems are still a thing though. No change at all in this departments. But It's playable for me with the level of graphics missing. It's mostly superficial stuff like trees or boxes and not the ground or anything too serious. Replies |
rcsulliv | Tuesday 25 July 2017 at 22:36 |
rcsulliv
|
MessageOk, I am able to get STO to run using POM, but the graphics do not render well making it difficult to move around and play the game. I will keep playing with the graphics settings to see if anything improves this. My character shows up at first but then dissapears as the final layers are added. I've read some discussion that Shadows are an issue, but turning Shadows on or off doesn't seem to fix this. Here are the key settings I found that allowed the game to load and play on my MacBookPro Late 2016 13" (OSx 10.12.6): Wine 2.3-staging (see note below on 2.12-staging) Windows 7 or 10 - seemed to run the same. Direct3D registry key fix -> DWORD = 30002 (hex) Configure Wine -> Staging: Deselect "Hide Wine Version" (selecting this will cause a "system configuration error" dialogue when you first run the game) Configure Wine -> Staging: Enable CSMT (not sure if this helps but it doesn't seem to hurt either) Running in either Safe mode or Normal mode seems fine. Running in Maximized Window works well.
I can get the game to fully open and run using Wine 2.12-staging but the graphics look even worse than using 2.3-staging, so I'd recommend 2.3-staging. Have not tested other Wine versions.
Any ideas on stratgies to fix the graphics issue? RepliesWednesday 26 July 2017 at 9:15
Wednesday 26 July 2017 at 15:11
Wednesday 26 July 2017 at 21:43
Wednesday 26 July 2017 at 22:29
Wednesday 26 July 2017 at 22:54
Sunday 30 July 2017 at 1:18
Thursday 3 August 2017 at 6:40
Monday 7 August 2017 at 7:03
Saturday 23 September 2017 at 21:23
Sunday 24 September 2017 at 8:25
|
rcsulliv | Monday 24 July 2017 at 23:54 |
rcsulliv
|
MessageI still can't get other versions on Wine to install, but the game does load to the character creation screen (in Safe Mode, windowed). I can select a race and class, but when I click Next the game crashes. Have tried this multiple times with the same result. Anyone else having this issue? As I can't seem to install other Wive versions I'm just using "star_trek_online_setup.exe" as the Wine version. Thanks.
Replies |
rcsulliv | Sunday 23 July 2017 at 5:14 |
rcsulliv
|
MessageHi, I'm totally new to this and would appreciate some help I've been able to get it installed, but that required changing it to the right installation file name. Then I got the DirectX error but got around that by adding the registry key. I get just past the Cryptip load screen and then it says at the bottom something about a Tessalation error, and crashes. I've tried installing the Vine 2.3-staging but the installation never seems to complete and I never have it as an option. What else should I try? Thanks!
RepliesSunday 23 July 2017 at 13:23
Sunday 23 July 2017 at 16:15
Sunday 23 July 2017 at 19:40
Monday 24 July 2017 at 3:51
Monday 24 July 2017 at 6:19
Monday 24 July 2017 at 12:04
Monday 24 July 2017 at 12:05
Monday 24 July 2017 at 20:36
Monday 24 July 2017 at 21:47
Monday 24 July 2017 at 21:50
Monday 24 July 2017 at 22:10
Monday 24 July 2017 at 22:21
Tuesday 25 July 2017 at 3:34
Tuesday 25 July 2017 at 17:45
Friday 11 August 2017 at 22:44
Friday 11 August 2017 at 22:47
Friday 11 August 2017 at 23:08
Saturday 12 August 2017 at 17:27
Saturday 12 August 2017 at 17:29
Saturday 12 August 2017 at 19:03
Saturday 12 August 2017 at 21:10
Saturday 12 August 2017 at 22:49
Monday 14 August 2017 at 13:07
|
SToGamer | Tuesday 18 July 2017 at 18:54 |
SToGamer
|
Messageso... aparently its a no go since todays update, can start launcer, it gets to something about cancel teselation suport loading, and then crashes, at least for me, can anyone else confirm that please? RepliesTuesday 18 July 2017 at 19:26
Wednesday 19 July 2017 at 0:44
Wednesday 19 July 2017 at 7:13
Wednesday 19 July 2017 at 7:14
Wednesday 19 July 2017 at 7:27
Thursday 20 July 2017 at 23:46
Friday 21 July 2017 at 2:54
Friday 21 July 2017 at 2:55
Friday 21 July 2017 at 12:30
Friday 21 July 2017 at 12:31
Friday 21 July 2017 at 12:59
Friday 21 July 2017 at 13:00
Friday 21 July 2017 at 13:01
Friday 21 July 2017 at 15:25
Friday 21 July 2017 at 18:54
Friday 21 July 2017 at 18:55
Friday 21 July 2017 at 18:57
Saturday 22 July 2017 at 13:21
Saturday 22 July 2017 at 16:56
Saturday 22 July 2017 at 16:58
Saturday 22 July 2017 at 16:59
|
Crosis | Tuesday 11 July 2017 at 21:35 |
Crosis
|
MessageHey everyone, Running a MacBook Pro. Got the game runnings but it rarely renders characters, NPCs, or the the world/terrain? Am I missing an option somewhere? RepliesTuesday 11 July 2017 at 21:41
|
Akamia | Wednesday 5 July 2017 at 0:24 |
Akamia
|
MessageI have a problem. This is my first time trying to use PlayOnMac, and I got it specifically for this game. The launcher won't allow me to run the game due to an unsupported DirectX version. I apparently need a video card that can support DirectX Hardware Feature Level 10. I don't know what components I need to install to Wine to make it work, or if there are any workarounds. I'm attempting to play on a MacBook Pro Late 2014. I have an NVIDIA GeForce GT 750M 2048 MB and Intel Iris Pro 1536 MB as my graphics cards built in. What can I do? RepliesThursday 6 July 2017 at 18:25
Thursday 6 July 2017 at 18:29
Sunday 9 July 2017 at 15:01
Sunday 9 July 2017 at 15:01
Sunday 9 July 2017 at 15:01
Sunday 9 July 2017 at 15:04
Sunday 9 July 2017 at 18:24
Monday 10 July 2017 at 5:40
Monday 10 July 2017 at 19:57
|
Aital | Saturday 1 July 2017 at 23:11 |
Aital
|
MessageJust had a problem where the install or something updated itself. It now does not let me click on the engage or other buttons. I don't know if anyone else will have this issue. But I found a workaround by tabbing through the items in the window until getting to engage or other desired windows. This is the launcher so another option may be to use the client directly. This just happend a few minutes ago and was not an issue before this. I have no idea what updated or why. Replies |
Aital | Saturday 24 June 2017 at 21:01 |
Aital
|
MessageBug? I dont know if this is the place to ask, but does anyone have the ability to see pavyl on risa? I can do everything else but he seems to now show up. I think he might be glitched out. Replies |
dmat | Wednesday 7 June 2017 at 17:17 |
dmat
|
Message
Hello all, I've followed all the points, including th HKEY to get the game to run. It runs great on my Mac Mini 2012, apparently even smooth at higher graphics levels (though no action yet and I will likely have to reduce when I get there) ;) But first off, amazing work here! However... I am basically seeing no surfaces at all. No planet surfaces but weird glowing orbs in space instead, just empty wireframes of the starships and the bridge, characters are all glowing silhouettes with eyebrows, no walls, floors... no me! When I change the graphics levels I get sporadic changes. E.g. I was able to get my starship to appear! But planets, floors, and characters are still funky. Does anyone have an idea how to solve this? Would be happy about any suggestions! Cheers! RepliesFriday 9 June 2017 at 0:51
Friday 9 June 2017 at 0:53
Friday 9 June 2017 at 11:09
Friday 9 June 2017 at 21:14
Saturday 10 June 2017 at 4:35
Saturday 10 June 2017 at 16:24
Wednesday 14 June 2017 at 13:46
Thursday 15 June 2017 at 23:33
Thursday 15 June 2017 at 23:40
Friday 16 June 2017 at 13:57
Friday 16 June 2017 at 19:09
Monday 19 June 2017 at 13:53
Saturday 24 June 2017 at 3:18
Saturday 24 June 2017 at 3:58
Saturday 24 June 2017 at 4:04
Saturday 24 June 2017 at 4:05
Saturday 24 June 2017 at 5:33
Saturday 24 June 2017 at 12:29
Saturday 24 June 2017 at 12:29
Saturday 24 June 2017 at 14:36
Saturday 24 June 2017 at 22:46
Sunday 25 June 2017 at 1:54
Sunday 25 June 2017 at 17:16
Sunday 25 June 2017 at 18:32
Sunday 25 June 2017 at 19:34
Sunday 25 June 2017 at 19:37
Monday 26 June 2017 at 4:06
Monday 26 June 2017 at 4:58
Monday 26 June 2017 at 11:11
Monday 26 June 2017 at 19:59
Wednesday 28 June 2017 at 13:14
Sunday 2 July 2017 at 11:11
Monday 3 July 2017 at 14:54
Tuesday 4 July 2017 at 17:14
Saturday 8 July 2017 at 6:46
Tuesday 18 July 2017 at 18:51
Wednesday 19 July 2017 at 22:45
|
Mystic Rose | Sunday 4 June 2017 at 19:47 |
Mystic Rose
|
MessageI'm running Zorin 12.1 32 bit on an old laptop with GL ver. 2.0. I added the Hkey GL max thing in registry. I've tried Wine ver 2.3 staging and 2.8 staging with Windows ver xp, 7, and 8. I can patch STO, but everytime I try to run I get the same message saying that my graphics card does not support DirectX 3d ver 10 or above. Anything else that I can try? (I'm new to Linux). Game was working fine on Windows Vista prior to STO change re DirectX. Thanks. RepliesSunday 4 June 2017 at 19:51
Sunday 4 June 2017 at 20:22
Monday 5 June 2017 at 23:58
Tuesday 6 June 2017 at 2:18
|
tsp | Monday 29 May 2017 at 17:30 |
tsp
|
MessageHi everyone, I've also been having issues trying to get Star Trek Online to run on my machine. I keep getting the error message saying 'Unsupported DirectX Version.' I'm running I believe Wine 2.6 staging. Wasn't able to get 2.8 staging recognized for some reason. I also have an iMac Retina 5K with a AMD Radeon R9 M395X graphics card. I'm running it as Windows 8. I also did the registry key thing and changed that to 30002. Could there be something else I'm missing? Thanks! RepliesTuesday 30 May 2017 at 18:36
Tuesday 30 May 2017 at 22:36
Tuesday 30 May 2017 at 22:37
Friday 2 June 2017 at 23:13
Monday 5 June 2017 at 23:50
Tuesday 6 June 2017 at 6:11
|
freightstopper | Friday 26 May 2017 at 12:19 |
freightstopper
|
MessageI also keep getting this 'videocard is not supported' message, used the install components section of the config menu to download d3dx11 and that didn't help. This is the last entry that comes up on the debugger before I hit the ok button on the warning message. Examining hoggs...fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:dxgi:DXGID3D10CreateDevice Ignoring flags 0x1. fixme:dxgi:dxgi_check_feature_level_support Ignoring adapter type. fixme:dxgi:dxgi_device_init Ignoring adapter type. fixme:d3d11:device_parent_create_swapchain_texture device_parent 0x1d530c, container_parent 0x1cdfe0, wined3d_desc 0x33cef0, texture flags 0, wined3d_texture 0x216290 partial stub! fixme:d3d11:device_parent_create_swapchain_texture Implement DXGI<->wined3d usage conversion. fixme:d3d:context_create OpenGL implementation does not support GL_PRIMITIVE_RESTART_FIXED_INDEX. fixme:iphlpapi:CancelIPChangeNotify (overlapped 0x3f6e47d8): stub RepliesFriday 26 May 2017 at 13:21
Saturday 27 May 2017 at 23:55
|
invoke | Thursday 25 May 2017 at 11:51 |
invoke
|
MessageThe latest version works really well. Remember to put in the registry key though. Replies |
asmo_dean | Monday 22 May 2017 at 22:44 |
asmo_dean
|
MessageHi All, I've installed STO on my mac but keep getting the message that my video card is no longer supported. My Mac has an Intel HD Graphics 5000 1536 MB video card... Is this really too old to be able to play STO or is there any possible way around this? I've tried a number of the updates published here but nothing seems to work. Thanks in advance. RepliesTuesday 23 May 2017 at 18:26
Tuesday 23 May 2017 at 18:28
Tuesday 23 May 2017 at 18:33
Tuesday 23 May 2017 at 18:34
Tuesday 23 May 2017 at 18:36
Tuesday 23 May 2017 at 18:37
Tuesday 23 May 2017 at 18:38
Tuesday 23 May 2017 at 18:44
Tuesday 23 May 2017 at 18:46
Tuesday 23 May 2017 at 19:03
Wednesday 24 May 2017 at 18:55
Wednesday 24 May 2017 at 18:57
Thursday 25 May 2017 at 11:51
Thursday 25 May 2017 at 19:03
Sunday 28 May 2017 at 19:03
|
Fotofobia | Thursday 18 May 2017 at 8:13 |
Fotofobia
|
WarningThis update has not been approved yet by the team. Differences@@ -37,7 +37,7 @@ POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "3b3454b554d68c13addb073af40fb631" -POL_Wine "star_trek_setup.exe" +POL_Wine "star_trek_online_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="2.3-staging" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" DOWNLOAD_URL="http://files.startrekonline.com/installer/star_trek_online_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win7" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "3b3454b554d68c13addb073af40fb631" POL_Wine "star_trek_online_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesThursday 18 May 2017 at 19:33
Friday 19 May 2017 at 19:23
Thursday 25 May 2017 at 11:49
Thursday 25 May 2017 at 18:51
Tuesday 30 May 2017 at 0:20
Tuesday 30 May 2017 at 17:58
Saturday 24 June 2017 at 1:03
Saturday 24 June 2017 at 1:09
|
Ronin DUSETTE | Wednesday 17 May 2017 at 23:57 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. Differences@@ -36,7 +36,7 @@ # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir -POL_Download "$DOWNLOAD_URL" "61a0c93c34686309b1c76c1d0dc82182" +POL_Download "$DOWNLOAD_URL" "3b3454b554d68c13addb073af40fb631" POL_Wine "star_trek_setup.exe" POL_Wine_WaitExit "$TITLE" New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="2.3-staging" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" DOWNLOAD_URL="http://files.startrekonline.com/installer/star_trek_online_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win7" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "3b3454b554d68c13addb073af40fb631" POL_Wine "star_trek_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesWednesday 17 May 2017 at 23:57
Thursday 18 May 2017 at 8:12
Thursday 18 May 2017 at 19:36
Wednesday 24 May 2017 at 20:44
Saturday 27 May 2017 at 18:08
|
Ronin DUSETTE | Wednesday 17 May 2017 at 22:50 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. Differences@@ -15,7 +15,7 @@ EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" -DOWNLOAD_URL="http://download.perfectworld.com/sto/star_trek_setup.exe" +DOWNLOAD_URL="http://files.startrekonline.com/installer/star_trek_online_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="2.3-staging" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" DOWNLOAD_URL="http://files.startrekonline.com/installer/star_trek_online_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win7" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "61a0c93c34686309b1c76c1d0dc82182" POL_Wine "star_trek_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
hhelle | Monday 15 May 2017 at 17:19 |
hhelle
|
Messageunable to run installer. RepliesTuesday 16 May 2017 at 23:30
Tuesday 16 May 2017 at 23:46
Wednesday 17 May 2017 at 0:15
Wednesday 17 May 2017 at 0:17
Wednesday 17 May 2017 at 20:45
Wednesday 17 May 2017 at 20:47
Wednesday 17 May 2017 at 22:49
Wednesday 17 May 2017 at 22:52
|
cybris | Thursday 11 May 2017 at 5:31 |
cybris
|
MessageI found the fix to bypass the unsupported directx error on Play on Mac you need to create a Registry Entry HKEY_CURRENT_USER--->Software--->Wine--->Direct3D Create a new DWORD named MaxVersionGL Value is 3002 Hexadecimal or 196610 Decimal
Replies |
strobsn | Monday 1 May 2017 at 11:46 |
strobsn
|
MessageHello, I'm new to PlayOnMac and I'd love to play Star Trek Online. Installation worked but I've a problem with directX. The STO Game Launcher starts. After pushing the start button there appears the message which says: "Not supported DirectX Version." It seens directX 10 is needed. I tried to install directX 10 in the PlayOnMac configuration menu. In Wine I've set the operation system to Win 10. I've installed dxdiag to test the settings. It's also tells me, that I have installed directX 9. I'm using Wine2.3-staging Does anyone have an idea how I can install directX10? Thank you very much for your help in advance! Cheers, Robert Replies |
xattr | Wednesday 26 April 2017 at 23:06 |
xattr
|
WarningThis update has not been approved yet by the team. Messagenot sure if this works. Im new to this. and sorry for spaming or so :( Differences@@ -15,7 +15,7 @@ EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" -DOWNLOAD_URL="http://download.perfectworld.com/sto/star_trek_setup.exe" +DOWNLOAD_URL="http://files.startrekonline.com/installer/star_trek_online_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" @@ -36,8 +36,8 @@ # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir -POL_Download "$DOWNLOAD_URL" "61a0c93c34686309b1c76c1d0dc82182" -POL_Wine "star_trek_setup.exe" +POL_Download "$DOWNLOAD_URL" "3b3454b554d68c13addb073af40fb631" +POL_Wine "star_trek_online_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="2.3-staging" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" DOWNLOAD_URL="http://files.startrekonline.com/installer/star_trek_online_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win7" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "3b3454b554d68c13addb073af40fb631" POL_Wine "star_trek_online_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
xattr | Wednesday 26 April 2017 at 23:01 |
xattr
|
WarningThis update has not been approved yet by the team. MessageThe DOWNLOAD_URL="http://download.perfectworld.com/sto/star_trek_setup.exe"
is outdated. That URL does not work anymore and returns "Bad Gateway".
The installer can be found at this URL now:
DOWNLOAD_URL="http://files.startrekonline.com/installer/star_trek_online_setup.exe"
Please update the installer download url in the POL installation wizard.
Differences@@ -15,7 +15,7 @@ EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" -DOWNLOAD_URL="http://download.perfectworld.com/sto/star_trek_setup.exe" +DOWNLOAD_URL="http://files.startrekonline.com/installer/star_trek_online_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="2.3-staging" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" DOWNLOAD_URL="http://files.startrekonline.com/installer/star_trek_online_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win7" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "61a0c93c34686309b1c76c1d0dc82182" POL_Wine "star_trek_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesThursday 27 April 2017 at 12:35
|
Aital | Wednesday 26 April 2017 at 2:11 |
Aital
|
MessageThe game is not loading for me after the new patch. It is either the patch or the fact I accidently uninstalled POL trying to install winestaging in normal wine and then reinstalled wine and POL. Is anyone else getting this.
It stops after the cryptic loading screen and on the STO loading screen after. It literally just hangs and never does anything. The debug just stops getting info. I let it sit a while and it didn't resolve itself. Any idea how to get around this? Replies |
titanhoss | Thursday 20 April 2017 at 23:47 |
titanhoss
|
Messageit hangs due to a mismatch between the installer exe and the one on the download site being different RepliesFriday 21 April 2017 at 16:48
Sunday 23 April 2017 at 18:31
Tuesday 25 April 2017 at 4:33
Tuesday 25 April 2017 at 4:58
Tuesday 25 April 2017 at 16:24
Tuesday 25 April 2017 at 16:29
Tuesday 25 April 2017 at 16:33
|
Ronin DUSETTE | Saturday 15 April 2017 at 3:28 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. Differences@@ -10,7 +10,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" -WINEVERSION="1.6.2" +WINEVERSION="2.3-staging" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" @@ -31,7 +31,7 @@ POL_Wine_PrefixCreate "$WINEVERSION" # Configuration -Set_OS "winxp" +Set_OS "win7" # Installation POL_System_TmpCreate "$PREFIX" New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="2.3-staging" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" DOWNLOAD_URL="http://download.perfectworld.com/sto/star_trek_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win7" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "61a0c93c34686309b1c76c1d0dc82182" POL_Wine "star_trek_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesSaturday 15 April 2017 at 3:29
Tuesday 6 June 2017 at 1:08
|
Mirmisquer | Wednesday 15 March 2017 at 21:27 |
Mirmisquer
|
MessageWhen will we be able to play Star trek online again using this program? How long will it take to make the software updates? Will we be able to play using PlayOnMac or no? RepliesSaturday 15 April 2017 at 2:26
Saturday 15 April 2017 at 2:31
Saturday 15 April 2017 at 2:31
Saturday 15 April 2017 at 3:24
Saturday 15 April 2017 at 3:31
Monday 17 April 2017 at 4:26
Monday 17 April 2017 at 4:28
Monday 17 April 2017 at 5:31
Monday 17 April 2017 at 5:59
Monday 17 April 2017 at 7:15
Monday 17 April 2017 at 8:46
Monday 17 April 2017 at 9:02
Monday 17 April 2017 at 9:16
Monday 17 April 2017 at 9:19
Monday 17 April 2017 at 9:48
Monday 17 April 2017 at 10:19
Monday 17 April 2017 at 10:34
Monday 17 April 2017 at 10:45
Monday 17 April 2017 at 10:46
Monday 17 April 2017 at 10:49
Monday 17 April 2017 at 10:51
Monday 17 April 2017 at 10:57
Monday 17 April 2017 at 10:59
Monday 17 April 2017 at 11:06
Monday 17 April 2017 at 11:09
Monday 17 April 2017 at 11:28
Monday 17 April 2017 at 12:04
Monday 17 April 2017 at 12:13
Monday 17 April 2017 at 12:18
Monday 17 April 2017 at 12:34
Monday 17 April 2017 at 12:40
Monday 17 April 2017 at 12:43
Monday 17 April 2017 at 13:07
Monday 17 April 2017 at 14:26
Monday 17 April 2017 at 16:17
Tuesday 18 April 2017 at 11:55
Wednesday 19 April 2017 at 6:57
|
asmo_dean | Thursday 2 March 2017 at 18:16 |
asmo_dean
|
MessageHi All, I'm just wondering if there is a fix for this now that STO doesn't support windows XP? Is there a way to update this so that POM uses windows7 or 10 instead of XP? Thanks in advance! RepliesSaturday 4 March 2017 at 15:45
|
STO Fan2.0 | Monday 6 February 2017 at 9:58 |
STO Fan2.0
|
MessageProgramm does not work because no DirectX 10 support. Do you have any hints for me? Error message: Support for the Video Card you are using will end on March 1, 2017. You will be unable to play using this Video Card after support ends. Please upgrade your Video Card to one that supports DirectX Hardware Feature Level 10 or higher; See your Video Card manufacture's documentation for information on DirektX Hardware Feature Level support.
My Hardware: Prozessor: AMD A8-6410 APU with AMD Radeon Grafik: Gallium 0.4 on AMD MULLINS (DRM 2.43.0, LLVM 3.8.0) 64 Bit Ubuntu 16.04 LTS
Replies |
timholtorf | Sunday 29 January 2017 at 15:51 |
timholtorf
|
MessageI'm having issues with STO where the client will run fine but when I try to load a zone for the fourth or fifth time, it locks up and I have to force it to close. Replies |
habano44 | Saturday 31 December 2016 at 17:53 |
habano44
|
MessageHi, I am using POM the first time so please excuse any missing knowledge. I installed POM (Version 4.2.10) and then Star trek online directly with the POM Menu without any problems. Then, after the launcher patched the game, i used the start button, thats when a window with a message pops up telling me that my DirectX Version is not suported and that my graphic card wont be supported after the 01.03.2017. The Game starts after i hit 'OK' but the grafics are very strange and some things arent displayed corectly. I am trying to play the game on my MacBook Air 2015 / 2,2 GHz I7 / Intel HD 6000 1536MB / 8GB 1600 DDR3 I tried to install DirecX using the POM Menu without succes, i tried diferent Wine Version including the 1.6.2. Does anyone have a sugestion what i can do to fix this. Thanks in advance RepliesWednesday 18 January 2017 at 17:56
|
titanhoss | Monday 28 November 2016 at 10:35 |
titanhoss
|
Messageeverything seems to work but no sound running linux mint 18 KDE on an acer aspire e15 RepliesMonday 28 November 2016 at 10:47
|
Ronin DUSETTE | Thursday 3 November 2016 at 1:06 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. Differences@@ -10,7 +10,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" -WINEVERSION="1.9.10-staging" +WINEVERSION="1.6.2" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="1.6.2" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" DOWNLOAD_URL="http://download.perfectworld.com/sto/star_trek_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "61a0c93c34686309b1c76c1d0dc82182" POL_Wine "star_trek_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesThursday 3 November 2016 at 1:08
Saturday 4 February 2017 at 7:03
Saturday 4 February 2017 at 7:04
|
Captainpicard30 | Saturday 29 October 2016 at 1:45 |
Captainpicard30
|
MessageEver since the software patch done by Arc, the STO will launch into the Cryptic loading screen, and then crash after a few seconds. RepliesSaturday 29 October 2016 at 1:52
Monday 31 October 2016 at 8:27
|
Ronin DUSETTE | Friday 30 September 2016 at 19:27 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. Differences@@ -10,7 +10,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" -WINEVERSION="1.7.40" +WINEVERSION="1.9.10-staging" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="1.9.10-staging" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" DOWNLOAD_URL="http://download.perfectworld.com/sto/star_trek_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "61a0c93c34686309b1c76c1d0dc82182" POL_Wine "star_trek_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesThursday 27 October 2016 at 5:27
Thursday 27 October 2016 at 14:18
Friday 28 October 2016 at 3:29
Sunday 30 October 2016 at 4:04
Sunday 30 October 2016 at 17:11
Sunday 30 October 2016 at 17:24
Sunday 30 October 2016 at 17:24
Monday 31 October 2016 at 8:28
Monday 31 October 2016 at 8:30
Thursday 3 November 2016 at 0:49
Thursday 3 November 2016 at 2:32
Thursday 3 November 2016 at 2:32
Thursday 3 November 2016 at 2:40
Thursday 3 November 2016 at 2:43
Thursday 3 November 2016 at 2:49
Thursday 3 November 2016 at 3:52
Friday 4 November 2016 at 2:22
Friday 4 November 2016 at 2:33
Tuesday 8 November 2016 at 3:27
Tuesday 8 November 2016 at 4:56
Tuesday 8 November 2016 at 5:01
Tuesday 8 November 2016 at 14:59
Tuesday 8 November 2016 at 16:34
Wednesday 9 November 2016 at 5:16
Wednesday 9 November 2016 at 5:16
Thursday 10 November 2016 at 21:03
Friday 11 November 2016 at 1:20
Friday 11 November 2016 at 15:40
Wednesday 16 November 2016 at 4:07
Wednesday 16 November 2016 at 4:11
Wednesday 16 November 2016 at 4:12
Wednesday 16 November 2016 at 14:31
Monday 21 November 2016 at 6:13
Monday 21 November 2016 at 6:18
Monday 21 November 2016 at 6:28
Monday 21 November 2016 at 17:06
Wednesday 18 January 2017 at 17:11
|
Josef615 | Monday 7 March 2016 at 21:46 |
Josef615
|
MessageIs there any word on a new installer? Im trying to run it through Steam, but it's insanely slow, even with graphics and rendering at minimum RepliesSunday 22 May 2016 at 20:48
Monday 23 May 2016 at 0:26
|
Ronin DUSETTE | Monday 27 July 2015 at 17:12 |
Ronin DUSETTE
|
MessageSo this script is having the same issue as Neverwinter Online; the URL for the client download is no longer available. We just need a new link for it, but if we cannot find it, installing Steam and installing NWO and STO through there works just fine. RepliesTuesday 28 July 2015 at 16:07
Tuesday 28 July 2015 at 16:33
Tuesday 28 July 2015 at 16:49
|
Ronin DUSETTE | Wednesday 22 April 2015 at 8:32 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. MessageAdding tmpdir stuff in here. Forgot to add it in initial commit. Differences@@ -34,6 +34,8 @@ Set_OS "winxp" # Installation +POL_System_TmpCreate "$PREFIX" +cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "61a0c93c34686309b1c76c1d0dc82182" POL_Wine "star_trek_setup.exe" POL_Wine_WaitExit "$TITLE" @@ -41,6 +43,9 @@ # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" +# Cleanup +POL_System_TmpDelete + POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="1.7.40" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" DOWNLOAD_URL="http://download.perfectworld.com/sto/star_trek_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "61a0c93c34686309b1c76c1d0dc82182" POL_Wine "star_trek_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesSunday 21 June 2015 at 8:11
Sunday 21 June 2015 at 8:15
Tuesday 1 March 2016 at 22:22
|
Ronin DUSETTE | Wednesday 22 April 2015 at 7:48 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. MessageRevised script to remove need for Steam or Arc as content delivery systems, as it now downloads directly from their servers. Also updated Wine version used. Differences@@ -1,21 +1,21 @@ #!/bin/bash -# Date : (2015-04-02) +# Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 -# PlayOnLinux: 4.2.6 +# PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" -WINEVERSION="1.7.39" +WINEVERSION="1.7.40" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" -STEAM_ID="9900" AUTHOR="RoninDusette" +DOWNLOAD_URL="http://download.perfectworld.com/sto/star_trek_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" @@ -33,19 +33,13 @@ # Configuration Set_OS "winxp" -POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE will be installed via Steam. After Steam is installed, uncheck Run Steam, click Finish, and Steam will restart. Sign in and install $TITLE.')" "$TITLE" - -#Dependencies -POL_Call POL_Install_steam -POL_Call POL_Install_steam_flags "$STEAM_ID" - # Installation -cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" -POL_Wine "steam.exe" steam://install/$STEAM_ID +POL_Download "$DOWNLOAD_URL" "61a0c93c34686309b1c76c1d0dc82182" +POL_Wine "star_trek_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut -POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID" +POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="1.7.40" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" DOWNLOAD_URL="http://download.perfectworld.com/sto/star_trek_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" # Installation POL_Download "$DOWNLOAD_URL" "61a0c93c34686309b1c76c1d0dc82182" POL_Wine "star_trek_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Star\ Trek\ Online.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Ronin DUSETTE | Wednesday 22 April 2015 at 7:20 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. Messageremoving start /unix thing. Differences@@ -41,7 +41,7 @@ # Installation cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" -POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID +POL_Wine "steam.exe" steam://install/$STEAM_ID POL_Wine_WaitExit "$TITLE" # Create Shortcut New source code#!/bin/bash # Date : (2015-04-02) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.6 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="1.7.39" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" STEAM_ID="9900" AUTHOR="RoninDusette" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE will be installed via Steam. After Steam is installed, uncheck Run Steam, click Finish, and Steam will restart. Sign in and install $TITLE.')" "$TITLE" #Dependencies POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" # Installation cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine "steam.exe" steam://install/$STEAM_ID POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesWednesday 26 October 2016 at 1:16
|
Ronin DUSETTE | Friday 3 April 2015 at 6:25 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. MessageMade STEAM_ID variable. Differences@@ -14,6 +14,7 @@ TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" +STEAM_ID="9900" AUTHOR="RoninDusette" #Initialization @@ -36,15 +37,15 @@ #Dependencies POL_Call POL_Install_steam -POL_Call POL_Install_steam_flags "9900" +POL_Call POL_Install_steam_flags "$STEAM_ID" # Installation cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" -POL_Wine start /unix "steam.exe" steam://install/9900 +POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID POL_Wine_WaitExit "$TITLE" # Create Shortcut -POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/9900" +POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" New source code#!/bin/bash # Date : (2015-04-02) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.6 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="1.7.39" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" STEAM_ID="9900" AUTHOR="RoninDusette" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE will be installed via Steam. After Steam is installed, uncheck Run Steam, click Finish, and Steam will restart. Sign in and install $TITLE.')" "$TITLE" #Dependencies POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" # Installation cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Ronin DUSETTE | Friday 3 April 2015 at 4:10 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. MessageInitial commit. Differences@@ -0,0 +1,52 @@ +#!/bin/bash +# Date : (2015-04-02) +# Distribution used to test : Kubuntu 14.04 LTS 64-bit +# Author : RoninDusette +# Licence : GPLv3 +# PlayOnLinux: 4.2.6 + + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="StarTrekOnline" +WINEVERSION="1.7.39" +TITLE="Star Trek Online" +EDITOR="Perfect World Entertainment Inc." +GAME_URL="http://www.arcgames.com/en/games/star-trek-online" +AUTHOR="RoninDusette" + +#Initialization +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" +POL_SetupWindow_Init + +POL_Debug_Init + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Create Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Configuration +Set_OS "winxp" + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE will be installed via Steam. After Steam is installed, uncheck Run Steam, click Finish, and Steam will restart. Sign in and install $TITLE.')" "$TITLE" + +#Dependencies +POL_Call POL_Install_steam +POL_Call POL_Install_steam_flags "9900" + +# Installation +cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" +POL_Wine start /unix "steam.exe" steam://install/9900 +POL_Wine_WaitExit "$TITLE" + +# Create Shortcut +POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/9900" + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-04-02) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.6 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="StarTrekOnline" WINEVERSION="1.7.39" TITLE="Star Trek Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/star-trek-online" AUTHOR="RoninDusette" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE will be installed via Steam. After Steam is installed, uncheck Run Steam, click Finish, and Steam will restart. Sign in and install $TITLE.')" "$TITLE" #Dependencies POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "9900" # Installation cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/9900 POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/9900" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesFriday 3 April 2015 at 4:54
Sunday 5 April 2015 at 16:13
Sunday 5 April 2015 at 18:25
Thursday 28 May 2015 at 17:30
Thursday 28 May 2015 at 17:34
Thursday 28 May 2015 at 18:12
Thursday 28 May 2015 at 18:16
Thursday 28 May 2015 at 18:35
Thursday 28 May 2015 at 18:36
Friday 19 January 2018 at 15:56
Friday 19 January 2018 at 15:58
Friday 19 January 2018 at 17:26
Friday 19 January 2018 at 18:47
Saturday 20 January 2018 at 2:34
Saturday 20 January 2018 at 16:11
|
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com