AION
Informations
Créateur | Messages |
---|---|
SuperPlumus
|
AttentionThis installer is a beta script. It means that it might not work as expected InformationsPlate-formes : Retours d'expérience2 6 DescriptionMMO RPG game, first release in 2008 (Wikipedia). Warning: this game need +30 GB storage free (2018). Captures d'écranCode source#!/bin/bash # Date : (2013-09-10 20-36) # Last revision : see changelog # Distribution used to test : Xubuntu 18.04 # Author: SuperPlumus and legluondunet # CHANGELOG # [SuperPlumus] (2013-09-10 20-36) # Initial writting (based on http://www.playonlinux.com/fr/topic-9394.html). # [Legluondunet] (2014 ?) # ? # [Ronin DUSETTE] (2015) # Added declaration for WinXP, just to make sure that it defaults to that. # Added Set_OS command earlier. # Updating to fix bugs: http://www.playonlinux.com/en/issue-4998.html # [Playpal] (2016) # The game launcher requires dotnet to display the web page inside correctly, I don't know if they game actually needs it. Tested with wine stable 1.8.2. # [Dadu042] (2019-05-23) # Fix wine prefix creation fail on Xubuntu 19.04 # [Dadu042] (2019-06-03) # Fix 'AION_GameForgeLiveSetup.exe' does not open on the display (only blue background). # Change Set_Arch from Auto to x86. Add POL functions (msxml3, corefonts) # [Dadu042] (2020-07-29) # [IMPROVED] POL_Shortcut # [CHANGED] Wine 2.22 -> 3.0.3 (not tested but should work. Perhaps 4.0.4 should be OK with POL v4.3) # [IMPROVED] Changelog [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="AION" PREFIX="Aion" WORKING_WINE_VERSION="3.0.3" POL_SetupWindow_Init # for POL_LoadVar_ScreenResolution POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE 4.2.12 is required to install $TITLE" POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "NCsoft" "" "SuperPlumus and Legluondunet" "$PREFIX" ################## # LET'S GO # ################## POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" POL_LoadVar_ScreenResolution Set_Desktop "On" "$ScreenWidth" "$ScreenHeight" POL_Call POL_Install_vcrun2005 POL_Call POL_Install_msxml3 POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma ################## # REGISTRY HACK # ################## cat << EOF > "$POL_System_TmpDir/RegModif.reg" REGEDIT4 [HKEY_CURRENT_USER\Software\Gameforge4d\GameforgeLive\MainApp] "ActionOnCloseWindow"="Quit" EOF regedit "$POL_System_TmpDir/RegModif.reg" # 2014 hack (Wine 1.7.36). Related to ? : http://www.gamersonlinux.com/forum/threads/wine-1-7-51-steam-dwrite-fixed.1523/ POL_Wine_OverrideDLL disabled dwrite ########################## # DOWNLOAD then INSTALL # ########################## cd "$WINEPREFIX/drive_c" POL_Download "http://dlcl.gfsrv.net/gfl/AION_GameforgeLiveSetup.exe" "" POL_Wine_WaitBefore "$TITLE" POL_Wine "AION_GameforgeLiveSetup.exe" POL_Wine_WaitExit "$TITLE" POL_System_TmpDelete POL_Shortcut "GameforgeLive.exe" "$TITLE" "" "" "Game;" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
Dadu042 | Mercredi 29 Juillet 2020 à 11:43 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -5,21 +5,32 @@ # Author: SuperPlumus and legluondunet # CHANGELOG -# [Dadu042] (2019-06-03) -# Fix 'AION_GameForgeLiveSetup.exe' does not open on the display (only blue background). -# Change Set_Arch from Auto to x86. Add POL functions (msxml3, corefonts) -# [Dadu042] (2019-05-23) -# Fix wine prefix creation fail on Xubuntu 19.04 -# [Legluondunet] # [SuperPlumus] (2013-09-10 20-36) # Initial writting (based on http://www.playonlinux.com/fr/topic-9394.html). +# [Legluondunet] (2014 ?) +# ? +# [Ronin DUSETTE] (2015) +# Added declaration for WinXP, just to make sure that it defaults to that. +# Added Set_OS command earlier. +# Updating to fix bugs: http://www.playonlinux.com/en/issue-4998.html +# [Playpal] (2016) +# The game launcher requires dotnet to display the web page inside correctly, I don't know if they game actually needs it. Tested with wine stable 1.8.2. +# [Dadu042] (2019-05-23) +# Fix wine prefix creation fail on Xubuntu 19.04 +# [Dadu042] (2019-06-03) +# Fix 'AION_GameForgeLiveSetup.exe' does not open on the display (only blue background). +# Change Set_Arch from Auto to x86. Add POL functions (msxml3, corefonts) +# [Dadu042] (2020-07-29) +# [IMPROVED] POL_Shortcut +# [CHANGED] Wine 2.22 -> 3.0.3 (not tested but should work. Perhaps 4.0.4 should be OK with POL v4.3) +# [IMPROVED] Changelog [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="AION" PREFIX="Aion" -WORKING_WINE_VERSION="2.22" +WORKING_WINE_VERSION="3.0.3" POL_SetupWindow_Init @@ -29,7 +40,11 @@ POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "NCsoft" "" "SuperPlumus and Legluondunet" "$PREFIX" - + +################## +# LET'S GO # +################## + POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" @@ -44,6 +59,10 @@ POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma +################## +# REGISTRY HACK # +################## + cat << EOF > "$POL_System_TmpDir/RegModif.reg" REGEDIT4 @@ -52,9 +71,13 @@ EOF regedit "$POL_System_TmpDir/RegModif.reg" +# 2014 hack (Wine 1.7.36). Related to ? : http://www.gamersonlinux.com/forum/threads/wine-1-7-51-steam-dwrite-fixed.1523/ POL_Wine_OverrideDLL disabled dwrite - +########################## +# DOWNLOAD then INSTALL # +########################## + cd "$WINEPREFIX/drive_c" POL_Download "http://dlcl.gfsrv.net/gfl/AION_GameforgeLiveSetup.exe" "" POL_Wine_WaitBefore "$TITLE" @@ -63,7 +86,7 @@ POL_System_TmpDelete -POL_Shortcut "GameforgeLive.exe" "$TITLE" +POL_Shortcut "GameforgeLive.exe" "$TITLE" "" "" "Game;" POL_SetupWindow_Close exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2013-09-10 20-36) # Last revision : see changelog # Distribution used to test : Xubuntu 18.04 # Author: SuperPlumus and legluondunet # CHANGELOG # [SuperPlumus] (2013-09-10 20-36) # Initial writting (based on http://www.playonlinux.com/fr/topic-9394.html). # [Legluondunet] (2014 ?) # ? # [Ronin DUSETTE] (2015) # Added declaration for WinXP, just to make sure that it defaults to that. # Added Set_OS command earlier. # Updating to fix bugs: http://www.playonlinux.com/en/issue-4998.html # [Playpal] (2016) # The game launcher requires dotnet to display the web page inside correctly, I don't know if they game actually needs it. Tested with wine stable 1.8.2. # [Dadu042] (2019-05-23) # Fix wine prefix creation fail on Xubuntu 19.04 # [Dadu042] (2019-06-03) # Fix 'AION_GameForgeLiveSetup.exe' does not open on the display (only blue background). # Change Set_Arch from Auto to x86. Add POL functions (msxml3, corefonts) # [Dadu042] (2020-07-29) # [IMPROVED] POL_Shortcut # [CHANGED] Wine 2.22 -> 3.0.3 (not tested but should work. Perhaps 4.0.4 should be OK with POL v4.3) # [IMPROVED] Changelog [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="AION" PREFIX="Aion" WORKING_WINE_VERSION="3.0.3" POL_SetupWindow_Init # for POL_LoadVar_ScreenResolution POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE 4.2.12 is required to install $TITLE" POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "NCsoft" "" "SuperPlumus and Legluondunet" "$PREFIX" ################## # LET'S GO # ################## POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" POL_LoadVar_ScreenResolution Set_Desktop "On" "$ScreenWidth" "$ScreenHeight" POL_Call POL_Install_vcrun2005 POL_Call POL_Install_msxml3 POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma ################## # REGISTRY HACK # ################## cat << EOF > "$POL_System_TmpDir/RegModif.reg" REGEDIT4 [HKEY_CURRENT_USER\Software\Gameforge4d\GameforgeLive\MainApp] "ActionOnCloseWindow"="Quit" EOF regedit "$POL_System_TmpDir/RegModif.reg" # 2014 hack (Wine 1.7.36). Related to ? : http://www.gamersonlinux.com/forum/threads/wine-1-7-51-steam-dwrite-fixed.1523/ POL_Wine_OverrideDLL disabled dwrite ########################## # DOWNLOAD then INSTALL # ########################## cd "$WINEPREFIX/drive_c" POL_Download "http://dlcl.gfsrv.net/gfl/AION_GameforgeLiveSetup.exe" "" POL_Wine_WaitBefore "$TITLE" POL_Wine "AION_GameforgeLiveSetup.exe" POL_Wine_WaitExit "$TITLE" POL_System_TmpDelete POL_Shortcut "GameforgeLive.exe" "$TITLE" "" "" "Game;" POL_SetupWindow_Close exit 0 Réponses |
Dadu042 | Lundi 3 Juin 2019 à 16:35 |
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesRead changelog.
Script need to be rewrote (standardized), and tested with a Wine version > 2.22
Really necessary ? : POL_Call POL_Install_dotnet20sp2
To add: Function videodriver, physx. Differences@@ -1,64 +1,69 @@ #!/bin/bash # Date : (2013-09-10 20-36) -# Last revision : (2019-05-23) -# Distribution used to test : +# Last revision : see changelog +# Distribution used to test : Xubuntu 18.04 # Author: SuperPlumus and legluondunet - + # CHANGELOG +# [Dadu042] (2019-06-03) +# Fix 'AION_GameForgeLiveSetup.exe' does not open on the display (only blue background). +# Change Set_Arch from Auto to x86. Add POL functions (msxml3, corefonts) # [Dadu042] (2019-05-23) # Fix wine prefix creation fail on Xubuntu 19.04 +# [Legluondunet] # [SuperPlumus] (2013-09-10 20-36) -# Initial writting (based on http://www.playonlinux.com/fr/topic-9394.html) - +# Initial writting (based on http://www.playonlinux.com/fr/topic-9394.html). + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="AION" PREFIX="Aion" WORKING_WINE_VERSION="2.22" - + POL_SetupWindow_Init - + # for POL_LoadVar_ScreenResolution -POL_RequiredVersion "4.0.15" || POL_Debug_Fatal "$APPLICATION_TITLE 4.0.15 is required to install $TITLE" - +POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE 4.2.12 is required to install $TITLE" + POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "NCsoft" "" "SuperPlumus and Legluondunet" "$PREFIX" - + POL_Wine_SelectPrefix "$PREFIX" -POL_System_SetArch "auto" +POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" - + POL_System_TmpCreate "$PREFIX" - + POL_LoadVar_ScreenResolution Set_Desktop "On" "$ScreenWidth" "$ScreenHeight" - -if [ "$POL_ARCH" = "amd64" ]; then + POL_Call POL_Install_vcrun2005 -fi - +POL_Call POL_Install_msxml3 +POL_Call POL_Install_corefonts +POL_Call POL_Install_tahoma + cat << EOF > "$POL_System_TmpDir/RegModif.reg" REGEDIT4 - + [HKEY_CURRENT_USER\Software\Gameforge4d\GameforgeLive\MainApp] "ActionOnCloseWindow"="Quit" EOF regedit "$POL_System_TmpDir/RegModif.reg" - + POL_Wine_OverrideDLL disabled dwrite - - + + cd "$WINEPREFIX/drive_c" POL_Download "http://dlcl.gfsrv.net/gfl/AION_GameforgeLiveSetup.exe" "" POL_Wine_WaitBefore "$TITLE" POL_Wine "AION_GameforgeLiveSetup.exe" POL_Wine_WaitExit "$TITLE" - + POL_System_TmpDelete - + POL_Shortcut "GameforgeLive.exe" "$TITLE" - + POL_SetupWindow_Close exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2013-09-10 20-36) # Last revision : see changelog # Distribution used to test : Xubuntu 18.04 # Author: SuperPlumus and legluondunet # CHANGELOG # [Dadu042] (2019-06-03) # Fix 'AION_GameForgeLiveSetup.exe' does not open on the display (only blue background). # Change Set_Arch from Auto to x86. Add POL functions (msxml3, corefonts) # [Dadu042] (2019-05-23) # Fix wine prefix creation fail on Xubuntu 19.04 # [Legluondunet] # [SuperPlumus] (2013-09-10 20-36) # Initial writting (based on http://www.playonlinux.com/fr/topic-9394.html). [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="AION" PREFIX="Aion" WORKING_WINE_VERSION="2.22" POL_SetupWindow_Init # for POL_LoadVar_ScreenResolution POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE 4.2.12 is required to install $TITLE" POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "NCsoft" "" "SuperPlumus and Legluondunet" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" POL_LoadVar_ScreenResolution Set_Desktop "On" "$ScreenWidth" "$ScreenHeight" POL_Call POL_Install_vcrun2005 POL_Call POL_Install_msxml3 POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma cat << EOF > "$POL_System_TmpDir/RegModif.reg" REGEDIT4 [HKEY_CURRENT_USER\Software\Gameforge4d\GameforgeLive\MainApp] "ActionOnCloseWindow"="Quit" EOF regedit "$POL_System_TmpDir/RegModif.reg" POL_Wine_OverrideDLL disabled dwrite cd "$WINEPREFIX/drive_c" POL_Download "http://dlcl.gfsrv.net/gfl/AION_GameforgeLiveSetup.exe" "" POL_Wine_WaitBefore "$TITLE" POL_Wine "AION_GameforgeLiveSetup.exe" POL_Wine_WaitExit "$TITLE" POL_System_TmpDelete POL_Shortcut "GameforgeLive.exe" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesEdité par Dadu042 |
Dadu042 | Jeudi 23 Mai 2019 à 22:34 |
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesRead changelog. Differences@@ -1,63 +1,64 @@ #!/bin/bash # Date : (2013-09-10 20-36) -# Last revision : (2013-09-10 20-36) +# Last revision : (2019-05-23) # Distribution used to test : # Author: SuperPlumus and legluondunet - + # CHANGELOG +# [Dadu042] (2019-05-23) +# Fix wine prefix creation fail on Xubuntu 19.04 # [SuperPlumus] (2013-09-10 20-36) # Initial writting (based on http://www.playonlinux.com/fr/topic-9394.html) - + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="AION" PREFIX="Aion" -WORKING_WINE_VERSION="1.7.36" - +WORKING_WINE_VERSION="2.22" + POL_SetupWindow_Init - + # for POL_LoadVar_ScreenResolution POL_RequiredVersion "4.0.15" || POL_Debug_Fatal "$APPLICATION_TITLE 4.0.15 is required to install $TITLE" - + POL_Debug_Init - -POL_SetupWindow_presentation "$TITLE" "NCsoft" "" "SuperPlumus and legluondunet" "$PREFIX" - + +POL_SetupWindow_presentation "$TITLE" "NCsoft" "" "SuperPlumus and Legluondunet" "$PREFIX" + POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" - + POL_System_TmpCreate "$PREFIX" - + POL_LoadVar_ScreenResolution Set_Desktop "On" "$ScreenWidth" "$ScreenHeight" - + if [ "$POL_ARCH" = "amd64" ]; then POL_Call POL_Install_vcrun2005 fi - + cat << EOF > "$POL_System_TmpDir/RegModif.reg" REGEDIT4 - + [HKEY_CURRENT_USER\Software\Gameforge4d\GameforgeLive\MainApp] "ActionOnCloseWindow"="Quit" EOF regedit "$POL_System_TmpDir/RegModif.reg" - + POL_Wine_OverrideDLL disabled dwrite - - + + cd "$WINEPREFIX/drive_c" POL_Download "http://dlcl.gfsrv.net/gfl/AION_GameforgeLiveSetup.exe" "" POL_Wine_WaitBefore "$TITLE" POL_Wine "AION_GameforgeLiveSetup.exe" POL_Wine_WaitExit "$TITLE" - + POL_System_TmpDelete - + POL_Shortcut "GameforgeLive.exe" "$TITLE" - + POL_SetupWindow_Close - -exit \ No newline at end of file +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2013-09-10 20-36) # Last revision : (2019-05-23) # Distribution used to test : # Author: SuperPlumus and legluondunet # CHANGELOG # [Dadu042] (2019-05-23) # Fix wine prefix creation fail on Xubuntu 19.04 # [SuperPlumus] (2013-09-10 20-36) # Initial writting (based on http://www.playonlinux.com/fr/topic-9394.html) [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="AION" PREFIX="Aion" WORKING_WINE_VERSION="2.22" POL_SetupWindow_Init # for POL_LoadVar_ScreenResolution POL_RequiredVersion "4.0.15" || POL_Debug_Fatal "$APPLICATION_TITLE 4.0.15 is required to install $TITLE" POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "NCsoft" "" "SuperPlumus and Legluondunet" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" POL_LoadVar_ScreenResolution Set_Desktop "On" "$ScreenWidth" "$ScreenHeight" if [ "$POL_ARCH" = "amd64" ]; then POL_Call POL_Install_vcrun2005 fi cat << EOF > "$POL_System_TmpDir/RegModif.reg" REGEDIT4 [HKEY_CURRENT_USER\Software\Gameforge4d\GameforgeLive\MainApp] "ActionOnCloseWindow"="Quit" EOF regedit "$POL_System_TmpDir/RegModif.reg" POL_Wine_OverrideDLL disabled dwrite cd "$WINEPREFIX/drive_c" POL_Download "http://dlcl.gfsrv.net/gfl/AION_GameforgeLiveSetup.exe" "" POL_Wine_WaitBefore "$TITLE" POL_Wine "AION_GameforgeLiveSetup.exe" POL_Wine_WaitExit "$TITLE" POL_System_TmpDelete POL_Shortcut "GameforgeLive.exe" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesMardi 21 Janvier 2020 à 13:57
|
pcwiz38 | Dimanche 3 Décembre 2017 à 20:35 |
pcwiz38
|
MessagesHi I am a new linux using and the distro I am using is manjaro. Now the information I am submitting is not 100% confirmed but i do know that the game works with the steps as follows in the link here http://nobodyplaysgames.com/forums/index.php?/topic/86-aion-and-linux-a-guide-by-recorrupt/ I know this because i tried this yesterday 12-2-2017 and the game launches through POL, the issue is once the game loads and i attempt to log in i get an error stating i need to start the game via the NCLauncher. So i then go and try to launch the game through POL and wine with the NClauncher.exe which gives me an error also, so in short the game launches with this link but it's the updater that wont launch......any clue anyone? Also I have only attempted this through the NA client and NOT with the gameforge client. Réponses |
PlayPal | Lundi 2 Mai 2016 à 20:25 |
PlayPal
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesHi, Nice script! I just tested the script and made some adjustments. Although AION might run better on 64bit, I was not able to install dotnet20sp2 on 64bit virtual drive. The game launcher requires dotnet to display the web page inside correctly, I don't know if they game actually needs it. With my adjustments it worked perfectly fine. Only the character selection screen of AION has some display issue I could not resolve. Once inside the game it ran without issues. Tested with wine stable 1.8.2. Differences@@ -13,7 +13,7 @@ TITLE="AION" PREFIX="Aion" -WORKING_WINE_VERSION="1.7.36" +WORKING_WINE_VERSION="1.8.2" POL_SetupWindow_Init @@ -22,10 +22,10 @@ POL_Debug_Init -POL_SetupWindow_presentation "$TITLE" "NCsoft" "" "SuperPlumus and legluondunet" "$PREFIX" +POL_SetupWindow_presentation "$TITLE" "NCSoft" "" "SuperPlumus and legluondunet" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_System_SetArch "auto" +POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" @@ -33,9 +33,8 @@ POL_LoadVar_ScreenResolution Set_Desktop "On" "$ScreenWidth" "$ScreenHeight" -if [ "$POL_ARCH" = "amd64" ]; then POL_Call POL_Install_vcrun2005 -fi +POL_Call POL_Install_dotnet20sp2 cat << EOF > "$POL_System_TmpDir/RegModif.reg" REGEDIT4 Nouveau code source#!/bin/bash # Date : (2013-09-10 20-36) # Last revision : (2013-09-10 20-36) # Distribution used to test : # Author: SuperPlumus and legluondunet # CHANGELOG # [SuperPlumus] (2013-09-10 20-36) # Initial writting (based on http://www.playonlinux.com/fr/topic-9394.html) [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="AION" PREFIX="Aion" WORKING_WINE_VERSION="1.8.2" POL_SetupWindow_Init # for POL_LoadVar_ScreenResolution POL_RequiredVersion "4.0.15" || POL_Debug_Fatal "$APPLICATION_TITLE 4.0.15 is required to install $TITLE" POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "NCSoft" "" "SuperPlumus and legluondunet" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" POL_LoadVar_ScreenResolution Set_Desktop "On" "$ScreenWidth" "$ScreenHeight" POL_Call POL_Install_vcrun2005 POL_Call POL_Install_dotnet20sp2 cat << EOF > "$POL_System_TmpDir/RegModif.reg" REGEDIT4 [HKEY_CURRENT_USER\Software\Gameforge4d\GameforgeLive\MainApp] "ActionOnCloseWindow"="Quit" EOF regedit "$POL_System_TmpDir/RegModif.reg" POL_Wine_OverrideDLL disabled dwrite cd "$WINEPREFIX/drive_c" POL_Download "http://dlcl.gfsrv.net/gfl/AION_GameforgeLiveSetup.exe" "" POL_Wine_WaitBefore "$TITLE" POL_Wine "AION_GameforgeLiveSetup.exe" POL_Wine_WaitExit "$TITLE" POL_System_TmpDelete POL_Shortcut "GameforgeLive.exe" "$TITLE" POL_SetupWindow_Close exit RéponsesLundi 2 Mai 2016 à 21:41
|
Shadows_Soul | Samedi 28 Février 2015 à 18:31 |
Shadows_Soul
|
MessagesThe script ork and the launcher too but when i try to launch the game i get an error from vim taht say that he can't create a new window and ask to re-instal the launcher. It also say :E03016 GSU MUI_postimg.jpg
Réponses |
Ronin DUSETTE | Samedi 21 Février 2015 à 23:10 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesRemoved SET_OS call, as it seems to break the virtual drive. This script will likely need to be re-written in the future. Differences@@ -28,8 +28,6 @@ POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" -Set_OS "winxp" - POL_System_TmpCreate "$PREFIX" POL_LoadVar_ScreenResolution Nouveau code source#!/bin/bash # Date : (2013-09-10 20-36) # Last revision : (2013-09-10 20-36) # Distribution used to test : # Author: SuperPlumus and legluondunet # CHANGELOG # [SuperPlumus] (2013-09-10 20-36) # Initial writting (based on http://www.playonlinux.com/fr/topic-9394.html) [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="AION" PREFIX="Aion" WORKING_WINE_VERSION="1.7.36" POL_SetupWindow_Init # for POL_LoadVar_ScreenResolution POL_RequiredVersion "4.0.15" || POL_Debug_Fatal "$APPLICATION_TITLE 4.0.15 is required to install $TITLE" POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "NCsoft" "" "SuperPlumus and legluondunet" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" POL_LoadVar_ScreenResolution Set_Desktop "On" "$ScreenWidth" "$ScreenHeight" if [ "$POL_ARCH" = "amd64" ]; then POL_Call POL_Install_vcrun2005 fi cat << EOF > "$POL_System_TmpDir/RegModif.reg" REGEDIT4 [HKEY_CURRENT_USER\Software\Gameforge4d\GameforgeLive\MainApp] "ActionOnCloseWindow"="Quit" EOF regedit "$POL_System_TmpDir/RegModif.reg" POL_Wine_OverrideDLL disabled dwrite cd "$WINEPREFIX/drive_c" POL_Download "http://dlcl.gfsrv.net/gfl/AION_GameforgeLiveSetup.exe" "" POL_Wine_WaitBefore "$TITLE" POL_Wine "AION_GameforgeLiveSetup.exe" POL_Wine_WaitExit "$TITLE" POL_System_TmpDelete POL_Shortcut "GameforgeLive.exe" "$TITLE" POL_SetupWindow_Close exit RéponsesLundi 3 Juin 2019 à 16:39
|
Ronin DUSETTE | Samedi 21 Février 2015 à 22:50 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdded Set_OS command earlier. Differences@@ -28,6 +28,8 @@ POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +Set_OS "winxp" + POL_System_TmpCreate "$PREFIX" POL_LoadVar_ScreenResolution @@ -47,8 +49,6 @@ POL_Wine_OverrideDLL disabled dwrite -# Configuration -Set_OS "winxp" cd "$WINEPREFIX/drive_c" POL_Download "http://dlcl.gfsrv.net/gfl/AION_GameforgeLiveSetup.exe" "" Nouveau code source#!/bin/bash # Date : (2013-09-10 20-36) # Last revision : (2013-09-10 20-36) # Distribution used to test : # Author: SuperPlumus and legluondunet # CHANGELOG # [SuperPlumus] (2013-09-10 20-36) # Initial writting (based on http://www.playonlinux.com/fr/topic-9394.html) [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="AION" PREFIX="Aion" WORKING_WINE_VERSION="1.7.36" POL_SetupWindow_Init # for POL_LoadVar_ScreenResolution POL_RequiredVersion "4.0.15" || POL_Debug_Fatal "$APPLICATION_TITLE 4.0.15 is required to install $TITLE" POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "NCsoft" "" "SuperPlumus and legluondunet" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" Set_OS "winxp" POL_System_TmpCreate "$PREFIX" POL_LoadVar_ScreenResolution Set_Desktop "On" "$ScreenWidth" "$ScreenHeight" if [ "$POL_ARCH" = "amd64" ]; then POL_Call POL_Install_vcrun2005 fi cat << EOF > "$POL_System_TmpDir/RegModif.reg" REGEDIT4 [HKEY_CURRENT_USER\Software\Gameforge4d\GameforgeLive\MainApp] "ActionOnCloseWindow"="Quit" EOF regedit "$POL_System_TmpDir/RegModif.reg" POL_Wine_OverrideDLL disabled dwrite cd "$WINEPREFIX/drive_c" POL_Download "http://dlcl.gfsrv.net/gfl/AION_GameforgeLiveSetup.exe" "" POL_Wine_WaitBefore "$TITLE" POL_Wine "AION_GameforgeLiveSetup.exe" POL_Wine_WaitExit "$TITLE" POL_System_TmpDelete POL_Shortcut "GameforgeLive.exe" "$TITLE" POL_SetupWindow_Close exit RéponsesEdité par RoninDusette |
Ronin DUSETTE | Samedi 21 Février 2015 à 19:05 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdded declaration for WinXP, just to make sure that it defaults to that. Differences@@ -47,6 +47,9 @@ POL_Wine_OverrideDLL disabled dwrite +# Configuration +Set_OS "winxp" + cd "$WINEPREFIX/drive_c" POL_Download "http://dlcl.gfsrv.net/gfl/AION_GameforgeLiveSetup.exe" "" POL_Wine_WaitBefore "$TITLE" Nouveau code source#!/bin/bash # Date : (2013-09-10 20-36) # Last revision : (2013-09-10 20-36) # Distribution used to test : # Author: SuperPlumus and legluondunet # CHANGELOG # [SuperPlumus] (2013-09-10 20-36) # Initial writting (based on http://www.playonlinux.com/fr/topic-9394.html) [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="AION" PREFIX="Aion" WORKING_WINE_VERSION="1.7.36" POL_SetupWindow_Init # for POL_LoadVar_ScreenResolution POL_RequiredVersion "4.0.15" || POL_Debug_Fatal "$APPLICATION_TITLE 4.0.15 is required to install $TITLE" POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "NCsoft" "" "SuperPlumus and legluondunet" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" POL_LoadVar_ScreenResolution Set_Desktop "On" "$ScreenWidth" "$ScreenHeight" if [ "$POL_ARCH" = "amd64" ]; then POL_Call POL_Install_vcrun2005 fi cat << EOF > "$POL_System_TmpDir/RegModif.reg" REGEDIT4 [HKEY_CURRENT_USER\Software\Gameforge4d\GameforgeLive\MainApp] "ActionOnCloseWindow"="Quit" EOF regedit "$POL_System_TmpDir/RegModif.reg" POL_Wine_OverrideDLL disabled dwrite # Configuration Set_OS "winxp" cd "$WINEPREFIX/drive_c" POL_Download "http://dlcl.gfsrv.net/gfl/AION_GameforgeLiveSetup.exe" "" POL_Wine_WaitBefore "$TITLE" POL_Wine "AION_GameforgeLiveSetup.exe" POL_Wine_WaitExit "$TITLE" POL_System_TmpDelete POL_Shortcut "GameforgeLive.exe" "$TITLE" POL_SetupWindow_Close exit Réponses |
Ronin DUSETTE | Samedi 21 Février 2015 à 19:00 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUpdating to fix bugs: http://www.playonmac.com/en/issue-4998.html Differences@@ -13,7 +13,7 @@ TITLE="AION" PREFIX="Aion" -WORKING_WINE_VERSION="1.7.1" +WORKING_WINE_VERSION="1.7.36" POL_SetupWindow_Init Nouveau code source#!/bin/bash # Date : (2013-09-10 20-36) # Last revision : (2013-09-10 20-36) # Distribution used to test : # Author: SuperPlumus and legluondunet # CHANGELOG # [SuperPlumus] (2013-09-10 20-36) # Initial writting (based on http://www.playonlinux.com/fr/topic-9394.html) [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="AION" PREFIX="Aion" WORKING_WINE_VERSION="1.7.36" POL_SetupWindow_Init # for POL_LoadVar_ScreenResolution POL_RequiredVersion "4.0.15" || POL_Debug_Fatal "$APPLICATION_TITLE 4.0.15 is required to install $TITLE" POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "NCsoft" "" "SuperPlumus and legluondunet" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" POL_LoadVar_ScreenResolution Set_Desktop "On" "$ScreenWidth" "$ScreenHeight" if [ "$POL_ARCH" = "amd64" ]; then POL_Call POL_Install_vcrun2005 fi cat << EOF > "$POL_System_TmpDir/RegModif.reg" REGEDIT4 [HKEY_CURRENT_USER\Software\Gameforge4d\GameforgeLive\MainApp] "ActionOnCloseWindow"="Quit" EOF regedit "$POL_System_TmpDir/RegModif.reg" POL_Wine_OverrideDLL disabled dwrite cd "$WINEPREFIX/drive_c" POL_Download "http://dlcl.gfsrv.net/gfl/AION_GameforgeLiveSetup.exe" "" POL_Wine_WaitBefore "$TITLE" POL_Wine "AION_GameforgeLiveSetup.exe" POL_Wine_WaitExit "$TITLE" POL_System_TmpDelete POL_Shortcut "GameforgeLive.exe" "$TITLE" POL_SetupWindow_Close exit Réponses |
cami | Samedi 9 Aoüt 2014 à 14:37 |
cami
|
Messageserr:module:import_dll Library QtSvg4.dll (which is needed by L"C:\\Program Files (x86)\\GameforgeLive\\imageformats\\qsvg4.dll") not found
This does not seem to prevent anything from working, but it may still be relevant. RéponsesLundi 11 Aoüt 2014 à 1:49
|
abuse98 | Dimanche 3 Aoüt 2014 à 23:56 |
abuse98
|
Messagesneed to improve ncsoft, aion na installer Réponses |
Padou | Vendredi 25 Juillet 2014 à 10:14 |
Padou
|
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