AION

Informatie

Creator Bericht
SuperPlumus Anonymous

Information

This installer has been approved by the team.

Informatie

Platforms:
Downloads: 38402
Wine: 3.0.3

Feedbacks

Omschrijving

MMO RPG game, first release in 2008 (Wikipedia).

Warning: this game need +30 GB storage free (2018).

Appdb.winehq.org. PCGamingWiki.

Schermafdrukken

Miniature

Broncode

#!/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:

Contribute
Member Bericht
Dadu042 Woensdag 29 Juli 2020 om 11:43
Dadu042

Information

This 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

Antwoorden

Dadu042 Maandag 3 Juni\ 2019 om 16:35
Dadu042

Warning

This update has not been approved yet by the team.
Use it at your own risk

Bericht

Read 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

Antwoorden

Aangepast door Dadu042

Dadu042 Donderdag 23 Mei 2019 om 22:34
Dadu042

Warning

This update has not been approved yet by the team.
Use it at your own risk

Bericht

Read 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

Antwoorden

Dinsdag 21 Januari 2020 om 13:57
VersionInfo_AION-LIVE.ini GlobalVersion=238
pcwiz38 Zondag 3 December 2017 om 20:35
pcwiz38 Anonymous

Bericht

Hi 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.

Antwoorden

PlayPal Maandag 2 Mei 2016 om 20:25
PlayPal Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Bericht

Hi,

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

Antwoorden

Anonymous
Maandag 2 Mei 2016 om 21:41
actually vcrun2010 (installed by AION) and dotnet40 work too:
Shadows_Soul Zaterdag 28 Februari 2015 om 18:31
Shadows_Soul Anonymous

Bericht

The 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

 

Antwoorden

Ronin DUSETTE Zaterdag 21 Februari 2015 om 23:10
Ronin DUSETTE

Warning

This update has not been approved yet by the team.
Use it at your own risk

Bericht

Removed 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

Antwoorden

Maandag 3 Juni\ 2019 om 16:39
Set_OS must be set after prefix created.
Ronin DUSETTE Zaterdag 21 Februari 2015 om 22:50
Ronin DUSETTE

Warning

This update has not been approved yet by the team.
Use it at your own risk

Bericht

Added 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

Antwoorden

Aangepast door RoninDusette

Ronin DUSETTE Zaterdag 21 Februari 2015 om 19:05
Ronin DUSETTE

Warning

This update has not been approved yet by the team.
Use it at your own risk

Bericht

Added 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

Antwoorden

Ronin DUSETTE Zaterdag 21 Februari 2015 om 19:00
Ronin DUSETTE

Warning

This update has not been approved yet by the team.
Use it at your own risk

Bericht

Updating to fix bugs:

http://www.playonlinux.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

Antwoorden

cami Zaterdag 9 Augustus 2014 om 14:37
cami

Bericht

err: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.

Antwoorden

Maandag 11 Augustus 2014 om 1:49
Another comment: I installed MinGW GCC 4.4.0 and Qt 4.8.4 for MingW, copying the mentioned qt4svg.dll to the launcher. That made the message about missing qt4svg.dll disappear, but didn't change anything else (see comments to Padou's report)
abuse98 Zondag 3 Augustus 2014 om 23:56
abuse98 Anonymous

Bericht

need to improve ncsoft, aion na installer

Antwoorden

Padou Vrijdag 25 Juli 2014 om 10:14
Padou Anonymous

Bericht

GameForge Live is not displaying anything.

Antwoorden

Zaterdag 9 Augustus 2014 om 14:16
Some more information (I am experiencing the same issue):
Zaterdag 9 Augustus 2014 om 14:28
[Hmm, doesn't seem to be meant for longer replies. No editing, no paragraphs. -.- ] The installer proceeds until GameForge Live is displayed, which comes up as a Black window with "min/max/close" buttons and a "resize" handle. Moving the window sometimes crashes the application. Right-click offers a "reload" function, which loads the background image (bluish bubbles) but nothing else. The only way to complete the installer is closing GameForge Live without having done anything. Relaunching it from the main menu _in_ _debug_ _mode_, in some cases (maybe 5%) allows to fully bring up Gameforge Live with the reload function (make sure you have opened the necessary ports, especially TCP 80, for incoming connections, and no other program is using them. [rant about this requirement suppressed]). With some luck this allows you to launch the AION installer. It then pops up a strange error message. Will post it when I can reproduce it.
Zaterdag 9 Augustus 2014 om 14:30
Oh yes, and the same goes for the Torrent Ports 6881-6890 (UDP, maybe TCP as well).
Zaterdag 9 Augustus 2014 om 14:47
The AION installer succeeds, but spouts plenty of messages "err:setupapi:do_file_copyW Unsupported style(s) 0x144". That looks like a problem. Anyway, you can hit "play now", which brings up the mentioned popup window. It says "[Launcher error] Skin window creation failed. Please reinstall the launcher. E03016 GSU NUI_postimg.jpg". Maybe the missing qt4svg.dll is related, maybe there is a problem with image metainformation in that mentioned file - I know that libpng has begun to popup complaints because of broken (yet unnecessary) image metainformation which can be pretty annoying and even make programs stop working.
Maandag 11 Augustus 2014 om 14:02
To insert line breaks, use Shift-Return.
About what you see in logs, remember it's not AION logs, but Wine logs while trying to run AION; As such "not all failures are errors", as I explained some time ago in http://www.playonlinux.com/en/topic-10851-4.html. Specifically the unsupported copy styles are probably not important (probably the Qt stuff too).
Vrijdag 15 Augustus 2014 om 20:19
I expected so and was pretty surprised when Shift-Return sent the comment, but that's not such a big problem. I know the errors are from wine. The Qt stuff is unrelated, but the copy stuff still is suspicious for me, as looking at the AION folder I have the impression that the AION installation, during which they appeared, is incomplete