Tera (Online)
Informations
Creator | Message |
---|---|
luyz25
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks2 15 DescriptionSource code#!/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:
ContributeMember | Message |
terryc | Monday 14 June 2021 at 9:53 |
terryc
|
MessageSorry, 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. Replies |
Dadu042 | Monday 8 June 2020 at 17:44 |
Dadu042
|
InformationThis update has been approved by the team. MessageTera 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 New source code#!/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 Replies |
Dadu042 | Wednesday 22 May 2019 at 9:00 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageRead 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 New source code#!/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 RepliesEdited by Dadu042 |
terryc | Saturday 17 November 2018 at 8:47 |
terryc
|
MessageThis always fails on MD5 mismatch of downloaed install file. Replies |
troyfoxxin | Wednesday 11 January 2017 at 11:23 |
troyfoxxin
|
Message[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] Replies |
dirk.hedlund | Friday 26 August 2016 at 5:52 |
dirk.hedlund
|
WarningThis update has not been approved yet by the team. MessageOkay, 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 New source code#!/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 Replies |
nefelim4ag | Monday 16 May 2016 at 11:42 |
nefelim4ag
|
WarningThis update has not been approved yet by the team. MessageOnly 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 New source code#!/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 RepliesSunday 21 August 2016 at 8:52
Sunday 21 August 2016 at 8:52
|
nefelim4ag | Monday 16 May 2016 at 11:09 |
nefelim4ag
|
WarningThis update has not been approved yet by the team. MessageHi 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 New source code#!/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 Replies |
Executum | Thursday 28 April 2016 at 12:39 |
Executum
|
MessageAu moment ou j'ouvre le launcher.
0x1045a910: int $3
Replies |
DiscipleOfDante | Monday 12 October 2015 at 16:04 |
DiscipleOfDante
|
MessageI 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 Replies |
semper | Friday 4 September 2015 at 14:19 |
semper
|
MessageBonjour à 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. Replies |
kassiotelles | Friday 24 July 2015 at 23:43 |
kassiotelles
|
Message[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 Replies |
Satsuryokoi | Saturday 30 May 2015 at 13:27 |
Satsuryokoi
|
MessageL'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.
Replies |
zaylman | Wednesday 29 April 2015 at 19:27 |
zaylman
|
MessageHas 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. Replies |
vulpineblazeyt | Thursday 9 April 2015 at 0:56 |
vulpineblazeyt
|
MessageI 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) Replies |
lordgiddion | Tuesday 3 March 2015 at 14:59 |
lordgiddion
|
MessageIs 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. RepliesFriday 6 March 2015 at 18:51
Friday 6 March 2015 at 20:05
Friday 6 March 2015 at 20:06
Friday 6 March 2015 at 20:56
|
Ysls93 | Saturday 21 February 2015 at 4:58 |
Ysls93
|
MessageDoes this stand for USA Tera? or EU Tera? RepliesSunday 22 February 2015 at 2:23
Sunday 22 February 2015 at 18:09
Sunday 22 February 2015 at 18:10
Sunday 22 February 2015 at 18:10
|
FoxXav | Wednesday 11 February 2015 at 20:34 |
FoxXav
|
MessageHi,
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 Replies |
online0227 | Wednesday 4 February 2015 at 14:23 |
online0227
|
MessageThe Tera Launcher is unable to load the downloader.dll or patcher.dll file. Replies |
antek | Sunday 18 January 2015 at 15:32 |
antek
|
MessageBonjour, 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. Replies |
tarner | Thursday 15 January 2015 at 13:50 |
tarner
|
Messagei 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 :)
RepliesThursday 15 January 2015 at 13:52
Thursday 26 February 2015 at 22:15
|
luyz25 | Friday 14 November 2014 at 22:56 |
luyz25
|
WarningThis update has not been approved yet by the team. 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" New source code#!/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 RepliesFriday 14 November 2014 at 23:49
Saturday 15 November 2014 at 1:07
Saturday 15 November 2014 at 2:35
Saturday 15 November 2014 at 2:42
Saturday 15 November 2014 at 8:39
|
luyz25 | Thursday 6 November 2014 at 12:47 |
luyz25
|
WarningThis update has not been approved yet by the team. 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" New source code#!/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 Replies |
petch | Tuesday 4 November 2014 at 21:18 |
petch
|
WarningThis update has not been approved yet by the team. MessageForce 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 New source code#!/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 RepliesWednesday 5 November 2014 at 4:28
Friday 14 November 2014 at 21:19
|
randym | Tuesday 4 November 2014 at 10:10 |
randym
|
MessageThe 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? Replies |
luyz25 | Thursday 25 September 2014 at 4:18 |
luyz25
|
WarningThis update has not been approved yet by the team. MessageI 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 New source code#!/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 RepliesWednesday 3 June 2015 at 13:13
|
Gelly | Thursday 18 September 2014 at 4:51 |
Gelly
|
MessageHi 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. Replies |
sam666 | Sunday 14 September 2014 at 19:04 |
sam666
|
MessageBonjour,
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. RepliesThursday 28 May 2015 at 13:14
|
Enkouyami | Friday 4 July 2014 at 1:20 |
Enkouyami
|
MessageI'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 Replies |
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