Star Trek Online
Informatie
Creator | Bericht |
---|---|
Ronin DUSETTE
![]()
|
InformationThis installer has been approved by the team. InformatiePlatforms: Feedbacks11 27 OmschrijvingStar Trek Online ('STO') is a MMORPG (first release: 2010). Note: Arc and Steam clients are not required. SchermafdrukkenBroncode#!/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 | Bericht |
RogerWilco | Dinsdag 5 Juli 2022 om 17:41 |
RogerWilco
![]()
|
BerichtI 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. AntwoordenDinsdag 5 Juli 2022 om 17:42
Dinsdag 5 Juli 2022 om 18:00
Dinsdag 5 Juli 2022 om 18:41
Dinsdag 5 Juli 2022 om 19:44
Dinsdag 5 Juli 2022 om 20:18
Dinsdag 5 Juli 2022 om 20:20
Aangepast door RogerWilco |
Newsdude | Vrijdag 10 December 2021 om 3:11 |
Newsdude
![]()
|
BerichtI 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.
AntwoordenAangepast door Newsdude |
Yaotl | Vrijdag 16 Juli 2021 om 22:24 |
Yaotl
![]()
|
InformationThis update has been approved by the team. Berichtit 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 Antwoorden |
Yaotl | Zaterdag 10 Juli 2021 om 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 AntwoordenMaandag 12 Juli 2021 om 21:26
|
LBGK | Zaterdag 10 Juli 2021 om 2:17 |
LBGK
![]()
|
|
Yaotl | Dinsdag 15 Juni\ 2021 om 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 AntwoordenWoensdag 16 Juni\ 2021 om 6:27
|
Yaotl | Donderdag 6 Mei 2021 om 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 AntwoordenZaterdag 8 Mei 2021 om 10:12
|
Findell | Maandag 18 Mei 2020 om 9:36 |
Findell
![]()
|
Bericht0009: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.
AntwoordenMaandag 18 Mei 2020 om 10:18
Maandag 22 Februari 2021 om 12:38
Maandag 22 Februari 2021 om 12:39
|
Dadu042 | Donderdag 9 Januari 2020 om 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 Antwoorden |
Dadu042 | Woensdag 4 December 2019 om 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 Antwoorden |
Yaotl | Maandag 8 April 2019 om 15:03 |
Yaotl
![]()
|
WarningThis update has not been approved yet by the team. BerichtDifferences@@ -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 AntwoordenVrijdag 15 November 2019 om 12:45
Aangepast door Yaotl |
Yaotl | Maandag 11 Februari 2019 om 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 AntwoordenZondag 24 Februari 2019 om 19:05
Woensdag 27 Februari 2019 om 20:12
Zondag 17 Maart 2019 om 3:24
Zondag 17 Maart 2019 om 16:49
Zondag 17 Maart 2019 om 16:57
Donderdag 4 April 2019 om 6:07
Aangepast door Yaotl |
Glowen88 | Zondag 10 Februari 2019 om 12:37 |
Glowen88
![]()
|
Bericht
AntwoordenZondag 10 Februari 2019 om 12:47
Aangepast door Glowen88 |
man-max | Zaterdag 2 Februari 2019 om 22:59 |
man-max
![]()
|
Berichthello, 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? AntwoordenZaterdag 2 Februari 2019 om 23:02
Zaterdag 2 Februari 2019 om 23:03
Maandag 4 Februari 2019 om 16:16
Woensdag 20 Februari 2019 om 6:02
Zondag 24 Februari 2019 om 18:45
Zondag 24 Februari 2019 om 18:52
Dinsdag 26 Februari 2019 om 5:30
|
Yaotl | Woensdag 23 Januari 2019 om 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 AntwoordenMaandag 28 Januari 2019 om 9:15
Woensdag 6 Februari 2019 om 3:37
|
anyb | Donderdag 17 Januari 2019 om 16:50 |
anyb
![]()
|
BerichtI 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? AntwoordenVrijdag 18 Januari 2019 om 22:41
|
jbieler864 | Woensdag 21 November 2018 om 2:00 |
jbieler864
![]()
|
BerichtOkay, 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! AntwoordenWoensdag 21 November 2018 om 2:12
Woensdag 21 November 2018 om 2:14
Zaterdag 22 December 2018 om 3:02
|
tomroseuk | Zondag 18 November 2018 om 21:33 |
tomroseuk
![]()
|
BerichtI get this error when trying to install both star trek and what I think is the 3.19 update. any help appreciated. AntwoordenZondag 18 November 2018 om 21:34
Zondag 18 November 2018 om 21:34
Maandag 19 November 2018 om 2:07
Maandag 19 November 2018 om 11:52
Dinsdag 20 November 2018 om 4:36
|
LinuxScripter | Vrijdag 2 November 2018 om 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 AntwoordenVrijdag 2 November 2018 om 15:09
|
LinuxScripter | Vrijdag 2 November 2018 om 13:46 |
LinuxScripter
![]()
|
BerichtI 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) AntwoordenVrijdag 2 November 2018 om 14:03
Vrijdag 2 November 2018 om 20:17
Dinsdag 6 November 2018 om 0:50
Dinsdag 6 November 2018 om 1:00
|
newfontherock | Maandag 29 October 2018 om 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 AntwoordenMaandag 29 October 2018 om 17:24
Maandag 29 October 2018 om 17:26
Maandag 29 October 2018 om 18:02
|
jbieler864 | Dinsdag 9 October 2018 om 20:42 |
jbieler864
![]()
|
BerichtMac 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. AntwoordenDonderdag 11 October 2018 om 18:43
Donderdag 11 October 2018 om 19:20
Donderdag 11 October 2018 om 23:04
|
Yaotl | Dinsdag 24 Juli 2018 om 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 AntwoordenDonderdag 16 Augustus 2018 om 23:36
Vrijdag 17 Augustus 2018 om 0:03
Zaterdag 1 September 2018 om 10:19
Zaterdag 1 September 2018 om 16:45
Dinsdag 9 October 2018 om 22:27
Dinsdag 9 October 2018 om 22:28
Donderdag 25 October 2018 om 6:26
|
ChanEnChun | Zaterdag 24 Maart 2018 om 5:13 |
ChanEnChun
![]()
|
BerichtHey 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. AntwoordenMaandag 9 April 2018 om 1:23
Maandag 9 April 2018 om 1:23
Maandag 9 April 2018 om 1:24
Maandag 9 April 2018 om 2:31
Vrijdag 4 Mei 2018 om 19:45
Vrijdag 25 Mei 2018 om 22:42
Maandag 4 Juni\ 2018 om 5:53
Woensdag 20 Juni\ 2018 om 7:08
Donderdag 12 Juli 2018 om 16:48
Donderdag 12 Juli 2018 om 16:59
Zaterdag 1 September 2018 om 10:20
Zaterdag 1 September 2018 om 16:45
|
Radmon25 | Maandag 12 Februari 2018 om 12:38 |
Radmon25
![]()
|
BerichtAs 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. AntwoordenVrijdag 16 Februari 2018 om 19:12
Vrijdag 16 Februari 2018 om 19:59
Vrijdag 16 Februari 2018 om 23:49
Maandag 19 Maart 2018 om 12:55
Maandag 19 Maart 2018 om 15:22
Dinsdag 20 Maart 2018 om 12:19
Dinsdag 20 Maart 2018 om 15:33
Dinsdag 20 Maart 2018 om 15:33
Woensdag 21 Maart 2018 om 0:17
|
ferretman | Woensdag 7 Februari 2018 om 19:44 |
ferretman
![]()
|
BerichtSo 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. AntwoordenMaandag 12 Februari 2018 om 15:00
|
KODES | Zaterdag 20 Januari 2018 om 20:43 |
KODES
![]()
|
BerichtSo 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.
Antwoorden |
Ronin DUSETTE | Dinsdag 16 Januari 2018 om 22:32 |
Ronin DUSETTE
![]()
|
WarningThis update has not been approved yet by the team. BerichtUpdating 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 AntwoordenZaterdag 20 Januari 2018 om 14:58
Zaterdag 20 Januari 2018 om 23:08
Dinsdag 20 Maart 2018 om 14:00
|
Zethra | Dinsdag 16 Januari 2018 om 21:23 |
Zethra
![]()
|
BerichtGood evening, I would like to test Star Trek Online on ubuntu 16.04. Could you help me, please ? GTX750Ti 8go RAM AntwoordenDinsdag 16 Januari 2018 om 21:56
Dinsdag 16 Januari 2018 om 22:31
Dinsdag 16 Januari 2018 om 22:33
Woensdag 17 Januari 2018 om 10:33
|
stevenbinion | Dinsdag 16 Januari 2018 om 17:13 |
stevenbinion
![]()
|
BerichtI 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 Antwoorden |
Ubunter | Maandag 1 Januari 2018 om 17:01 |
Ubunter
![]()
|
BerichtHi, 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) AntwoordenMaandag 1 Januari 2018 om 17:03
|
Aital | Vrijdag 22 December 2017 om 8:27 |
Aital
![]()
|
BerichtI'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. Antwoorden |
masterdavid98 | Vrijdag 27 October 2017 om 17:39 |
masterdavid98
![]()
|
BerichtHowdy 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... AntwoordenVrijdag 19 Januari 2018 om 19:57
|
Aital | Dinsdag 17 October 2017 om 20:26 |
Aital
![]()
|
BerichtI 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. Antwoorden |
rcsulliv | Dinsdag 25 Juli 2017 om 22:36 |
rcsulliv
![]()
|
BerichtOk, 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? AntwoordenWoensdag 26 Juli 2017 om 9:15
Woensdag 26 Juli 2017 om 15:11
Woensdag 26 Juli 2017 om 21:43
Woensdag 26 Juli 2017 om 22:29
Woensdag 26 Juli 2017 om 22:54
Zondag 30 Juli 2017 om 1:18
Donderdag 3 Augustus 2017 om 6:40
Maandag 7 Augustus 2017 om 7:03
Zaterdag 23 September 2017 om 21:23
Zondag 24 September 2017 om 8:25
|
rcsulliv | Maandag 24 Juli 2017 om 23:54 |
rcsulliv
![]()
|
BerichtI 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.
Antwoorden |
rcsulliv | Zondag 23 Juli 2017 om 5:14 |
rcsulliv
![]()
|
BerichtHi, 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!
AntwoordenZondag 23 Juli 2017 om 13:23
Zondag 23 Juli 2017 om 16:15
Zondag 23 Juli 2017 om 19:40
Maandag 24 Juli 2017 om 3:51
Maandag 24 Juli 2017 om 6:19
Maandag 24 Juli 2017 om 12:04
Maandag 24 Juli 2017 om 12:05
Maandag 24 Juli 2017 om 20:36
Maandag 24 Juli 2017 om 21:47
Maandag 24 Juli 2017 om 21:50
Maandag 24 Juli 2017 om 22:10
Maandag 24 Juli 2017 om 22:21
Dinsdag 25 Juli 2017 om 3:34
Dinsdag 25 Juli 2017 om 17:45
Vrijdag 11 Augustus 2017 om 22:44
Vrijdag 11 Augustus 2017 om 22:47
Vrijdag 11 Augustus 2017 om 23:08
Zaterdag 12 Augustus 2017 om 17:27
Zaterdag 12 Augustus 2017 om 17:29
Zaterdag 12 Augustus 2017 om 19:03
Zaterdag 12 Augustus 2017 om 21:10
Zaterdag 12 Augustus 2017 om 22:49
Maandag 14 Augustus 2017 om 13:07
|
SToGamer | Dinsdag 18 Juli 2017 om 18:54 |
SToGamer
![]()
|
Berichtso... 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? AntwoordenDinsdag 18 Juli 2017 om 19:26
Woensdag 19 Juli 2017 om 0:44
Woensdag 19 Juli 2017 om 7:13
Woensdag 19 Juli 2017 om 7:14
Woensdag 19 Juli 2017 om 7:27
Donderdag 20 Juli 2017 om 23:46
Vrijdag 21 Juli 2017 om 2:54
Vrijdag 21 Juli 2017 om 2:55
Vrijdag 21 Juli 2017 om 12:30
Vrijdag 21 Juli 2017 om 12:31
Vrijdag 21 Juli 2017 om 12:59
Vrijdag 21 Juli 2017 om 13:00
Vrijdag 21 Juli 2017 om 13:01
Vrijdag 21 Juli 2017 om 15:25
Vrijdag 21 Juli 2017 om 18:54
Vrijdag 21 Juli 2017 om 18:55
Vrijdag 21 Juli 2017 om 18:57
Zaterdag 22 Juli 2017 om 13:21
Zaterdag 22 Juli 2017 om 16:56
Zaterdag 22 Juli 2017 om 16:58
Zaterdag 22 Juli 2017 om 16:59
|
Crosis | Dinsdag 11 Juli 2017 om 21:35 |
Crosis
![]()
|
BerichtHey 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? AntwoordenDinsdag 11 Juli 2017 om 21:41
|
Akamia | Woensdag 5 Juli 2017 om 0:24 |
Akamia
![]()
|
BerichtI 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? AntwoordenDonderdag 6 Juli 2017 om 18:25
Donderdag 6 Juli 2017 om 18:29
Zondag 9 Juli 2017 om 15:01
Zondag 9 Juli 2017 om 15:01
Zondag 9 Juli 2017 om 15:01
Zondag 9 Juli 2017 om 15:04
Zondag 9 Juli 2017 om 18:24
Maandag 10 Juli 2017 om 5:40
Maandag 10 Juli 2017 om 19:57
|
Aital | Zaterdag 1 Juli 2017 om 23:11 |
Aital
![]()
|
BerichtJust 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. Antwoorden |
Aital | Zaterdag 24 Juni\ 2017 om 21:01 |
Aital
![]()
|
BerichtBug? 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. Antwoorden |
dmat | Woensdag 7 Juni\ 2017 om 17:17 |
dmat
![]()
|
Bericht
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! AntwoordenVrijdag 9 Juni\ 2017 om 0:51
Vrijdag 9 Juni\ 2017 om 0:53
Vrijdag 9 Juni\ 2017 om 11:09
Vrijdag 9 Juni\ 2017 om 21:14
Zaterdag 10 Juni\ 2017 om 4:35
Zaterdag 10 Juni\ 2017 om 16:24
Woensdag 14 Juni\ 2017 om 13:46
Donderdag 15 Juni\ 2017 om 23:33
Donderdag 15 Juni\ 2017 om 23:40
Vrijdag 16 Juni\ 2017 om 13:57
Vrijdag 16 Juni\ 2017 om 19:09
Maandag 19 Juni\ 2017 om 13:53
Zaterdag 24 Juni\ 2017 om 3:18
Zaterdag 24 Juni\ 2017 om 3:58
Zaterdag 24 Juni\ 2017 om 4:04
Zaterdag 24 Juni\ 2017 om 4:05
Zaterdag 24 Juni\ 2017 om 5:33
Zaterdag 24 Juni\ 2017 om 12:29
Zaterdag 24 Juni\ 2017 om 12:29
Zaterdag 24 Juni\ 2017 om 14:36
Zaterdag 24 Juni\ 2017 om 22:46
Zondag 25 Juni\ 2017 om 1:54
Zondag 25 Juni\ 2017 om 17:16
Zondag 25 Juni\ 2017 om 18:32
Zondag 25 Juni\ 2017 om 19:34
Zondag 25 Juni\ 2017 om 19:37
Maandag 26 Juni\ 2017 om 4:06
Maandag 26 Juni\ 2017 om 4:58
Maandag 26 Juni\ 2017 om 11:11
Maandag 26 Juni\ 2017 om 19:59
Woensdag 28 Juni\ 2017 om 13:14
Zondag 2 Juli 2017 om 11:11
Maandag 3 Juli 2017 om 14:54
Dinsdag 4 Juli 2017 om 17:14
Zaterdag 8 Juli 2017 om 6:46
Dinsdag 18 Juli 2017 om 18:51
Woensdag 19 Juli 2017 om 22:45
|
Mystic Rose | Zondag 4 Juni\ 2017 om 19:47 |
Mystic Rose
![]()
|
BerichtI'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. AntwoordenZondag 4 Juni\ 2017 om 19:51
Zondag 4 Juni\ 2017 om 20:22
Maandag 5 Juni\ 2017 om 23:58
Dinsdag 6 Juni\ 2017 om 2:18
|
tsp | Maandag 29 Mei 2017 om 17:30 |
tsp
![]()
|
BerichtHi 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! AntwoordenDinsdag 30 Mei 2017 om 18:36
Dinsdag 30 Mei 2017 om 22:36
Dinsdag 30 Mei 2017 om 22:37
Vrijdag 2 Juni\ 2017 om 23:13
Maandag 5 Juni\ 2017 om 23:50
Dinsdag 6 Juni\ 2017 om 6:11
|
freightstopper | Vrijdag 26 Mei 2017 om 12:19 |
freightstopper
![]()
|
BerichtI 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 AntwoordenVrijdag 26 Mei 2017 om 13:21
Zaterdag 27 Mei 2017 om 23:55
|
invoke | Donderdag 25 Mei 2017 om 11:51 |
invoke
![]()
|
BerichtThe latest version works really well. Remember to put in the registry key though. Antwoorden |
asmo_dean | Maandag 22 Mei 2017 om 22:44 |
asmo_dean
![]()
|
BerichtHi 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. AntwoordenDinsdag 23 Mei 2017 om 18:26
Dinsdag 23 Mei 2017 om 18:28
Dinsdag 23 Mei 2017 om 18:33
Dinsdag 23 Mei 2017 om 18:34
Dinsdag 23 Mei 2017 om 18:36
Dinsdag 23 Mei 2017 om 18:37
Dinsdag 23 Mei 2017 om 18:38
Dinsdag 23 Mei 2017 om 18:44
Dinsdag 23 Mei 2017 om 18:46
Dinsdag 23 Mei 2017 om 19:03
Woensdag 24 Mei 2017 om 18:55
Woensdag 24 Mei 2017 om 18:57
Donderdag 25 Mei 2017 om 11:51
Donderdag 25 Mei 2017 om 19:03
Zondag 28 Mei 2017 om 19:03
|
Fotofobia | Donderdag 18 Mei 2017 om 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 AntwoordenDonderdag 18 Mei 2017 om 19:33
Vrijdag 19 Mei 2017 om 19:23
Donderdag 25 Mei 2017 om 11:49
Donderdag 25 Mei 2017 om 18:51
Dinsdag 30 Mei 2017 om 0:20
Dinsdag 30 Mei 2017 om 17:58
Zaterdag 24 Juni\ 2017 om 1:03
Zaterdag 24 Juni\ 2017 om 1:09
|
Ronin DUSETTE | Woensdag 17 Mei 2017 om 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 AntwoordenWoensdag 17 Mei 2017 om 23:57
Donderdag 18 Mei 2017 om 8:12
Donderdag 18 Mei 2017 om 19:36
Woensdag 24 Mei 2017 om 20:44
Zaterdag 27 Mei 2017 om 18:08
|
Ronin DUSETTE | Woensdag 17 Mei 2017 om 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 Antwoorden |
hhelle | Maandag 15 Mei 2017 om 17:19 |
hhelle
![]()
|
Berichtunable to run installer. AntwoordenDinsdag 16 Mei 2017 om 23:30
Dinsdag 16 Mei 2017 om 23:46
Woensdag 17 Mei 2017 om 0:15
Woensdag 17 Mei 2017 om 0:17
Woensdag 17 Mei 2017 om 20:45
Woensdag 17 Mei 2017 om 20:47
Woensdag 17 Mei 2017 om 22:49
Woensdag 17 Mei 2017 om 22:52
|
cybris | Donderdag 11 Mei 2017 om 5:31 |
cybris
![]()
|
BerichtI 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
Antwoorden |
strobsn | Maandag 1 Mei 2017 om 11:46 |
strobsn
![]()
|
BerichtHello, 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 Antwoorden |
xattr | Woensdag 26 April 2017 om 23:06 |
xattr
![]()
|
WarningThis update has not been approved yet by the team. Berichtnot 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 Antwoorden |
xattr | Woensdag 26 April 2017 om 23:01 |
xattr
![]()
|
WarningThis update has not been approved yet by the team. BerichtThe 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 AntwoordenDonderdag 27 April 2017 om 12:35
|
Aital | Woensdag 26 April 2017 om 2:11 |
Aital
![]()
|
BerichtThe 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? Antwoorden |
titanhoss | Donderdag 20 April 2017 om 23:47 |
titanhoss
![]()
|
Berichtit hangs due to a mismatch between the installer exe and the one on the download site being different AntwoordenVrijdag 21 April 2017 om 16:48
Zondag 23 April 2017 om 18:31
Dinsdag 25 April 2017 om 4:33
Dinsdag 25 April 2017 om 4:58
Dinsdag 25 April 2017 om 16:24
Dinsdag 25 April 2017 om 16:29
Dinsdag 25 April 2017 om 16:33
|
Ronin DUSETTE | Zaterdag 15 April 2017 om 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 AntwoordenZaterdag 15 April 2017 om 3:29
Dinsdag 6 Juni\ 2017 om 1:08
|
Mirmisquer | Woensdag 15 Maart 2017 om 21:27 |
Mirmisquer
![]()
|
BerichtWhen 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? AntwoordenZaterdag 15 April 2017 om 2:26
Zaterdag 15 April 2017 om 2:31
Zaterdag 15 April 2017 om 2:31
Zaterdag 15 April 2017 om 3:24
Zaterdag 15 April 2017 om 3:31
Maandag 17 April 2017 om 4:26
Maandag 17 April 2017 om 4:28
Maandag 17 April 2017 om 5:31
Maandag 17 April 2017 om 5:59
Maandag 17 April 2017 om 7:15
Maandag 17 April 2017 om 8:46
Maandag 17 April 2017 om 9:02
Maandag 17 April 2017 om 9:16
Maandag 17 April 2017 om 9:19
Maandag 17 April 2017 om 9:48
Maandag 17 April 2017 om 10:19
Maandag 17 April 2017 om 10:34
Maandag 17 April 2017 om 10:45
Maandag 17 April 2017 om 10:46
Maandag 17 April 2017 om 10:49
Maandag 17 April 2017 om 10:51
Maandag 17 April 2017 om 10:57
Maandag 17 April 2017 om 10:59
Maandag 17 April 2017 om 11:06
Maandag 17 April 2017 om 11:09
Maandag 17 April 2017 om 11:28
Maandag 17 April 2017 om 12:04
Maandag 17 April 2017 om 12:13
Maandag 17 April 2017 om 12:18
Maandag 17 April 2017 om 12:34
Maandag 17 April 2017 om 12:40
Maandag 17 April 2017 om 12:43
Maandag 17 April 2017 om 13:07
Maandag 17 April 2017 om 14:26
Maandag 17 April 2017 om 16:17
Dinsdag 18 April 2017 om 11:55
Woensdag 19 April 2017 om 6:57
|
asmo_dean | Donderdag 2 Maart 2017 om 18:16 |
asmo_dean
![]()
|
BerichtHi 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! AntwoordenZaterdag 4 Maart 2017 om 15:45
|
STO Fan2.0 | Maandag 6 Februari 2017 om 9:58 |
STO Fan2.0
![]()
|
BerichtProgramm 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
Antwoorden |
timholtorf | Zondag 29 Januari 2017 om 15:51 |
timholtorf
![]()
|
BerichtI'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. Antwoorden |
habano44 | Zaterdag 31 December 2016 om 17:53 |
habano44
![]()
|
BerichtHi, 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 AntwoordenWoensdag 18 Januari 2017 om 17:56
|
titanhoss | Maandag 28 November 2016 om 10:35 |
titanhoss
![]()
|
Berichteverything seems to work but no sound running linux mint 18 KDE on an acer aspire e15 AntwoordenMaandag 28 November 2016 om 10:47
|
Ronin DUSETTE | Donderdag 3 November 2016 om 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 AntwoordenDonderdag 3 November 2016 om 1:08
Zaterdag 4 Februari 2017 om 7:03
Zaterdag 4 Februari 2017 om 7:04
|
Captainpicard30 | Zaterdag 29 October 2016 om 1:45 |
Captainpicard30
![]()
|
BerichtEver since the software patch done by Arc, the STO will launch into the Cryptic loading screen, and then crash after a few seconds. AntwoordenZaterdag 29 October 2016 om 1:52
Maandag 31 October 2016 om 8:27
|
Ronin DUSETTE | Vrijdag 30 September 2016 om 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 AntwoordenDonderdag 27 October 2016 om 5:27
Donderdag 27 October 2016 om 14:18
Vrijdag 28 October 2016 om 3:29
Zondag 30 October 2016 om 4:04
Zondag 30 October 2016 om 17:11
Zondag 30 October 2016 om 17:24
Zondag 30 October 2016 om 17:24
Maandag 31 October 2016 om 8:28
Maandag 31 October 2016 om 8:30
Donderdag 3 November 2016 om 0:49
Donderdag 3 November 2016 om 2:32
Donderdag 3 November 2016 om 2:32
Donderdag 3 November 2016 om 2:40
Donderdag 3 November 2016 om 2:43
Donderdag 3 November 2016 om 2:49
Donderdag 3 November 2016 om 3:52
Vrijdag 4 November 2016 om 2:22
Vrijdag 4 November 2016 om 2:33
Dinsdag 8 November 2016 om 3:27
Dinsdag 8 November 2016 om 4:56
Dinsdag 8 November 2016 om 5:01
Dinsdag 8 November 2016 om 14:59
Dinsdag 8 November 2016 om 16:34
Woensdag 9 November 2016 om 5:16
Woensdag 9 November 2016 om 5:16
Donderdag 10 November 2016 om 21:03
Vrijdag 11 November 2016 om 1:20
Vrijdag 11 November 2016 om 15:40
Woensdag 16 November 2016 om 4:07
Woensdag 16 November 2016 om 4:11
Woensdag 16 November 2016 om 4:12
Woensdag 16 November 2016 om 14:31
Maandag 21 November 2016 om 6:13
Maandag 21 November 2016 om 6:18
Maandag 21 November 2016 om 6:28
Maandag 21 November 2016 om 17:06
Woensdag 18 Januari 2017 om 17:11
|
Josef615 | Maandag 7 Maart 2016 om 21:46 |
Josef615
![]()
|
BerichtIs 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 AntwoordenZondag 22 Mei 2016 om 20:48
Maandag 23 Mei 2016 om 0:26
|
Ronin DUSETTE | Maandag 27 Juli 2015 om 17:12 |
Ronin DUSETTE
![]()
|
BerichtSo 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. AntwoordenDinsdag 28 Juli 2015 om 16:07
Dinsdag 28 Juli 2015 om 16:33
Dinsdag 28 Juli 2015 om 16:49
|
Ronin DUSETTE | Woensdag 22 April 2015 om 8:32 |
Ronin DUSETTE
![]()
|
WarningThis update has not been approved yet by the team. BerichtAdding 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 AntwoordenZondag 21 Juni\ 2015 om 8:11
Zondag 21 Juni\ 2015 om 8:15
Dinsdag 1 Maart 2016 om 22:22
|
Ronin DUSETTE | Woensdag 22 April 2015 om 7:48 |
Ronin DUSETTE
![]()
|
WarningThis update has not been approved yet by the team. BerichtRevised 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 Antwoorden |
Ronin DUSETTE | Woensdag 22 April 2015 om 7:20 |
Ronin DUSETTE
![]()
|
WarningThis update has not been approved yet by the team. Berichtremoving 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 AntwoordenWoensdag 26 October 2016 om 1:16
|
Ronin DUSETTE | Vrijdag 3 April 2015 om 6:25 |
Ronin DUSETTE
![]()
|
WarningThis update has not been approved yet by the team. BerichtMade 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 Antwoorden |
Ronin DUSETTE | Vrijdag 3 April 2015 om 4:10 |
Ronin DUSETTE
![]()
|
WarningThis update has not been approved yet by the team. BerichtInitial 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 AntwoordenVrijdag 3 April 2015 om 4:54
Zondag 5 April 2015 om 16:13
Zondag 5 April 2015 om 18:25
Donderdag 28 Mei 2015 om 17:30
Donderdag 28 Mei 2015 om 17:34
Donderdag 28 Mei 2015 om 18:12
Donderdag 28 Mei 2015 om 18:16
Donderdag 28 Mei 2015 om 18:35
Donderdag 28 Mei 2015 om 18:36
Vrijdag 19 Januari 2018 om 15:56
Vrijdag 19 Januari 2018 om 15:58
Vrijdag 19 Januari 2018 om 17:26
Vrijdag 19 Januari 2018 om 18:47
Zaterdag 20 Januari 2018 om 2:34
Zaterdag 20 Januari 2018 om 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