AION
Informations
Creator | Message |
---|---|
SuperPlumus
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks2 6 DescriptionMMO RPG game, first release in 2008 (Wikipedia). Warning: this game need +30 GB storage free (2018). ScreenshotsSource code#!/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:
ContributeMember | Message |
Dadu042 | Wednesday 29 July 2020 at 11:43 |
Dadu042
|
InformationThis update has been approved by the team. 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 New source code#!/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 Replies |
Dadu042 | Monday 3 June 2019 at 16:35 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageRead 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 New source code#!/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 RepliesEdited by Dadu042 |
Dadu042 | Thursday 23 May 2019 at 22:34 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageRead 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 New source code#!/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 RepliesTuesday 21 January 2020 at 13:57
|
pcwiz38 | Sunday 3 December 2017 at 20:35 |
pcwiz38
|
MessageHi 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. Replies |
PlayPal | Monday 2 May 2016 at 20:25 |
PlayPal
|
WarningThis update has not been approved yet by the team. MessageHi, 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 New source code#!/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 RepliesMonday 2 May 2016 at 21:41
|
Shadows_Soul | Saturday 28 February 2015 at 18:31 |
Shadows_Soul
|
MessageThe 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
Replies |
Ronin DUSETTE | Saturday 21 February 2015 at 23:10 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. MessageRemoved 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 New source code#!/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 RepliesMonday 3 June 2019 at 16:39
|
Ronin DUSETTE | Saturday 21 February 2015 at 22:50 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. MessageAdded 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" "" New source code#!/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 RepliesEdited by RoninDusette |
Ronin DUSETTE | Saturday 21 February 2015 at 19:05 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. MessageAdded 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" New source code#!/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 Replies |
Ronin DUSETTE | Saturday 21 February 2015 at 19:00 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. MessageUpdating 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 New source code#!/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 Replies |
cami | Saturday 9 August 2014 at 14:37 |
cami
|
Messageerr: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. RepliesMonday 11 August 2014 at 1:49
|
abuse98 | Sunday 3 August 2014 at 23:56 |
abuse98
|
Messageneed to improve ncsoft, aion na installer Replies |
Padou | Friday 25 July 2014 at 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