Star Trek Online
Informations
Créateur | Messages |
---|---|
Ronin DUSETTE
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience11 27 DescriptionStar Trek Online ('STO') is a MMORPG (first release: 2010). Note: Arc and Steam clients are not required. Captures d'écranCode source#!/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:
ContribuerMembre | Messages |
RogerWilco | Mardi 5 Juillet 2022 à 17:41 |
RogerWilco
|
MessagesI 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. RéponsesMardi 5 Juillet 2022 à 17:42
Mardi 5 Juillet 2022 à 18:00
Mardi 5 Juillet 2022 à 18:41
Mardi 5 Juillet 2022 à 19:44
Mardi 5 Juillet 2022 à 20:18
Mardi 5 Juillet 2022 à 20:20
Edité par RogerWilco |
Newsdude | Vendredi 10 Décembre 2021 à 3:11 |
Newsdude
|
MessagesI 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.
RéponsesEdité par Newsdude |
Yaotl | Vendredi 16 Juillet 2021 à 22:24 |
Yaotl
|
InformationCette mise à jour a été acceptée par l'équipe Messagesit 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 Nouveau code source#!/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 Réponses |
Yaotl | Samedi 10 Juillet 2021 à 11:06 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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;" Nouveau code source#!/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 RéponsesLundi 12 Juillet 2021 à 21:26
|
LBGK | Samedi 10 Juillet 2021 à 2:17 |
LBGK
|
|
Yaotl | Mardi 15 Juin 2021 à 23:26 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 RéponsesMercredi 16 Juin 2021 à 6:27
|
Yaotl | Jeudi 6 Mai 2021 à 15:08 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 RéponsesSamedi 8 Mai 2021 à 10:12
|
Findell | Lundi 18 Mai 2020 à 9:36 |
Findell
|
Messages0009: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.
RéponsesLundi 18 Mai 2020 à 10:18
Lundi 22 Février 2021 à 12:38
Lundi 22 Février 2021 à 12:39
|
Dadu042 | Jeudi 9 Janvier 2020 à 17:20 |
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 Réponses |
Dadu042 | Mercredi 4 Décembre 2019 à 20:35 |
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 Réponses |
Yaotl | Lundi 8 Avril 2019 à 15:03 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesDifferences@@ -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 Nouveau code source#!/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 RéponsesVendredi 15 Novembre 2019 à 12:45
Edité par Yaotl |
Yaotl | Lundi 11 Février 2019 à 5:38 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 RéponsesDimanche 24 Février 2019 à 19:05
Mercredi 27 Février 2019 à 20:12
Dimanche 17 Mars 2019 à 3:24
Dimanche 17 Mars 2019 à 16:49
Dimanche 17 Mars 2019 à 16:57
Jeudi 4 Avril 2019 à 6:07
Edité par Yaotl |
Glowen88 | Dimanche 10 Février 2019 à 12:37 |
Glowen88
|
|
man-max | Samedi 2 Février 2019 à 22:59 |
man-max
|
Messageshello, 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? RéponsesSamedi 2 Février 2019 à 23:02
Samedi 2 Février 2019 à 23:03
Lundi 4 Février 2019 à 16:16
Mercredi 20 Février 2019 à 6:02
Dimanche 24 Février 2019 à 18:45
Dimanche 24 Février 2019 à 18:52
Mardi 26 Février 2019 à 5:30
|
Yaotl | Mercredi 23 Janvier 2019 à 10:26 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 RéponsesLundi 28 Janvier 2019 à 9:15
Mercredi 6 Février 2019 à 3:37
|
anyb | Jeudi 17 Janvier 2019 à 16:50 |
anyb
|
MessagesI 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? RéponsesVendredi 18 Janvier 2019 à 22:41
|
jbieler864 | Mercredi 21 Novembre 2018 à 2:00 |
jbieler864
|
MessagesOkay, 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! RéponsesMercredi 21 Novembre 2018 à 2:12
Mercredi 21 Novembre 2018 à 2:14
Samedi 22 Décembre 2018 à 3:02
|
tomroseuk | Dimanche 18 Novembre 2018 à 21:33 |
tomroseuk
|
MessagesI get this error when trying to install both star trek and what I think is the 3.19 update. any help appreciated. RéponsesDimanche 18 Novembre 2018 à 21:34
Dimanche 18 Novembre 2018 à 21:34
Lundi 19 Novembre 2018 à 2:07
Lundi 19 Novembre 2018 à 11:52
Mardi 20 Novembre 2018 à 4:36
|
LinuxScripter | Vendredi 2 Novembre 2018 à 14:04 |
LinuxScripter
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 RéponsesVendredi 2 Novembre 2018 à 15:09
|
LinuxScripter | Vendredi 2 Novembre 2018 à 13:46 |
LinuxScripter
|
MessagesI 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) RéponsesVendredi 2 Novembre 2018 à 14:03
Vendredi 2 Novembre 2018 à 20:17
Mardi 6 Novembre 2018 à 0:50
Mardi 6 Novembre 2018 à 1:00
|
newfontherock | Lundi 29 Octobre 2018 à 17:21 |
newfontherock
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 RéponsesLundi 29 Octobre 2018 à 17:24
Lundi 29 Octobre 2018 à 17:26
Lundi 29 Octobre 2018 à 18:02
|
jbieler864 | Mardi 9 Octobre 2018 à 20:42 |
jbieler864
|
MessagesMac 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. RéponsesJeudi 11 Octobre 2018 à 18:43
Jeudi 11 Octobre 2018 à 19:20
Jeudi 11 Octobre 2018 à 23:04
|
Yaotl | Mardi 24 Juillet 2018 à 20:08 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 RéponsesJeudi 16 Aoüt 2018 à 23:36
Vendredi 17 Aoüt 2018 à 0:03
Samedi 1 September 2018 à 10:19
Samedi 1 September 2018 à 16:45
Mardi 9 Octobre 2018 à 22:27
Mardi 9 Octobre 2018 à 22:28
Jeudi 25 Octobre 2018 à 6:26
|
ChanEnChun | Samedi 24 Mars 2018 à 5:13 |
ChanEnChun
|
MessagesHey 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. RéponsesLundi 9 Avril 2018 à 1:23
Lundi 9 Avril 2018 à 1:23
Lundi 9 Avril 2018 à 1:24
Lundi 9 Avril 2018 à 2:31
Vendredi 4 Mai 2018 à 19:45
Vendredi 25 Mai 2018 à 22:42
Lundi 4 Juin 2018 à 5:53
Mercredi 20 Juin 2018 à 7:08
Jeudi 12 Juillet 2018 à 16:48
Jeudi 12 Juillet 2018 à 16:59
Samedi 1 September 2018 à 10:20
Samedi 1 September 2018 à 16:45
|
Radmon25 | Lundi 12 Février 2018 à 12:38 |
Radmon25
|
MessagesAs 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. RéponsesVendredi 16 Février 2018 à 19:12
Vendredi 16 Février 2018 à 19:59
Vendredi 16 Février 2018 à 23:49
Lundi 19 Mars 2018 à 12:55
Lundi 19 Mars 2018 à 15:22
Mardi 20 Mars 2018 à 12:19
Mardi 20 Mars 2018 à 15:33
Mardi 20 Mars 2018 à 15:33
Mercredi 21 Mars 2018 à 0:17
|
ferretman | Mercredi 7 Février 2018 à 19:44 |
ferretman
|
MessagesSo 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. RéponsesLundi 12 Février 2018 à 15:00
|
KODES | Samedi 20 Janvier 2018 à 20:43 |
KODES
|
MessagesSo 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.
Réponses |
Ronin DUSETTE | Mardi 16 Janvier 2018 à 22:32 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUpdating 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" Nouveau code source#!/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 RéponsesSamedi 20 Janvier 2018 à 14:58
Samedi 20 Janvier 2018 à 23:08
Mardi 20 Mars 2018 à 14:00
|
Zethra | Mardi 16 Janvier 2018 à 21:23 |
Zethra
|
MessagesGood evening, I would like to test Star Trek Online on ubuntu 16.04. Could you help me, please ? GTX750Ti 8go RAM RéponsesMardi 16 Janvier 2018 à 21:56
Mardi 16 Janvier 2018 à 22:31
Mardi 16 Janvier 2018 à 22:33
Mercredi 17 Janvier 2018 à 10:33
|
stevenbinion | Mardi 16 Janvier 2018 à 17:13 |
stevenbinion
|
MessagesI 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 Réponses |
Ubunter | Lundi 1 Janvier 2018 à 17:01 |
Ubunter
|
MessagesHi, 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) RéponsesLundi 1 Janvier 2018 à 17:03
|
Aital | Vendredi 22 Décembre 2017 à 8:27 |
Aital
|
MessagesI'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. Réponses |
masterdavid98 | Vendredi 27 Octobre 2017 à 17:39 |
masterdavid98
|
MessagesHowdy 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... RéponsesVendredi 19 Janvier 2018 à 19:57
|
Aital | Mardi 17 Octobre 2017 à 20:26 |
Aital
|
MessagesI 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. Réponses |
rcsulliv | Mardi 25 Juillet 2017 à 22:36 |
rcsulliv
|
MessagesOk, 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? RéponsesMercredi 26 Juillet 2017 à 9:15
Mercredi 26 Juillet 2017 à 15:11
Mercredi 26 Juillet 2017 à 21:43
Mercredi 26 Juillet 2017 à 22:29
Mercredi 26 Juillet 2017 à 22:54
Dimanche 30 Juillet 2017 à 1:18
Jeudi 3 Aoüt 2017 à 6:40
Lundi 7 Aoüt 2017 à 7:03
Samedi 23 September 2017 à 21:23
Dimanche 24 September 2017 à 8:25
|
rcsulliv | Lundi 24 Juillet 2017 à 23:54 |
rcsulliv
|
MessagesI 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.
Réponses |
rcsulliv | Dimanche 23 Juillet 2017 à 5:14 |
rcsulliv
|
MessagesHi, 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!
RéponsesDimanche 23 Juillet 2017 à 13:23
Dimanche 23 Juillet 2017 à 16:15
Dimanche 23 Juillet 2017 à 19:40
Lundi 24 Juillet 2017 à 3:51
Lundi 24 Juillet 2017 à 6:19
Lundi 24 Juillet 2017 à 12:04
Lundi 24 Juillet 2017 à 12:05
Lundi 24 Juillet 2017 à 20:36
Lundi 24 Juillet 2017 à 21:47
Lundi 24 Juillet 2017 à 21:50
Lundi 24 Juillet 2017 à 22:10
Lundi 24 Juillet 2017 à 22:21
Mardi 25 Juillet 2017 à 3:34
Mardi 25 Juillet 2017 à 17:45
Vendredi 11 Aoüt 2017 à 22:44
Vendredi 11 Aoüt 2017 à 22:47
Vendredi 11 Aoüt 2017 à 23:08
Samedi 12 Aoüt 2017 à 17:27
Samedi 12 Aoüt 2017 à 17:29
Samedi 12 Aoüt 2017 à 19:03
Samedi 12 Aoüt 2017 à 21:10
Samedi 12 Aoüt 2017 à 22:49
Lundi 14 Aoüt 2017 à 13:07
|
SToGamer | Mardi 18 Juillet 2017 à 18:54 |
SToGamer
|
Messagesso... 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? RéponsesMardi 18 Juillet 2017 à 19:26
Mercredi 19 Juillet 2017 à 0:44
Mercredi 19 Juillet 2017 à 7:13
Mercredi 19 Juillet 2017 à 7:14
Mercredi 19 Juillet 2017 à 7:27
Jeudi 20 Juillet 2017 à 23:46
Vendredi 21 Juillet 2017 à 2:54
Vendredi 21 Juillet 2017 à 2:55
Vendredi 21 Juillet 2017 à 12:30
Vendredi 21 Juillet 2017 à 12:31
Vendredi 21 Juillet 2017 à 12:59
Vendredi 21 Juillet 2017 à 13:00
Vendredi 21 Juillet 2017 à 13:01
Vendredi 21 Juillet 2017 à 15:25
Vendredi 21 Juillet 2017 à 18:54
Vendredi 21 Juillet 2017 à 18:55
Vendredi 21 Juillet 2017 à 18:57
Samedi 22 Juillet 2017 à 13:21
Samedi 22 Juillet 2017 à 16:56
Samedi 22 Juillet 2017 à 16:58
Samedi 22 Juillet 2017 à 16:59
|
Crosis | Mardi 11 Juillet 2017 à 21:35 |
Crosis
|
MessagesHey 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? RéponsesMardi 11 Juillet 2017 à 21:41
|
Akamia | Mercredi 5 Juillet 2017 à 0:24 |
Akamia
|
MessagesI 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? RéponsesJeudi 6 Juillet 2017 à 18:25
Jeudi 6 Juillet 2017 à 18:29
Dimanche 9 Juillet 2017 à 15:01
Dimanche 9 Juillet 2017 à 15:01
Dimanche 9 Juillet 2017 à 15:01
Dimanche 9 Juillet 2017 à 15:04
Dimanche 9 Juillet 2017 à 18:24
Lundi 10 Juillet 2017 à 5:40
Lundi 10 Juillet 2017 à 19:57
|
Aital | Samedi 1 Juillet 2017 à 23:11 |
Aital
|
MessagesJust 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. Réponses |
Aital | Samedi 24 Juin 2017 à 21:01 |
Aital
|
MessagesBug? 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. Réponses |
dmat | Mercredi 7 Juin 2017 à 17:17 |
dmat
|
Messages
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! RéponsesVendredi 9 Juin 2017 à 0:51
Vendredi 9 Juin 2017 à 0:53
Vendredi 9 Juin 2017 à 11:09
Vendredi 9 Juin 2017 à 21:14
Samedi 10 Juin 2017 à 4:35
Samedi 10 Juin 2017 à 16:24
Mercredi 14 Juin 2017 à 13:46
Jeudi 15 Juin 2017 à 23:33
Jeudi 15 Juin 2017 à 23:40
Vendredi 16 Juin 2017 à 13:57
Vendredi 16 Juin 2017 à 19:09
Lundi 19 Juin 2017 à 13:53
Samedi 24 Juin 2017 à 3:18
Samedi 24 Juin 2017 à 3:58
Samedi 24 Juin 2017 à 4:04
Samedi 24 Juin 2017 à 4:05
Samedi 24 Juin 2017 à 5:33
Samedi 24 Juin 2017 à 12:29
Samedi 24 Juin 2017 à 12:29
Samedi 24 Juin 2017 à 14:36
Samedi 24 Juin 2017 à 22:46
Dimanche 25 Juin 2017 à 1:54
Dimanche 25 Juin 2017 à 17:16
Dimanche 25 Juin 2017 à 18:32
Dimanche 25 Juin 2017 à 19:34
Dimanche 25 Juin 2017 à 19:37
Lundi 26 Juin 2017 à 4:06
Lundi 26 Juin 2017 à 4:58
Lundi 26 Juin 2017 à 11:11
Lundi 26 Juin 2017 à 19:59
Mercredi 28 Juin 2017 à 13:14
Dimanche 2 Juillet 2017 à 11:11
Lundi 3 Juillet 2017 à 14:54
Mardi 4 Juillet 2017 à 17:14
Samedi 8 Juillet 2017 à 6:46
Mardi 18 Juillet 2017 à 18:51
Mercredi 19 Juillet 2017 à 22:45
|
Mystic Rose | Dimanche 4 Juin 2017 à 19:47 |
Mystic Rose
|
MessagesI'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. RéponsesDimanche 4 Juin 2017 à 19:51
Dimanche 4 Juin 2017 à 20:22
Lundi 5 Juin 2017 à 23:58
Mardi 6 Juin 2017 à 2:18
|
tsp | Lundi 29 Mai 2017 à 17:30 |
tsp
|
MessagesHi 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! RéponsesMardi 30 Mai 2017 à 18:36
Mardi 30 Mai 2017 à 22:36
Mardi 30 Mai 2017 à 22:37
Vendredi 2 Juin 2017 à 23:13
Lundi 5 Juin 2017 à 23:50
Mardi 6 Juin 2017 à 6:11
|
freightstopper | Vendredi 26 Mai 2017 à 12:19 |
freightstopper
|
MessagesI 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 RéponsesVendredi 26 Mai 2017 à 13:21
Samedi 27 Mai 2017 à 23:55
|
invoke | Jeudi 25 Mai 2017 à 11:51 |
invoke
|
MessagesThe latest version works really well. Remember to put in the registry key though. Réponses |
asmo_dean | Lundi 22 Mai 2017 à 22:44 |
asmo_dean
|
MessagesHi 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. RéponsesMardi 23 Mai 2017 à 18:26
Mardi 23 Mai 2017 à 18:28
Mardi 23 Mai 2017 à 18:33
Mardi 23 Mai 2017 à 18:34
Mardi 23 Mai 2017 à 18:36
Mardi 23 Mai 2017 à 18:37
Mardi 23 Mai 2017 à 18:38
Mardi 23 Mai 2017 à 18:44
Mardi 23 Mai 2017 à 18:46
Mardi 23 Mai 2017 à 19:03
Mercredi 24 Mai 2017 à 18:55
Mercredi 24 Mai 2017 à 18:57
Jeudi 25 Mai 2017 à 11:51
Jeudi 25 Mai 2017 à 19:03
Dimanche 28 Mai 2017 à 19:03
|
Fotofobia | Jeudi 18 Mai 2017 à 8:13 |
Fotofobia
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 RéponsesJeudi 18 Mai 2017 à 19:33
Vendredi 19 Mai 2017 à 19:23
Jeudi 25 Mai 2017 à 11:49
Jeudi 25 Mai 2017 à 18:51
Mardi 30 Mai 2017 à 0:20
Mardi 30 Mai 2017 à 17:58
Samedi 24 Juin 2017 à 1:03
Samedi 24 Juin 2017 à 1:09
|
Ronin DUSETTE | Mercredi 17 Mai 2017 à 23:57 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 RéponsesMercredi 17 Mai 2017 à 23:57
Jeudi 18 Mai 2017 à 8:12
Jeudi 18 Mai 2017 à 19:36
Mercredi 24 Mai 2017 à 20:44
Samedi 27 Mai 2017 à 18:08
|
Ronin DUSETTE | Mercredi 17 Mai 2017 à 22:50 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 Réponses |
hhelle | Lundi 15 Mai 2017 à 17:19 |
hhelle
|
Messagesunable to run installer. RéponsesMardi 16 Mai 2017 à 23:30
Mardi 16 Mai 2017 à 23:46
Mercredi 17 Mai 2017 à 0:15
Mercredi 17 Mai 2017 à 0:17
Mercredi 17 Mai 2017 à 20:45
Mercredi 17 Mai 2017 à 20:47
Mercredi 17 Mai 2017 à 22:49
Mercredi 17 Mai 2017 à 22:52
|
cybris | Jeudi 11 Mai 2017 à 5:31 |
cybris
|
MessagesI 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
Réponses |
strobsn | Lundi 1 Mai 2017 à 11:46 |
strobsn
|
MessagesHello, 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 Réponses |
xattr | Mercredi 26 Avril 2017 à 23:06 |
xattr
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Messagesnot 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 Nouveau code source#!/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 Réponses |
xattr | Mercredi 26 Avril 2017 à 23:01 |
xattr
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesThe 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" Nouveau code source#!/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 RéponsesJeudi 27 Avril 2017 à 12:35
|
Aital | Mercredi 26 Avril 2017 à 2:11 |
Aital
|
MessagesThe 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? Réponses |
titanhoss | Jeudi 20 Avril 2017 à 23:47 |
titanhoss
|
Messagesit hangs due to a mismatch between the installer exe and the one on the download site being different RéponsesVendredi 21 Avril 2017 à 16:48
Dimanche 23 Avril 2017 à 18:31
Mardi 25 Avril 2017 à 4:33
Mardi 25 Avril 2017 à 4:58
Mardi 25 Avril 2017 à 16:24
Mardi 25 Avril 2017 à 16:29
Mardi 25 Avril 2017 à 16:33
|
Ronin DUSETTE | Samedi 15 Avril 2017 à 3:28 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 RéponsesSamedi 15 Avril 2017 à 3:29
Mardi 6 Juin 2017 à 1:08
|
Mirmisquer | Mercredi 15 Mars 2017 à 21:27 |
Mirmisquer
|
MessagesWhen 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? RéponsesSamedi 15 Avril 2017 à 2:26
Samedi 15 Avril 2017 à 2:31
Samedi 15 Avril 2017 à 2:31
Samedi 15 Avril 2017 à 3:24
Samedi 15 Avril 2017 à 3:31
Lundi 17 Avril 2017 à 4:26
Lundi 17 Avril 2017 à 4:28
Lundi 17 Avril 2017 à 5:31
Lundi 17 Avril 2017 à 5:59
Lundi 17 Avril 2017 à 7:15
Lundi 17 Avril 2017 à 8:46
Lundi 17 Avril 2017 à 9:02
Lundi 17 Avril 2017 à 9:16
Lundi 17 Avril 2017 à 9:19
Lundi 17 Avril 2017 à 9:48
Lundi 17 Avril 2017 à 10:19
Lundi 17 Avril 2017 à 10:34
Lundi 17 Avril 2017 à 10:45
Lundi 17 Avril 2017 à 10:46
Lundi 17 Avril 2017 à 10:49
Lundi 17 Avril 2017 à 10:51
Lundi 17 Avril 2017 à 10:57
Lundi 17 Avril 2017 à 10:59
Lundi 17 Avril 2017 à 11:06
Lundi 17 Avril 2017 à 11:09
Lundi 17 Avril 2017 à 11:28
Lundi 17 Avril 2017 à 12:04
Lundi 17 Avril 2017 à 12:13
Lundi 17 Avril 2017 à 12:18
Lundi 17 Avril 2017 à 12:34
Lundi 17 Avril 2017 à 12:40
Lundi 17 Avril 2017 à 12:43
Lundi 17 Avril 2017 à 13:07
Lundi 17 Avril 2017 à 14:26
Lundi 17 Avril 2017 à 16:17
Mardi 18 Avril 2017 à 11:55
Mercredi 19 Avril 2017 à 6:57
|
asmo_dean | Jeudi 2 Mars 2017 à 18:16 |
asmo_dean
|
MessagesHi 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! RéponsesSamedi 4 Mars 2017 à 15:45
|
STO Fan2.0 | Lundi 6 Février 2017 à 9:58 |
STO Fan2.0
|
MessagesProgramm 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
Réponses |
timholtorf | Dimanche 29 Janvier 2017 à 15:51 |
timholtorf
|
MessagesI'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. Réponses |
habano44 | Samedi 31 Décembre 2016 à 17:53 |
habano44
|
MessagesHi, 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 RéponsesMercredi 18 Janvier 2017 à 17:56
|
titanhoss | Lundi 28 Novembre 2016 à 10:35 |
titanhoss
|
Messageseverything seems to work but no sound running linux mint 18 KDE on an acer aspire e15 RéponsesLundi 28 Novembre 2016 à 10:47
|
Ronin DUSETTE | Jeudi 3 Novembre 2016 à 1:06 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 RéponsesJeudi 3 Novembre 2016 à 1:08
Samedi 4 Février 2017 à 7:03
Samedi 4 Février 2017 à 7:04
|
Captainpicard30 | Samedi 29 Octobre 2016 à 1:45 |
Captainpicard30
|
MessagesEver since the software patch done by Arc, the STO will launch into the Cryptic loading screen, and then crash after a few seconds. RéponsesSamedi 29 Octobre 2016 à 1:52
Lundi 31 Octobre 2016 à 8:27
|
Ronin DUSETTE | Vendredi 30 September 2016 à 19:27 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 RéponsesJeudi 27 Octobre 2016 à 5:27
Jeudi 27 Octobre 2016 à 14:18
Vendredi 28 Octobre 2016 à 3:29
Dimanche 30 Octobre 2016 à 4:04
Dimanche 30 Octobre 2016 à 17:11
Dimanche 30 Octobre 2016 à 17:24
Dimanche 30 Octobre 2016 à 17:24
Lundi 31 Octobre 2016 à 8:28
Lundi 31 Octobre 2016 à 8:30
Jeudi 3 Novembre 2016 à 0:49
Jeudi 3 Novembre 2016 à 2:32
Jeudi 3 Novembre 2016 à 2:32
Jeudi 3 Novembre 2016 à 2:40
Jeudi 3 Novembre 2016 à 2:43
Jeudi 3 Novembre 2016 à 2:49
Jeudi 3 Novembre 2016 à 3:52
Vendredi 4 Novembre 2016 à 2:22
Vendredi 4 Novembre 2016 à 2:33
Mardi 8 Novembre 2016 à 3:27
Mardi 8 Novembre 2016 à 4:56
Mardi 8 Novembre 2016 à 5:01
Mardi 8 Novembre 2016 à 14:59
Mardi 8 Novembre 2016 à 16:34
Mercredi 9 Novembre 2016 à 5:16
Mercredi 9 Novembre 2016 à 5:16
Jeudi 10 Novembre 2016 à 21:03
Vendredi 11 Novembre 2016 à 1:20
Vendredi 11 Novembre 2016 à 15:40
Mercredi 16 Novembre 2016 à 4:07
Mercredi 16 Novembre 2016 à 4:11
Mercredi 16 Novembre 2016 à 4:12
Mercredi 16 Novembre 2016 à 14:31
Lundi 21 Novembre 2016 à 6:13
Lundi 21 Novembre 2016 à 6:18
Lundi 21 Novembre 2016 à 6:28
Lundi 21 Novembre 2016 à 17:06
Mercredi 18 Janvier 2017 à 17:11
|
Josef615 | Lundi 7 Mars 2016 à 21:46 |
Josef615
|
MessagesIs 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 RéponsesDimanche 22 Mai 2016 à 20:48
Lundi 23 Mai 2016 à 0:26
|
Ronin DUSETTE | Lundi 27 Juillet 2015 à 17:12 |
Ronin DUSETTE
|
MessagesSo 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. RéponsesMardi 28 Juillet 2015 à 16:07
Mardi 28 Juillet 2015 à 16:33
Mardi 28 Juillet 2015 à 16:49
|
Ronin DUSETTE | Mercredi 22 Avril 2015 à 8:32 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdding 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 Nouveau code source#!/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 RéponsesDimanche 21 Juin 2015 à 8:11
Dimanche 21 Juin 2015 à 8:15
Mardi 1 Mars 2016 à 22:22
|
Ronin DUSETTE | Mercredi 22 Avril 2015 à 7:48 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesRevised 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" Nouveau code source#!/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 Réponses |
Ronin DUSETTE | Mercredi 22 Avril 2015 à 7:20 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Messagesremoving 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 Nouveau code source#!/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 RéponsesMercredi 26 Octobre 2016 à 1:16
|
Ronin DUSETTE | Vendredi 3 Avril 2015 à 6:25 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesMade 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" Nouveau code source#!/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 Réponses |
Ronin DUSETTE | Vendredi 3 Avril 2015 à 4:10 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesInitial 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 Nouveau code source#!/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 RéponsesVendredi 3 Avril 2015 à 4:54
Dimanche 5 Avril 2015 à 16:13
Dimanche 5 Avril 2015 à 18:25
Jeudi 28 Mai 2015 à 17:30
Jeudi 28 Mai 2015 à 17:34
Jeudi 28 Mai 2015 à 18:12
Jeudi 28 Mai 2015 à 18:16
Jeudi 28 Mai 2015 à 18:35
Jeudi 28 Mai 2015 à 18:36
Vendredi 19 Janvier 2018 à 15:56
Vendredi 19 Janvier 2018 à 15:58
Vendredi 19 Janvier 2018 à 17:26
Vendredi 19 Janvier 2018 à 18:47
Samedi 20 Janvier 2018 à 2:34
Samedi 20 Janvier 2018 à 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