Tera (Online)
Informations
Créateur | Messages |
---|---|
luyz25
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience2 15 DescriptionCode source#!/bin/bash --login # Date : (2014-10-28 14:30) # Last revision : see changelog # Distribution used to test : Xubuntu 18.04 amd64 (kernel 5.3), GPU AMD. # Author : MaxHeadroom2000 < at > gmail.com # License : GNU/GPL v3 # # # CHANGELOG # [luyz25] (2014-10-28 14:30) # Initial writing. # [MaxHeadroom2000 < at > gmail.com] (2016-08-25 00:00) # Edits. # [Dadu042] (2019-05-23) # Little improvements: Remove MD5 checkum of the downloader. Disable download. Update wine version. Disable xaudio. # [Dadu042] (2020-06-08) # Wine 4.0.1 -> 4.0.4 # Add POL_RequiredVersion # # # KNOWN ISSUES : # - Wine x86 4.0.1, 4.0.4, 4.21, 5.0, 5.7: and the end of its installation, the Tera installer v1.1 (files date: 2019-05-16) does crash (but stay open in the task bar). Tried: + POL_Install_vcrun2010 # # KNOWN ISSUES (FIXED): [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Tera Online" PREFIX="TERA" EDITOR="EN MASSE Entertainment" GAME_URL="http://tera.enmasse.com/" AUTHOR="see changelog" WORKING_WINE_VERSION="5.7" # Starting the script POL_SetupWindow_Init POL_SetupWindow_SetID 1724 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Fix Installer crash (2016) Set_OS "win7" # Isolation POL_Install_PrivateUserDirs ####################################### # Installing mandatory dependencies # ####################################### POL_Call POL_Install_d3dx9_43 POL_Call POL_Install_d3dcompiler_43 # POL_Call POL_Install_d3dx9 POL_Call POL_Install_corefonts POL_Call POL_Install_xact # Needed for Tera game POL_Call POL_Install_vcrun2010 POL_Call POL_Install_vcrun2013 # Was in 2016, function unknown as of 2019-05-22 # POL_Call POL_Install_xaudio # Make game run (graphics), 2016 # POL_Wine_Direct3D "UseGLSL" "enabled" # POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" # POL_Wine_Direct3D "Multisampling" "disabled" # POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Installing mandatory dependencies POL_Call POL_Install_winhttp ####################################### # Main part of this script # ####################################### POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" POL_Download "https://eme01.enmasse-game.com/installers/eme/EnMasse-Minimal-Installer.exe" SETUP_EXE="$PWD/EnMasse-Minimal-Installer.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi # Run the installer POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$SETUP_EXE" # POL_Wine $SETUP_EXE POL_Wine_WaitExit "$TITLE" # Fix The Mouse Bug (2016) # cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA/Client/S1Game/Config/" # mv S1Engine.ini S1Engine.ini.bkp # # URL down as of 2019-05-22: # POL_Download "https://dl.dropboxusercontent.com/u/64225173/S1Engine.ini" "955be01c4c34445d7dde2c2b5e13cda6" # Deleting temp files POL_System_TmpDelete # Making shortcut POL_Shortcut "TERA-Launcher.exe" "Tera Online" "" "" "Game;RolePlaying;" # Closing POL POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
terryc | Lundi 14 Juin 2021 à 9:53 |
terryc
|
MessagesSorry, but I think you will find this installer is completely cactus now. Enmasse sold the game to Gameforge in the later half of 2020 and allthe gameforge system. So the installer is going to need to be modified to reflect this, I'm hjappy to assist with testing. Réponses |
Dadu042 | Lundi 8 Juin 2020 à 17:44 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe MessagesTera installer does crash at the end. Differences@@ -1,121 +1,138 @@ #!/bin/bash --login # Date : (2014-10-28 14:30) -# Last revision : (2016-08-25 00:00) -# Wine version used : 1.9.17-staging -# Distribution used to test : Ubuntu 16.04 +# Last revision : see changelog +# Distribution used to test : Xubuntu 18.04 amd64 (kernel 5.3), GPU AMD. # Author : MaxHeadroom2000 < at > gmail.com # License : GNU/GPL v3 # -# Changelog: -# 2019 Dadu042: little improvements. Remove MD5 checkum of the downloader. Disable download. Update wine version. Disable xaudio. -# 2016 MaxHeadroom2000 < at > gmail.com: edits. -# ... - +# +# CHANGELOG +# [luyz25] (2014-10-28 14:30) +# Initial writing. +# [MaxHeadroom2000 < at > gmail.com] (2016-08-25 00:00) +# Edits. +# [Dadu042] (2019-05-23) +# Little improvements: Remove MD5 checkum of the downloader. Disable download. Update wine version. Disable xaudio. +# [Dadu042] (2020-06-08) +# Wine 4.0.1 -> 4.0.4 +# Add POL_RequiredVersion +# +# +# KNOWN ISSUES : +# - Wine x86 4.0.1, 4.0.4, 4.21, 5.0, 5.7: and the end of its installation, the Tera installer v1.1 (files date: 2019-05-16) does crash (but stay open in the task bar). Tried: + POL_Install_vcrun2010 +# +# KNOWN ISSUES (FIXED): + [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" - + TITLE="Tera Online" PREFIX="TERA" EDITOR="EN MASSE Entertainment" GAME_URL="http://tera.enmasse.com/" -AUTHOR="MaxHeadroom2000, Dadu042." -WORKING_WINE_VERSION="4.0.1" - +AUTHOR="see changelog" +WORKING_WINE_VERSION="5.7" + # Starting the script POL_SetupWindow_Init POL_SetupWindow_SetID 1724 - + # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + +POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" + # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" - + # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" - + # Create TMP directory POL_System_TmpCreate "$PREFIX" - + # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS - + # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver - + # Fix Installer crash (2016) Set_OS "win7" - + # Isolation POL_Install_PrivateUserDirs -# Install mandatory dependencies -# Needed for Tera launcher -POL_Call POL_Install_d3dx9 + +####################################### +# Installing mandatory dependencies # +####################################### + +POL_Call POL_Install_d3dx9_43 +POL_Call POL_Install_d3dcompiler_43 + +# POL_Call POL_Install_d3dx9 POL_Call POL_Install_corefonts POL_Call POL_Install_xact - + # Needed for Tera game +POL_Call POL_Install_vcrun2010 POL_Call POL_Install_vcrun2013 -# -# Was in 2016, function unknown as of 2019-05-22 + +# Was in 2016, function unknown as of 2019-05-22 # POL_Call POL_Install_xaudio - -# Make game run (graphics) + +# Make game run (graphics), 2016 # POL_Wine_Direct3D "UseGLSL" "enabled" # POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" # POL_Wine_Direct3D "Multisampling" "disabled" # POL_Wine_Direct3D "StrictDrawOrdering" "enabled" - + # Installing mandatory dependencies POL_Call POL_Install_winhttp -# Choose between install from local client or use already downloaded client -# POL_SetupWindow_InstallMethod "LOCAL,SKIP" - -POL_SetupWindow_InstallMethod "LOCAL" - -# Downloading client or choosing existing one -mkdir -p "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" - -# Disable the autodownload option because the (old) file hosted is dated of 2017. -# -# POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" -#if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then -# # Downloading client -# cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" -# POL_Download "http://patch.tera.enmasse-game.com/TERA-Setup.exe" -# SETUP_EXE="$PWD/TERA-Setup.exe" -#else +####################################### +# Main part of this script # +####################################### + +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" + +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" +if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then + # Downloading client + cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" + POL_Download "https://eme01.enmasse-game.com/installers/eme/EnMasse-Minimal-Installer.exe" + SETUP_EXE="$PWD/EnMasse-Minimal-Installer.exe" +else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" -#fi - +fi + # Run the installer POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$SETUP_EXE" -# POL_Wine $SETUP_EXE +# POL_Wine $SETUP_EXE POL_Wine_WaitExit "$TITLE" - + # Fix The Mouse Bug (2016) # cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA/Client/S1Game/Config/" -# mv S1Engine.ini S1Engine.ini.bkp +# mv S1Engine.ini S1Engine.ini.bkp # -# URL down as of 2019-05-22: -# POL_Download "https://dl.dropboxusercontent.com/u/64225173/S1Engine.ini" "955be01c4c34445d7dde2c2b5e13cda6" - +# URL down as of 2019-05-22: +# POL_Download "https://dl.dropboxusercontent.com/u/64225173/S1Engine.ini" "955be01c4c34445d7dde2c2b5e13cda6" + # Deleting temp files POL_System_TmpDelete - -# Making shortcut -POL_Shortcut "TERA-Launcher.exe" "Tera Online" -#Closing POL +# Making shortcut +POL_Shortcut "TERA-Launcher.exe" "Tera Online" "" "" "Game;RolePlaying;" + +# Closing POL POL_SetupWindow_Close exit 0 \ No newline at end of file Nouveau code source#!/bin/bash --login # Date : (2014-10-28 14:30) # Last revision : see changelog # Distribution used to test : Xubuntu 18.04 amd64 (kernel 5.3), GPU AMD. # Author : MaxHeadroom2000 < at > gmail.com # License : GNU/GPL v3 # # # CHANGELOG # [luyz25] (2014-10-28 14:30) # Initial writing. # [MaxHeadroom2000 < at > gmail.com] (2016-08-25 00:00) # Edits. # [Dadu042] (2019-05-23) # Little improvements: Remove MD5 checkum of the downloader. Disable download. Update wine version. Disable xaudio. # [Dadu042] (2020-06-08) # Wine 4.0.1 -> 4.0.4 # Add POL_RequiredVersion # # # KNOWN ISSUES : # - Wine x86 4.0.1, 4.0.4, 4.21, 5.0, 5.7: and the end of its installation, the Tera installer v1.1 (files date: 2019-05-16) does crash (but stay open in the task bar). Tried: + POL_Install_vcrun2010 # # KNOWN ISSUES (FIXED): [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Tera Online" PREFIX="TERA" EDITOR="EN MASSE Entertainment" GAME_URL="http://tera.enmasse.com/" AUTHOR="see changelog" WORKING_WINE_VERSION="5.7" # Starting the script POL_SetupWindow_Init POL_SetupWindow_SetID 1724 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Fix Installer crash (2016) Set_OS "win7" # Isolation POL_Install_PrivateUserDirs ####################################### # Installing mandatory dependencies # ####################################### POL_Call POL_Install_d3dx9_43 POL_Call POL_Install_d3dcompiler_43 # POL_Call POL_Install_d3dx9 POL_Call POL_Install_corefonts POL_Call POL_Install_xact # Needed for Tera game POL_Call POL_Install_vcrun2010 POL_Call POL_Install_vcrun2013 # Was in 2016, function unknown as of 2019-05-22 # POL_Call POL_Install_xaudio # Make game run (graphics), 2016 # POL_Wine_Direct3D "UseGLSL" "enabled" # POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" # POL_Wine_Direct3D "Multisampling" "disabled" # POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Installing mandatory dependencies POL_Call POL_Install_winhttp ####################################### # Main part of this script # ####################################### POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" POL_Download "https://eme01.enmasse-game.com/installers/eme/EnMasse-Minimal-Installer.exe" SETUP_EXE="$PWD/EnMasse-Minimal-Installer.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi # Run the installer POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$SETUP_EXE" # POL_Wine $SETUP_EXE POL_Wine_WaitExit "$TITLE" # Fix The Mouse Bug (2016) # cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA/Client/S1Game/Config/" # mv S1Engine.ini S1Engine.ini.bkp # # URL down as of 2019-05-22: # POL_Download "https://dl.dropboxusercontent.com/u/64225173/S1Engine.ini" "955be01c4c34445d7dde2c2b5e13cda6" # Deleting temp files POL_System_TmpDelete # Making shortcut POL_Shortcut "TERA-Launcher.exe" "Tera Online" "" "" "Game;RolePlaying;" # Closing POL POL_SetupWindow_Close exit 0 Réponses |
Dadu042 | Mercredi 22 Mai 2019 à 9:00 |
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesRead changelog in the begin of the script. Script need standardization: http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_9:_Standardization Differences@@ -19,8 +19,8 @@ EDITOR="EN MASSE Entertainment" GAME_URL="http://tera.enmasse.com/" AUTHOR="MaxHeadroom2000, Dadu042." -WORKING_WINE_VERSION="4.0" - +WORKING_WINE_VERSION="4.0.1" + # Starting the script POL_SetupWindow_Init POL_SetupWindow_SetID 1724 Nouveau code source#!/bin/bash --login # Date : (2014-10-28 14:30) # Last revision : (2016-08-25 00:00) # Wine version used : 1.9.17-staging # Distribution used to test : Ubuntu 16.04 # Author : MaxHeadroom2000 < at > gmail.com # License : GNU/GPL v3 # # Changelog: # 2019 Dadu042: little improvements. Remove MD5 checkum of the downloader. Disable download. Update wine version. Disable xaudio. # 2016 MaxHeadroom2000 < at > gmail.com: edits. # ... [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Tera Online" PREFIX="TERA" EDITOR="EN MASSE Entertainment" GAME_URL="http://tera.enmasse.com/" AUTHOR="MaxHeadroom2000, Dadu042." WORKING_WINE_VERSION="4.0.1" # Starting the script POL_SetupWindow_Init POL_SetupWindow_SetID 1724 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Fix Installer crash (2016) Set_OS "win7" # Isolation POL_Install_PrivateUserDirs # Install mandatory dependencies # Needed for Tera launcher POL_Call POL_Install_d3dx9 POL_Call POL_Install_corefonts POL_Call POL_Install_xact # Needed for Tera game POL_Call POL_Install_vcrun2013 # # Was in 2016, function unknown as of 2019-05-22 # POL_Call POL_Install_xaudio # Make game run (graphics) # POL_Wine_Direct3D "UseGLSL" "enabled" # POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" # POL_Wine_Direct3D "Multisampling" "disabled" # POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Installing mandatory dependencies POL_Call POL_Install_winhttp # Choose between install from local client or use already downloaded client # POL_SetupWindow_InstallMethod "LOCAL,SKIP" POL_SetupWindow_InstallMethod "LOCAL" # Downloading client or choosing existing one mkdir -p "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" # Disable the autodownload option because the (old) file hosted is dated of 2017. # # POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" #if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # # Downloading client # cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" # POL_Download "http://patch.tera.enmasse-game.com/TERA-Setup.exe" # SETUP_EXE="$PWD/TERA-Setup.exe" #else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" #fi # Run the installer POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$SETUP_EXE" # POL_Wine $SETUP_EXE POL_Wine_WaitExit "$TITLE" # Fix The Mouse Bug (2016) # cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA/Client/S1Game/Config/" # mv S1Engine.ini S1Engine.ini.bkp # # URL down as of 2019-05-22: # POL_Download "https://dl.dropboxusercontent.com/u/64225173/S1Engine.ini" "955be01c4c34445d7dde2c2b5e13cda6" # Deleting temp files POL_System_TmpDelete # Making shortcut POL_Shortcut "TERA-Launcher.exe" "Tera Online" #Closing POL POL_SetupWindow_Close exit 0 RéponsesEdité par Dadu042 |
terryc | Samedi 17 Novembre 2018 à 8:47 |
terryc
|
MessagesThis always fails on MD5 mismatch of downloaed install file. Réponses |
troyfoxxin | Mercredi 11 Janvier 2017 à 11:23 |
troyfoxxin
|
Messages[01/11/17 05:14:48] - Running wine-1.7.17 --version (Working directory : /usr/share/playonlinux/python) PlayOnLinux logfile > PlayOnLinux Version [01/11/17 05:15:01] - Running wine-1.7.17 cmd /c echo %ProgramFiles% (Working directory : /usr/share/playonlinux/python) [HKEY_CURRENT_USER\Software\Wine\Direct3D] [HKEY_CURRENT_USER\Software\Wine\Direct3D] [HKEY_CURRENT_USER\Software\Wine\DllOverrides] Réponses |
dirk.hedlund | Vendredi 26 Aoüt 2016 à 5:52 |
dirk.hedlund
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesOkay, I don't really know what I'm doing, but I managed to make something work. I need some help with it, though. I used the TERA-Minimal-Setup.exe from http://tera.enmasse.com/download. To fix p11-kit: couldn't load module: To fix ntlm_auth was not found or is outdated And add the CA-Certificate as shown in the discussion below. Everything works, but I'm having problems with the FPS. I can't get more than single digits, regardless of the graphics preferences. I'm sure I'm missing something obvious, but I don't know what it is. Differences@@ -1,76 +1,97 @@ -#!/bin/bash -# Date : (2013-07-03 20:15) -# Last Modification Date : (2014-11-04 21:18) -# Wine version used : 1.7.17 -# Distribution used to test : Ubuntu 14.04 x64 -# Author : luyz25 - -[ "$PLAYONLINUX" = "" ] && exit 0 +#!/bin/bash --login +# Date : (2014-10-28 14:30) +# Last revision : (2016-08-25 00:00) +# Wine version used : 1.9.17-staging +# Distribution used to test : Ubuntu 16.04 +# Author : MaxHeadroom2000 < at > gmail.com +# License : GNU/GPL v3 + +[ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" - + TITLE="Tera Online" PREFIX="TERA" EDITOR="EN MASSE Entertainment" GAME_URL="http://tera.enmasse.com/" -AUTHOR="luyz25" - +AUTHOR="MaxHeadroom2000" +WORKING_WINE_VERSION="1.9.17-staging" + # Starting the script -POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top-new.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left-new.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1724 - + # Starting debugging API POL_Debug_Init - POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - -# Setting Wine Version -WORKING_WINE_VERSION="1.7.17" - -# Setting arch -POL_System_SetArch "x86" - + # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" - + # Downloading wine if necessary and creating prefix +POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" - -# Choose between Downloading client or using local one -POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" - + +# Create TMP directory +POL_System_TmpCreate "$PREFIX" + # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS - + # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver - -# Installing mandatory dependencies -POL_Call POL_Install_winhttp - + +# Fix Installer crash +Set_OS "win7" + +# Isolation +POL_Install_PrivateUserDirs + +# Install mandatory dependencies +# Needed for Tera launcher +POL_Call POL_Install_d3dx9 +POL_Call POL_Install_corefonts +POL_Call POL_Install_xact + +# Needed for Tera game +POL_Call POL_Install_xaudio +POL_Call POL_Install_vcrun2013 + +# Make game run +#POL_Wine_Direct3D "UseGLSL" "enabled" +#POL_Wine_Direct3D "DirectDrawRenderer" "opengl" +#POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" +#POL_Wine_Direct3D "Multisampling" "disabled" +#POL_Wine_Direct3D "StrictDrawOrdering" "enabled" + +# Choose between install from local client or use already downloaded client +POL_SetupWindow_InstallMethod "LOCAL,SKIP" + # Downloading client or choosing existing one -mkdir -p "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" -if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then - # Downloading client - cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" - POL_Download "http://patch.tera.enmasse-game.com/TERA-Setup.exe" "ee7e966a34d03b064d8bcf8188a222a3" - SETUP_EXE="$PWD/TERA-Setup.exe" -else - # Asking for client exe - cd "$HOME" - POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" - SETUP_EXE="$APP_ANSWER" +if [ "$INSTALL_METHOD" == "LOCAL" ]; then + # Asking for client exe + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + SETUP_EXE="$APP_ANSWER" + + # Run the install + POL_Wine_WaitBefore "$TITLE" + POL_Wine $SETUP_EXE + POL_Wine_WaitExit "$TITLE" +elif [ "$INSTALL_METHOD" == "SKIP" ]; then + : fi -POL_Wine start /unix "$SETUP_EXE" -POL_Wine_WaitExit "$TITLE" # Fix The Mouse Bug cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA/Client/S1Game/Config/" mv S1Engine.ini S1Engine.ini.bkp POL_Download "https://dl.dropboxusercontent.com/u/64225173/S1Engine.ini" "955be01c4c34445d7dde2c2b5e13cda6" + +# Deleting temp files +POL_System_TmpDelete # Making shortcut POL_Shortcut "TERA-Launcher.exe" "Tera Online" - + +#Closing POL POL_SetupWindow_Close -exit 0 +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash --login # Date : (2014-10-28 14:30) # Last revision : (2016-08-25 00:00) # Wine version used : 1.9.17-staging # Distribution used to test : Ubuntu 16.04 # Author : MaxHeadroom2000 < at > gmail.com # License : GNU/GPL v3 [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Tera Online" PREFIX="TERA" EDITOR="EN MASSE Entertainment" GAME_URL="http://tera.enmasse.com/" AUTHOR="MaxHeadroom2000" WORKING_WINE_VERSION="1.9.17-staging" # Starting the script POL_SetupWindow_Init POL_SetupWindow_SetID 1724 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Fix Installer crash Set_OS "win7" # Isolation POL_Install_PrivateUserDirs # Install mandatory dependencies # Needed for Tera launcher POL_Call POL_Install_d3dx9 POL_Call POL_Install_corefonts POL_Call POL_Install_xact # Needed for Tera game POL_Call POL_Install_xaudio POL_Call POL_Install_vcrun2013 # Make game run #POL_Wine_Direct3D "UseGLSL" "enabled" #POL_Wine_Direct3D "DirectDrawRenderer" "opengl" #POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" #POL_Wine_Direct3D "Multisampling" "disabled" #POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Choose between install from local client or use already downloaded client POL_SetupWindow_InstallMethod "LOCAL,SKIP" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" # Run the install POL_Wine_WaitBefore "$TITLE" POL_Wine $SETUP_EXE POL_Wine_WaitExit "$TITLE" elif [ "$INSTALL_METHOD" == "SKIP" ]; then : fi # Fix The Mouse Bug cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA/Client/S1Game/Config/" mv S1Engine.ini S1Engine.ini.bkp POL_Download "https://dl.dropboxusercontent.com/u/64225173/S1Engine.ini" "955be01c4c34445d7dde2c2b5e13cda6" # Deleting temp files POL_System_TmpDelete # Making shortcut POL_Shortcut "TERA-Launcher.exe" "Tera Online" #Closing POL POL_SetupWindow_Close exit 0 Réponses |
nefelim4ag | Lundi 16 Mai 2016 à 11:42 |
nefelim4ag
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesOnly problem: POL_CALL POL_Install_vcrun2013 not work Differences@@ -1,43 +1,38 @@ #!/bin/bash -# Date : (2013-07-03 20:15) -# Last Modification Date : (2014-11-04 21:18) -# Wine version used : 1.7.17 -# Distribution used to test : Ubuntu 14.04 x64 -# Author : luyz25 +# Date : (2014-10-28 14:30) +# Last revision : (2016-05-16 00:00) +# Wine version used : 1.9.9 +# Distribution used to test : Archlinux 2016-05 +# Author : Nefelim4ag < at > gmail.com +# License : GNU/GPL v3 -[ "$PLAYONLINUX" = "" ] && exit 0 +[ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Tera Online" PREFIX="TERA" EDITOR="EN MASSE Entertainment" GAME_URL="http://tera.enmasse.com/" -AUTHOR="luyz25" +AUTHOR="Nefelim4ag" +WORKING_WINE_VERSION="1.9.9" # Starting the script -POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top-new.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left-new.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1724 # Starting debugging API POL_Debug_Init - POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" -# Setting Wine Version -WORKING_WINE_VERSION="1.7.17" - -# Setting arch -POL_System_SetArch "x86" - # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix +POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" -# Choose between Downloading client or using local one -POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" +# Create TMP directory +POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS @@ -45,32 +40,54 @@ # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver -# Installing mandatory dependencies -POL_Call POL_Install_winhttp +# Fix Installer crash +Set_OS "winxp" + +# Isolation +POL_Install_PrivateUserDirs + +# Install mandatory dependencies +# Needed for Tera launcher +POL_Call POL_Install_d3dx9 +POL_Call POL_Install_corefonts +POL_Call POL_Install_xact + +# Needed for Tera game +POL_Call POL_Install_xaudio + +# Why it's not install???? +POL_CALL POL_Install_vcrun2013 + +POL_SetupWindow_message "PLEASE CHECK: must be installed: vcrun2013" "PLEASE CHECK" + +# Make game run +POL_Wine_Direct3D "UseGLSL" "enabled" +POL_Wine_Direct3D "DirectDrawRenderer" "opengl" +POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" +POL_Wine_Direct3D "Multisampling" "disabled" +POL_Wine_Direct3D "StrictDrawOrdering" "enabled" + +# Choose between install from local client or use already downloaded client +POL_SetupWindow_InstallMethod "LOCAL,SKIP" # Downloading client or choosing existing one -mkdir -p "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" -if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then - # Downloading client - cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" - POL_Download "http://patch.tera.enmasse-game.com/TERA-Setup.exe" "ee7e966a34d03b064d8bcf8188a222a3" - SETUP_EXE="$PWD/TERA-Setup.exe" -else - # Asking for client exe - cd "$HOME" - POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" - SETUP_EXE="$APP_ANSWER" +if [ "$INSTALL_METHOD" == "LOCAL" ]; then + # Asking for client exe + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + SETUP_EXE="$APP_ANSWER" + + # Run the install + POL_Wine_WaitBefore "$TITLE" + POL_Wine $SETUP_EXE + POL_Wine_WaitExit "$TITLE" +elif [ "$INSTALL_METHOD" == "SKIP" ]; then + : fi -POL_Wine start /unix "$SETUP_EXE" -POL_Wine_WaitExit "$TITLE" - -# Fix The Mouse Bug -cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA/Client/S1Game/Config/" -mv S1Engine.ini S1Engine.ini.bkp -POL_Download "https://dl.dropboxusercontent.com/u/64225173/S1Engine.ini" "955be01c4c34445d7dde2c2b5e13cda6" -# Making shortcut -POL_Shortcut "TERA-Launcher.exe" "Tera Online" +# Deleting temp files +POL_System_TmpDelete +#Closing POL POL_SetupWindow_Close exit 0 Nouveau code source#!/bin/bash # Date : (2014-10-28 14:30) # Last revision : (2016-05-16 00:00) # Wine version used : 1.9.9 # Distribution used to test : Archlinux 2016-05 # Author : Nefelim4ag < at > gmail.com # License : GNU/GPL v3 [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Tera Online" PREFIX="TERA" EDITOR="EN MASSE Entertainment" GAME_URL="http://tera.enmasse.com/" AUTHOR="Nefelim4ag" WORKING_WINE_VERSION="1.9.9" # Starting the script POL_SetupWindow_Init POL_SetupWindow_SetID 1724 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Fix Installer crash Set_OS "winxp" # Isolation POL_Install_PrivateUserDirs # Install mandatory dependencies # Needed for Tera launcher POL_Call POL_Install_d3dx9 POL_Call POL_Install_corefonts POL_Call POL_Install_xact # Needed for Tera game POL_Call POL_Install_xaudio # Why it's not install???? POL_CALL POL_Install_vcrun2013 POL_SetupWindow_message "PLEASE CHECK: must be installed: vcrun2013" "PLEASE CHECK" # Make game run POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" POL_Wine_Direct3D "Multisampling" "disabled" POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Choose between install from local client or use already downloaded client POL_SetupWindow_InstallMethod "LOCAL,SKIP" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" # Run the install POL_Wine_WaitBefore "$TITLE" POL_Wine $SETUP_EXE POL_Wine_WaitExit "$TITLE" elif [ "$INSTALL_METHOD" == "SKIP" ]; then : fi # Deleting temp files POL_System_TmpDelete #Closing POL POL_SetupWindow_Close exit 0 RéponsesDimanche 21 Aoüt 2016 à 8:52
Dimanche 21 Aoüt 2016 à 8:52
|
nefelim4ag | Lundi 16 Mai 2016 à 11:09 |
nefelim4ag
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesHi guys, i try to write new and simple version of tera intaller Differences@@ -1,21 +1,20 @@ #!/bin/bash -# Date : (2013-07-03 20:15) -# Last Modification Date : (2014-11-04 21:18) -# Wine version used : 1.7.17 -# Distribution used to test : Ubuntu 14.04 x64 -# Author : luyz25 +# Last revision : (2016-05-16 12:00) +# Wine version used : 1.9.9 +# Distribution used to test : Archlinux 2016-05 +# Author : Nefelim4ag < at > gmail.com +# License : GNU/GPL v3 -[ "$PLAYONLINUX" = "" ] && exit 0 +[ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Tera Online" PREFIX="TERA" EDITOR="EN MASSE Entertainment" GAME_URL="http://tera.enmasse.com/" -AUTHOR="luyz25" +AUTHOR="Nefelim4ag" # Starting the script -POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top-new.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left-new.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1724 @@ -25,19 +24,17 @@ POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version -WORKING_WINE_VERSION="1.7.17" - -# Setting arch -POL_System_SetArch "x86" +WORKING_WINE_VERSION="1.9.9" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix +POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" -# Choose between Downloading client or using local one -POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" +# Create TMP directory +POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS @@ -45,32 +42,43 @@ # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver -# Installing mandatory dependencies -POL_Call POL_Install_winhttp +# Install mandatory dependencies +# Needed for Tera launcher +POL_Call POL_Install_d3dx9 +POL_Call POL_Install_corefonts +POL_Call POL_Install_xact +# Needed for Tera game +POL_Call POL_Install_xaudio +POL_CALL POL_Install_vcrun2013 +# Fix Installer crash +Set_OS "winxp" + +# Choose between Downloading client or using local one or STEAM version +POL_SetupWindow_InstallMethod "LOCAL" # Downloading client or choosing existing one -mkdir -p "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" -if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then - # Downloading client - cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" - POL_Download "http://patch.tera.enmasse-game.com/TERA-Setup.exe" "ee7e966a34d03b064d8bcf8188a222a3" - SETUP_EXE="$PWD/TERA-Setup.exe" -else - # Asking for client exe - cd "$HOME" - POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" - SETUP_EXE="$APP_ANSWER" +if [ "$INSTALL_METHOD" == "LOCAL" ]; then + # Asking for client exe + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + SETUP_EXE="$APP_ANSWER" fi -POL_Wine start /unix "$SETUP_EXE" + +# Run the install +POL_Wine_WaitBefore "$TITLE" +POL_Wine $SETUP_EXE POL_Wine_WaitExit "$TITLE" -# Fix The Mouse Bug -cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA/Client/S1Game/Config/" -mv S1Engine.ini S1Engine.ini.bkp -POL_Download "https://dl.dropboxusercontent.com/u/64225173/S1Engine.ini" "955be01c4c34445d7dde2c2b5e13cda6" +# Fix Graphic bugs +POL_Wine_Direct3D "UseGLSL" "enabled" +POL_Wine_Direct3D "DirectDrawRenderer" "opengl" +POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" +POL_Wine_Direct3D "Multisampling" "disabled" +POL_Wine_Direct3D "StrictDrawOrdering" "enabled" -# Making shortcut -POL_Shortcut "TERA-Launcher.exe" "Tera Online" +# Deleting temp files +POL_System_TmpDelete +#Closing POL POL_SetupWindow_Close exit 0 Nouveau code source#!/bin/bash # Last revision : (2016-05-16 12:00) # Wine version used : 1.9.9 # Distribution used to test : Archlinux 2016-05 # Author : Nefelim4ag < at > gmail.com # License : GNU/GPL v3 [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Tera Online" PREFIX="TERA" EDITOR="EN MASSE Entertainment" GAME_URL="http://tera.enmasse.com/" AUTHOR="Nefelim4ag" # Starting the script POL_SetupWindow_Init POL_SetupWindow_SetID 1724 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="1.9.9" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Install mandatory dependencies # Needed for Tera launcher POL_Call POL_Install_d3dx9 POL_Call POL_Install_corefonts POL_Call POL_Install_xact # Needed for Tera game POL_Call POL_Install_xaudio POL_CALL POL_Install_vcrun2013 # Fix Installer crash Set_OS "winxp" # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "LOCAL" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi # Run the install POL_Wine_WaitBefore "$TITLE" POL_Wine $SETUP_EXE POL_Wine_WaitExit "$TITLE" # Fix Graphic bugs POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" POL_Wine_Direct3D "Multisampling" "disabled" POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Deleting temp files POL_System_TmpDelete #Closing POL POL_SetupWindow_Close exit 0 Réponses |
Executum | Jeudi 28 Avril 2016 à 12:39 |
Executum
|
MessagesAu moment ou j'ouvre le launcher.
0x1045a910: int $3
Réponses |
DiscipleOfDante | Lundi 12 Octobre 2015 à 16:04 |
DiscipleOfDante
|
MessagesI open the launcher and it almost immediately crashes. I ran debug but the output seems like pure GobbledyGook. I am running a fully up-to-date Chakra Linux install with Plasma 5. I have tried pretty much every WINE version out there with the same results. Here is my debugger output http://hastebin.com/isufavayov.avrasm Réponses |
semper | Vendredi 4 September 2015 à 14:19 |
semper
|
MessagesBonjour à vous, j esaye d installer tera online sur arch linux avec une interface cinnamon. Ma vesion de Pol est : 4.2.8 je n'ai aucun problème à l installation puis quand le jeux se lance l'interface du jeux disparait de mon ecran. Je peut uniquement la voir dans les bureaux virtuels mais des que je clique dessus elle disparait, je me retrouve sur mon bureau avec le curssur du jeux uniquement et bien sur mon bureau normal. J'ai fait un essais avec un bureau gnome la j'arrive sur le jeux mais des que je clique sur un personnage pour le selectionner le probleme est le meme. Réponses |
kassiotelles | Vendredi 24 Juillet 2015 à 23:43 |
kassiotelles
|
Messages[0724/184137:FATAL:x509_certificate_win.cc(1109)] Check failed: oid_info. : Sucesso.
I do not know what else to try to correct this error Réponses |
Satsuryokoi | Samedi 30 Mai 2015 à 13:27 |
Satsuryokoi
|
MessagesL'installateur POL ne fonctionne pas pour tera mais si on passe par l'instalateur de AION, on telecharge gameforge, à partir de gameforge on peu installer TERA. Le jeu se lance mais il y a un problème que je ne peut pas resoudre, quand je prend une quete le jeu plante sans la prendre. J'aimerais savoir si quelqu'un a reussi a faire tourner le jeu correctement, cordialement.
Réponses |
zaylman | Mercredi 29 Avril 2015 à 19:27 |
zaylman
|
MessagesHas anybody had any success with this? I really want to move to Ubuntu Gnome but I want to conitune playing tera and I don't want to dual boot. Réponses |
vulpineblazeyt | Jeudi 9 Avril 2015 à 0:56 |
vulpineblazeyt
|
MessagesI am having this below error when trying to run Tera: I was able to install and I see the login screen and I breifly see that the game attempts and/or succesfully updates, then it crashes. Pasted below is the debug output. [04/08/15 15:53:55] - Running wine-1.7.17 TERA-Launcher.exe (Working directory : /home/quaid/.PlayOnLinux/wineprefix/TERA/drive_c/Program Files/TERA) Réponses |
lordgiddion | Mardi 3 Mars 2015 à 14:59 |
lordgiddion
|
MessagesIs there any work around for the current crashing of the patcher? I tried copying a full tera install from a windows machine that was already patched and it still won't launch. RéponsesVendredi 6 Mars 2015 à 18:51
Vendredi 6 Mars 2015 à 20:05
Vendredi 6 Mars 2015 à 20:06
Vendredi 6 Mars 2015 à 20:56
|
Ysls93 | Samedi 21 Février 2015 à 4:58 |
Ysls93
|
MessagesDoes this stand for USA Tera? or EU Tera? RéponsesDimanche 22 Février 2015 à 2:23
Dimanche 22 Février 2015 à 18:09
Dimanche 22 Février 2015 à 18:10
Dimanche 22 Février 2015 à 18:10
|
FoxXav | Mercredi 11 Février 2015 à 20:34 |
FoxXav
|
MessagesHi,
I have the same issue as tarner. it seems the last big update of TERA changes some stuff so the launcher crash after displaying the login form.
Hope something can be done :-)
See you Réponses |
online0227 | Mercredi 4 Février 2015 à 14:23 |
online0227
|
MessagesThe Tera Launcher is unable to load the downloader.dll or patcher.dll file. Réponses |
antek | Dimanche 18 Janvier 2015 à 15:32 |
antek
|
MessagesBonjour, j'ai réussi à télécharger le setup de tera, mais dès que je le lance, il plante, j'ai essayé les solutions données sur cette page, y compris le code donné par l'auteur, sans résultat, j'aimerais donc savoir si vous connaissez une solution à ce probléme, merci. Réponses |
tarner | Jeudi 15 Janvier 2015 à 13:50 |
tarner
|
Messagesi installed through playonlinux and the launcher crashes after the login window pops up, i tried to solve using the guide in the luyz25's post (certificate), but the problem is not solved, help me pls :)
RéponsesJeudi 15 Janvier 2015 à 13:52
Jeudi 26 Février 2015 à 22:15
|
luyz25 | Vendredi 14 Novembre 2014 à 22:56 |
luyz25
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -27,6 +27,9 @@ # Setting Wine Version WORKING_WINE_VERSION="1.7.17" +# Setting arch +POL_System_SetArch "x86" + # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" Nouveau code source#!/bin/bash # Date : (2013-07-03 20:15) # Last Modification Date : (2014-11-04 21:18) # Wine version used : 1.7.17 # Distribution used to test : Ubuntu 14.04 x64 # Author : luyz25 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Tera Online" PREFIX="TERA" EDITOR="EN MASSE Entertainment" GAME_URL="http://tera.enmasse.com/" AUTHOR="luyz25" # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top-new.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left-new.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1724 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="1.7.17" # Setting arch POL_System_SetArch "x86" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Choose between Downloading client or using local one POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Installing mandatory dependencies POL_Call POL_Install_winhttp # Downloading client or choosing existing one mkdir -p "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" POL_Download "http://patch.tera.enmasse-game.com/TERA-Setup.exe" "ee7e966a34d03b064d8bcf8188a222a3" SETUP_EXE="$PWD/TERA-Setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Fix The Mouse Bug cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA/Client/S1Game/Config/" mv S1Engine.ini S1Engine.ini.bkp POL_Download "https://dl.dropboxusercontent.com/u/64225173/S1Engine.ini" "955be01c4c34445d7dde2c2b5e13cda6" # Making shortcut POL_Shortcut "TERA-Launcher.exe" "Tera Online" POL_SetupWindow_Close exit 0 RéponsesVendredi 14 Novembre 2014 à 23:49
Samedi 15 Novembre 2014 à 1:07
Samedi 15 Novembre 2014 à 2:35
Samedi 15 Novembre 2014 à 2:42
Samedi 15 Novembre 2014 à 8:39
|
luyz25 | Jeudi 6 Novembre 2014 à 12:47 |
luyz25
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -27,6 +27,9 @@ # Setting Wine Version WORKING_WINE_VERSION="1.7.17" +# Setting arch +POL_System_SetArch "x32" + # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" Nouveau code source#!/bin/bash # Date : (2013-07-03 20:15) # Last Modification Date : (2014-11-04 21:18) # Wine version used : 1.7.17 # Distribution used to test : Ubuntu 14.04 x64 # Author : luyz25 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Tera Online" PREFIX="TERA" EDITOR="EN MASSE Entertainment" GAME_URL="http://tera.enmasse.com/" AUTHOR="luyz25" # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top-new.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left-new.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1724 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="1.7.17" # Setting arch POL_System_SetArch "x32" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Choose between Downloading client or using local one POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Installing mandatory dependencies POL_Call POL_Install_winhttp # Downloading client or choosing existing one mkdir -p "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" POL_Download "http://patch.tera.enmasse-game.com/TERA-Setup.exe" "ee7e966a34d03b064d8bcf8188a222a3" SETUP_EXE="$PWD/TERA-Setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Fix The Mouse Bug cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA/Client/S1Game/Config/" mv S1Engine.ini S1Engine.ini.bkp POL_Download "https://dl.dropboxusercontent.com/u/64225173/S1Engine.ini" "955be01c4c34445d7dde2c2b5e13cda6" # Making shortcut POL_Shortcut "TERA-Launcher.exe" "Tera Online" POL_SetupWindow_Close exit 0 Réponses |
petch | Mardi 4 Novembre 2014 à 21:18 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesForce use of 32bit Wine Differences@@ -1,6 +1,6 @@ #!/bin/bash # Date : (2013-07-03 20:15) -# Last Modification Date : (2014-05-27 22:25) +# Last Modification Date : (2014-11-04 21:18) # Wine version used : 1.7.17 # Distribution used to test : Ubuntu 14.04 x64 # Author : luyz25 @@ -31,7 +31,6 @@ POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix -POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Choose between Downloading client or using local one Nouveau code source#!/bin/bash # Date : (2013-07-03 20:15) # Last Modification Date : (2014-11-04 21:18) # Wine version used : 1.7.17 # Distribution used to test : Ubuntu 14.04 x64 # Author : luyz25 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Tera Online" PREFIX="TERA" EDITOR="EN MASSE Entertainment" GAME_URL="http://tera.enmasse.com/" AUTHOR="luyz25" # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top-new.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left-new.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1724 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="1.7.17" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Choose between Downloading client or using local one POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Installing mandatory dependencies POL_Call POL_Install_winhttp # Downloading client or choosing existing one mkdir -p "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" POL_Download "http://patch.tera.enmasse-game.com/TERA-Setup.exe" "ee7e966a34d03b064d8bcf8188a222a3" SETUP_EXE="$PWD/TERA-Setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Fix The Mouse Bug cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA/Client/S1Game/Config/" mv S1Engine.ini S1Engine.ini.bkp POL_Download "https://dl.dropboxusercontent.com/u/64225173/S1Engine.ini" "955be01c4c34445d7dde2c2b5e13cda6" # Making shortcut POL_Shortcut "TERA-Launcher.exe" "Tera Online" POL_SetupWindow_Close exit 0 RéponsesMercredi 5 Novembre 2014 à 4:28
Vendredi 14 Novembre 2014 à 21:19
|
randym | Mardi 4 Novembre 2014 à 10:10 |
randym
|
MessagesThe auto arch is defaulting to an x64 prefix. I don't think this is working. According to the winehq entry is should be installed in a 32bit prefix, although I still can't get it running with a manual install in a 32bit prefix. The launcher constantly crashes before I can authenticate or try and patch. Any thoughts? Réponses |
luyz25 | Jeudi 25 September 2014 à 4:18 |
luyz25
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesI added the winhttp in installation. If the problem of the launcher continues, do this steps: Add certificate: 1. cd /usr/share/ca-certificates/ 2. sudo mkdir custom 3. sudo touch /usr/share/ca-certificates/custom/Thawte_CS_CA_G2.crt 4. Open with your editor of choice, for me it's leafpad: gksudo leafpad /usr/share/ca-certificates/custom/Thawte_CS_CA_G2.crt 5. Paste in the following: -----BEGIN CERTIFICATE----- MIIEnDCCA4SgAwIBAgIQR5dNeHOlvKsNL7NwGS/OXjANBgkqhkiG9w0BAQUFADCB qTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMf Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIw MDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxHzAdBgNV BAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwHhcNMTAwMjA4MDAwMDAwWhcNMjAw MjA3MjM1OTU5WjBKMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMVGhhd3RlLCBJbmMu MSQwIgYDVQQDExtUaGF3dGUgQ29kZSBTaWduaW5nIENBIC0gRzIwggEiMA0GCSqG SIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3i891W58l2n45sJPbONOpI9CC+ukkflwL joP45npZ5qPFmKeZ0kT/AKalOQSK2imI6tui8xyZFSbCsfT84QxHqQkRBgogkrnH oASMXJQZq1slLB1ifnANzmFs3SuCyc5dSF/3wr68QSMeTyld10+89MUq/GPmfCZO mad5QZ4QSnp5ycaG94aV0ibOPBgq1nzOr82tu/eCLHAmN0XlD0cixgEovS6DXGqk R8Hn0NhrgUY/IRf1B8VDWqZnLLh7YBG1g+71dApycUQ9WP7oGqs4w1nbf244fXbH cmmYNpZX02Yc0lSRBC5UGbDcPbUiXobVKn4g313merFl/sUCTjEtAgMBAAGjggEc MIIBGDASBgNVHRMBAf8ECDAGAQH/AgEAMDQGA1UdHwQtMCswKaAnoCWGI2h0dHA6 Ly9jcmwudGhhd3RlLmNvbS9UaGF3dGVQQ0EuY3JsMA4GA1UdDwEB/wQEAwIBBjAy BggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAGGFmh0dHA6Ly9vY3NwLnRoYXd0ZS5j b20wHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMDMCkGA1UdEQQiMCCkHjAc MRowGAYDVQQDExFWZXJpU2lnbk1QS0ktMi0xMDAdBgNVHQ4EFgQU1A1lP3q9NMb+ R+dMDcC98t4Vq3EwHwYDVR0jBBgwFoAUe1tFz6/Oy3r9MZIaarbzRutXSFAwDQYJ KoZIhvcNAQEFBQADggEBAFb+U1zhx568p+1+U21qFEtRjEBegF+qpOgv7zjIBMnK Ps/fOlhOsNS2Y8UpV/oCBZpFTWjbKhvUND2fAMNay5VJpW7hsMX8QU1BSm/Td8jX OI3kGd4Y8x8VZYNtRQxT+QqaLqVdv28ygRiSGWpVAK1jHFIGflXZKWiuSnwYmnmI ayMj2Cc4KimHdsr7x7ZiIx/telZM3ZwyW/U9DEYYlTsqI2iDZEHZAG0PGSQVaHK9 xXFnbqxM25DrUaUaYgfQvmoARzxyL+xPYT5zhc5aCre6wBwTdeMiOSjdbR0JRp1P uuhAgZHGpM6UchsBzypuFWeVia59t7fN+Qo9dbZrPCU= -----END CERTIFICATE----- 6. Save. 6b. (optional) I also did the following though I'm fairly certain it's not necessary: cd /usr/share/ca-certificates/custom sudo chmod -R 775 ./ 7. sudo su 8. echo “custom/Thawte_CS_CA_G2.crt” >> /etc/ca-certificates.conf 9. Exit su exit 10. Open /etc/ca-certificates.conf and delete the quotation marks around custom/Thawte_CS_CA_G2.crt at the very bottom. So it goes from "custom/Thawte_CS_CA_G2.crt" to custom/Thawte_CS_CA_G2.crt 11. sudo update-ca-certificates Retrieved from: https://appdb.winehq.org/objectManager.php?sClass=version&iId=26128 Differences@@ -43,6 +43,9 @@ # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver +# Installing mandatory dependencies +POL_Call POL_Install_winhttp + # Downloading client or choosing existing one mkdir -p "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then Nouveau code source#!/bin/bash # Date : (2013-07-03 20:15) # Last Modification Date : (2014-05-27 22:25) # Wine version used : 1.7.17 # Distribution used to test : Ubuntu 14.04 x64 # Author : luyz25 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Tera Online" PREFIX="TERA" EDITOR="EN MASSE Entertainment" GAME_URL="http://tera.enmasse.com/" AUTHOR="luyz25" # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top-new.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left-new.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1724 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="1.7.17" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Choose between Downloading client or using local one POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Installing mandatory dependencies POL_Call POL_Install_winhttp # Downloading client or choosing existing one mkdir -p "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA" POL_Download "http://patch.tera.enmasse-game.com/TERA-Setup.exe" "ee7e966a34d03b064d8bcf8188a222a3" SETUP_EXE="$PWD/TERA-Setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Fix The Mouse Bug cd "$WINEPREFIX/drive_c/$PROGRAMFILES/TERA/Client/S1Game/Config/" mv S1Engine.ini S1Engine.ini.bkp POL_Download "https://dl.dropboxusercontent.com/u/64225173/S1Engine.ini" "955be01c4c34445d7dde2c2b5e13cda6" # Making shortcut POL_Shortcut "TERA-Launcher.exe" "Tera Online" POL_SetupWindow_Close exit 0 RéponsesMercredi 3 Juin 2015 à 13:13
|
Gelly | Jeudi 18 September 2014 à 4:51 |
Gelly
|
MessagesHi I hope you can resolve this problem ASAP as you should listen to the customer's voice and Tera Online is a game that MANY mac/linux users are eager for. Again, the community's voice is what makes you guys grow and develop. So basically, I have successfully installed the Tera-launcher.exe and it can open, however, after a few seconds apon opening it pops up a window saying "The Program Tera-Launcher.exe has encountered a serious problem and needs to close. We are sorry for the inconvenience." I don't know how to solve this issue and I hope someone can help me. Thank you. Réponses |
sam666 | Dimanche 14 September 2014 à 19:04 |
sam666
|
MessagesBonjour,
J'ai eu plusieurs erreurs en tentant de l'installer via le POL script, notamment : - Pendant l'update j'ai un "unable to download manifest" - Même chose mais avec "unable to unzip manifest" - Et quand je change le launcher par celui fournit gracieusement par un des gamers, il me sort "unknown file error" J'ai essayé toutes les solutions proposés par leur support ET celui de la communauté présente sur le forum TERA, notamment : - Ajouté/Retiré l'ip du serveur patch du /etc/hosts - Modifié les entrées DNS du fichier /etc/resolv.conf - Supprimer le Cache (%appdata%/TERA), supprimer les fichiers Live-*.version, et pleins d'autres choses. Après plusieurs heures de bataille, j'ai trouvé une solution simple : Je suis passé par l'installeur GameForge Live utilisé dans le jeu AEION présent sur POL. Cet installeur propose différent jeux dont *TERA*, il est indépendant de l'installeur de TERA.
A bon entendeurs. Ciao. RéponsesJeudi 28 Mai 2015 à 13:14
|
Enkouyami | Vendredi 4 Juillet 2014 à 1:20 |
Enkouyami
|
MessagesI'ts a good looking script, but The Tera Online launcher keeps crashing and the login window doesn't always show up, which are probable a bug in the launcher and wine.
Here's l og of that happened when I installed it: http://pastebin.com/tbCRR9XT
Here'es what happened when I tried to install it without the script: http://www.mediafire.com/view/rdikjxq1b3v7g1g/playonlinux.log
I made a wine bug report with backtraces here: http://bugs.winehq.org/show_bug.cgi?id=36845 Réponses |
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