Runes Of Magic

Informations

Creator Message
catskan Anonymous

Warning

This installer is a beta script. It means that it might not work as expected

Informations

Platforms:
Downloads: 23755
Wine: 4.0.4

Feedbacks

Description

Runes Of Magic is a Free2Play MMORPG, released in 2009. No subscription, nice alternative to Word of Warcraft.

Wikipedia. PCGamingWiki. Appdb.winehq.org, Codeweaver's Crossover.

Screenshots

MiniatureMiniature

Source code

#!/bin/bash
# Date : (2012-01-29)
# Last revision : See changelog
# Wine version used : System
# Distribution used to test : XUbuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux v4.3.4

# CHANGELOG:
# [Catskan] 2012 ?
#   First version ?
# [SuperPlumus] (2012-01-29 08-02)
#   Correction syntax error (!)
#   Change prefix name
#   Add $PREFIX var
#   Update gettext message
# [Dadu042] (2019-08-07)
#   Disable Wine 1.3.37, use System's Wine version (usally at least 2x. or 3.0 nowadays).
#   Disable POL_Browser before installing (why opening the website now ?).
# [Dadu042] (2019-12-08)
#   Standardize System wine. 
# [Dadu042] (2019-12-26)
#   Force OS to win7
#   Force x86
#   dotnet20 -> dotnet40
#   Disable IE6
# [Dadu042] (2022-04-10)
#   Wine 1.3.37 -> 4.0.4 (untested, it's because Wine 1.x is unable to run since Ubuntu 18.04)
#   + POL_Install_vcrun2015 (it seeems required according a user report)
#   - POL_Install_wininet (usually useless with current Wine versions)
#
# KNOWN ISSUES:
# - Wine 4.0.1: install work up to 90% then no window -> it's because it is updating.
# - Wine 4.0.1: Can not type in the login box, when the app windowed (OK when full screen).
# - Wine 4.0.1: No web page displayed in the installer, just a white color (however it seems not to block the installation). However I canceled the installation of IE6 before. Tried: gecko install.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Runes Of Magic"
PREFIX="RunesOfMagic"
WORKING_WINE_VERSION="4.0.4"
   
POL_Debug_Init
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Frogster" "http://www.runesofmagic.com/" "Catskan" "$PREFIX"
  
# POL_Browser "http://www.runesofmagic.com/"
   
#Wine preparation
POL_Wine_SelectPrefix "$PREFIX"

POL_System_SetArch "x86"

POL_Wine_PrefixCreate
# POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

Set_OS "win7"

# Installing POL_functions

POL_Call POL_Install_dotnet40
POL_Call POL_Install_vcrun2015

# POL_Call POL_Install_wininet
# POL_Call POL_Install_ie6
# POL_Call POL_Install_vcrun2010

Set_OS "win7"
 
cd "$POL_USER_ROOT/tmp"
   
if [ "$POL_SELECTED_FILE" = "" ]
then
POL_SetupWindow_message "$(eval_gettext 'You can download $TITLE install file here:')\n\nhttp://www.runesofmagic.com/" "$TITLE"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
CHEMIN="$APP_ANSWER"
else
CHEMIN="$POL_SELECTED_FILE"
fi
POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE"
   
Set_Managed Off
POL_Wine "$CHEMIN"
  
   
POL_Shortcut "launcher.exe" "$TITLE Launcher" "" "" "Game;RoleGame;"
POL_Shortcut "Runes Of Magic.exe" "$TITLE" "" "" "Game;RoleGame;"
  
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Message
Dadu042 Sunday 10 April 2022 at 20:29
Dadu042

Information

This update has been approved by the team.

Differences

@@ -40,7 +40,7 @@
 
 TITLE="Runes Of Magic"
 PREFIX="RunesOfMagic"
-# WORKING_WINE_VERSION="4.0.4"
+WORKING_WINE_VERSION="4.0.4"
    
 POL_Debug_Init
 POL_SetupWindow_Init

New source code

#!/bin/bash
# Date : (2012-01-29)
# Last revision : See changelog
# Wine version used : System
# Distribution used to test : XUbuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux v4.3.4

# CHANGELOG:
# [Catskan] 2012 ?
#   First version ?
# [SuperPlumus] (2012-01-29 08-02)
#   Correction syntax error (!)
#   Change prefix name
#   Add $PREFIX var
#   Update gettext message
# [Dadu042] (2019-08-07)
#   Disable Wine 1.3.37, use System's Wine version (usally at least 2x. or 3.0 nowadays).
#   Disable POL_Browser before installing (why opening the website now ?).
# [Dadu042] (2019-12-08)
#   Standardize System wine. 
# [Dadu042] (2019-12-26)
#   Force OS to win7
#   Force x86
#   dotnet20 -> dotnet40
#   Disable IE6
# [Dadu042] (2022-04-10)
#   Wine 1.3.37 -> 4.0.4 (untested, it's because Wine 1.x is unable to run since Ubuntu 18.04)
#   + POL_Install_vcrun2015 (it seeems required according a user report)
#   - POL_Install_wininet (usually useless with current Wine versions)
#
# KNOWN ISSUES:
# - Wine 4.0.1: install work up to 90% then no window -> it's because it is updating.
# - Wine 4.0.1: Can not type in the login box, when the app windowed (OK when full screen).
# - Wine 4.0.1: No web page displayed in the installer, just a white color (however it seems not to block the installation). However I canceled the installation of IE6 before. Tried: gecko install.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Runes Of Magic"
PREFIX="RunesOfMagic"
WORKING_WINE_VERSION="4.0.4"
   
POL_Debug_Init
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Frogster" "http://www.runesofmagic.com/" "Catskan" "$PREFIX"
  
# POL_Browser "http://www.runesofmagic.com/"
   
#Wine preparation
POL_Wine_SelectPrefix "$PREFIX"

POL_System_SetArch "x86"

POL_Wine_PrefixCreate
# POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

Set_OS "win7"

# Installing POL_functions

POL_Call POL_Install_dotnet40
POL_Call POL_Install_vcrun2015

# POL_Call POL_Install_wininet
# POL_Call POL_Install_ie6
# POL_Call POL_Install_vcrun2010

Set_OS "win7"
 
cd "$POL_USER_ROOT/tmp"
   
if [ "$POL_SELECTED_FILE" = "" ]
then
POL_SetupWindow_message "$(eval_gettext 'You can download $TITLE install file here:')\n\nhttp://www.runesofmagic.com/" "$TITLE"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
CHEMIN="$APP_ANSWER"
else
CHEMIN="$POL_SELECTED_FILE"
fi
POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE"
   
Set_Managed Off
POL_Wine "$CHEMIN"
  
   
POL_Shortcut "launcher.exe" "$TITLE Launcher" "" "" "Game;RoleGame;"
POL_Shortcut "Runes Of Magic.exe" "$TITLE" "" "" "Game;RoleGame;"
  
POL_SetupWindow_Close
exit 0

Replies

Dadu042 Sunday 10 April 2022 at 20:28
Dadu042

Warning

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

Differences

@@ -25,6 +25,10 @@
 #   Force x86
 #   dotnet20 -> dotnet40
 #   Disable IE6
+# [Dadu042] (2022-04-10)
+#   Wine 1.3.37 -> 4.0.4 (untested, it's because Wine 1.x is unable to run since Ubuntu 18.04)
+#   + POL_Install_vcrun2015 (it seeems required according a user report)
+#   - POL_Install_wininet (usually useless with current Wine versions)
 #
 # KNOWN ISSUES:
 # - Wine 4.0.1: install work up to 90% then no window -> it's because it is updating.
@@ -36,7 +40,7 @@
 
 TITLE="Runes Of Magic"
 PREFIX="RunesOfMagic"
-# WORKING_WINE_VERSION="1.3.37"
+# WORKING_WINE_VERSION="4.0.4"
    
 POL_Debug_Init
 POL_SetupWindow_Init
@@ -57,7 +61,9 @@
 # Installing POL_functions
 
 POL_Call POL_Install_dotnet40
-POL_Call POL_Install_wininet
+POL_Call POL_Install_vcrun2015
+
+# POL_Call POL_Install_wininet
 # POL_Call POL_Install_ie6
 # POL_Call POL_Install_vcrun2010
 

New source code

#!/bin/bash
# Date : (2012-01-29)
# Last revision : See changelog
# Wine version used : System
# Distribution used to test : XUbuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux v4.3.4

# CHANGELOG:
# [Catskan] 2012 ?
#   First version ?
# [SuperPlumus] (2012-01-29 08-02)
#   Correction syntax error (!)
#   Change prefix name
#   Add $PREFIX var
#   Update gettext message
# [Dadu042] (2019-08-07)
#   Disable Wine 1.3.37, use System's Wine version (usally at least 2x. or 3.0 nowadays).
#   Disable POL_Browser before installing (why opening the website now ?).
# [Dadu042] (2019-12-08)
#   Standardize System wine. 
# [Dadu042] (2019-12-26)
#   Force OS to win7
#   Force x86
#   dotnet20 -> dotnet40
#   Disable IE6
# [Dadu042] (2022-04-10)
#   Wine 1.3.37 -> 4.0.4 (untested, it's because Wine 1.x is unable to run since Ubuntu 18.04)
#   + POL_Install_vcrun2015 (it seeems required according a user report)
#   - POL_Install_wininet (usually useless with current Wine versions)
#
# KNOWN ISSUES:
# - Wine 4.0.1: install work up to 90% then no window -> it's because it is updating.
# - Wine 4.0.1: Can not type in the login box, when the app windowed (OK when full screen).
# - Wine 4.0.1: No web page displayed in the installer, just a white color (however it seems not to block the installation). However I canceled the installation of IE6 before. Tried: gecko install.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Runes Of Magic"
PREFIX="RunesOfMagic"
# WORKING_WINE_VERSION="4.0.4"
   
POL_Debug_Init
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Frogster" "http://www.runesofmagic.com/" "Catskan" "$PREFIX"
  
# POL_Browser "http://www.runesofmagic.com/"
   
#Wine preparation
POL_Wine_SelectPrefix "$PREFIX"

POL_System_SetArch "x86"

POL_Wine_PrefixCreate
# POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

Set_OS "win7"

# Installing POL_functions

POL_Call POL_Install_dotnet40
POL_Call POL_Install_vcrun2015

# POL_Call POL_Install_wininet
# POL_Call POL_Install_ie6
# POL_Call POL_Install_vcrun2010

Set_OS "win7"
 
cd "$POL_USER_ROOT/tmp"
   
if [ "$POL_SELECTED_FILE" = "" ]
then
POL_SetupWindow_message "$(eval_gettext 'You can download $TITLE install file here:')\n\nhttp://www.runesofmagic.com/" "$TITLE"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
CHEMIN="$APP_ANSWER"
else
CHEMIN="$POL_SELECTED_FILE"
fi
POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE"
   
Set_Managed Off
POL_Wine "$CHEMIN"
  
   
POL_Shortcut "launcher.exe" "$TITLE Launcher" "" "" "Game;RoleGame;"
POL_Shortcut "Runes Of Magic.exe" "$TITLE" "" "" "Game;RoleGame;"
  
POL_SetupWindow_Close
exit 0

Replies

Dadu042 Thursday 26 December 2019 at 11:09
Dadu042

Warning

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

Message

Script to retry to test, perhaps without dotnet40 nor wininet.

Differences

@@ -16,24 +16,27 @@
 #   Add $PREFIX var
 #   Update gettext message
 # [Dadu042] (2019-08-07)
-#   Disable Wine 1.3.37, use System's Wine version (usally at least 2x. or 3.0 nowadays).
-#   Disable POL_Browser before installing (why opening the website now ?).
+#   Disable Wine 1.3.37, use System's Wine version (usally at least 2x. or 3.0 nowadays).
+#   Disable POL_Browser before installing (why opening the website now ?).
 # [Dadu042] (2019-12-08)
-#   Standardize System wine.
-
+#   Standardize System wine. 
+# [Dadu042] (2019-12-26)
+#   Force OS to win7
+#   Force x86
+#   dotnet20 -> dotnet40
+#   Disable IE6
 #
 # KNOWN ISSUES:
 # - Wine 4.0.1: install work up to 90% then no window -> it's because it is updating.
 # - Wine 4.0.1: Can not type in the login box, when the app windowed (OK when full screen).
-# - Wine 4.0.1: No web page displayed in the installer, just a white color (however it seems not to block the installation). Tried: gecko install.
+# - Wine 4.0.1: No web page displayed in the installer, just a white color (however it seems not to block the installation). However I canceled the installation of IE6 before. Tried: gecko install.
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
-  
-WORKING_WINE_VERSION=""
-  
+
 TITLE="Runes Of Magic"
 PREFIX="RunesOfMagic"
+# WORKING_WINE_VERSION="1.3.37"
    
 POL_Debug_Init
 POL_SetupWindow_Init
@@ -44,14 +47,21 @@
 #Wine preparation
 POL_Wine_SelectPrefix "$PREFIX"
 
+POL_System_SetArch "x86"
+
 POL_Wine_PrefixCreate
-POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
-  
-#Installing POL_functions
-POL_Call POL_Install_ie6
-POL_Call POL_Install_dotnet20
+# POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+
+Set_OS "win7"
+
+# Installing POL_functions
+
+POL_Call POL_Install_dotnet40
 POL_Call POL_Install_wininet
-POL_Call POL_Install_vcrun2005
+# POL_Call POL_Install_ie6
+# POL_Call POL_Install_vcrun2010
+
+Set_OS "win7"
  
 cd "$POL_USER_ROOT/tmp"
    

New source code

#!/bin/bash
# Date : (2012-01-29)
# Last revision : See changelog
# Wine version used : System
# Distribution used to test : XUbuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux v4.3.4

# CHANGELOG:
# [Catskan] 2012 ?
#   First version ?
# [SuperPlumus] (2012-01-29 08-02)
#   Correction syntax error (!)
#   Change prefix name
#   Add $PREFIX var
#   Update gettext message
# [Dadu042] (2019-08-07)
#   Disable Wine 1.3.37, use System's Wine version (usally at least 2x. or 3.0 nowadays).
#   Disable POL_Browser before installing (why opening the website now ?).
# [Dadu042] (2019-12-08)
#   Standardize System wine. 
# [Dadu042] (2019-12-26)
#   Force OS to win7
#   Force x86
#   dotnet20 -> dotnet40
#   Disable IE6
#
# KNOWN ISSUES:
# - Wine 4.0.1: install work up to 90% then no window -> it's because it is updating.
# - Wine 4.0.1: Can not type in the login box, when the app windowed (OK when full screen).
# - Wine 4.0.1: No web page displayed in the installer, just a white color (however it seems not to block the installation). However I canceled the installation of IE6 before. Tried: gecko install.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Runes Of Magic"
PREFIX="RunesOfMagic"
# WORKING_WINE_VERSION="1.3.37"
   
POL_Debug_Init
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Frogster" "http://www.runesofmagic.com/" "Catskan" "$PREFIX"
  
# POL_Browser "http://www.runesofmagic.com/"
   
#Wine preparation
POL_Wine_SelectPrefix "$PREFIX"

POL_System_SetArch "x86"

POL_Wine_PrefixCreate
# POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

Set_OS "win7"

# Installing POL_functions

POL_Call POL_Install_dotnet40
POL_Call POL_Install_wininet
# POL_Call POL_Install_ie6
# POL_Call POL_Install_vcrun2010

Set_OS "win7"
 
cd "$POL_USER_ROOT/tmp"
   
if [ "$POL_SELECTED_FILE" = "" ]
then
POL_SetupWindow_message "$(eval_gettext 'You can download $TITLE install file here:')\n\nhttp://www.runesofmagic.com/" "$TITLE"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
CHEMIN="$APP_ANSWER"
else
CHEMIN="$POL_SELECTED_FILE"
fi
POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE"
   
Set_Managed Off
POL_Wine "$CHEMIN"
  
   
POL_Shortcut "launcher.exe" "$TITLE Launcher" "" "" "Game;RoleGame;"
POL_Shortcut "Runes Of Magic.exe" "$TITLE" "" "" "Game;RoleGame;"
  
POL_SetupWindow_Close
exit 0

Replies

Dadu042 Thursday 26 December 2019 at 10:27
Dadu042

Message

Runes of Magic (installed in september) + 4.0.2 and 4.0.3
After the fist splash screen, the game tell it will search for updates, but it somes crash windows appear (SparkWebHelper.exe).
To hide the first blue window, I have to close all crash windows send by SparkWebHelper.exe
Then for a black window appear (with 2 blues rectangles onto), I have to kill from terminal the processes gfclient.exe then gsl.exe
In the log I see errors about Vulkan.

 

I tried (without success): xmllite, msxml6, ie6, gecko,       wine 4.21, 5.0-rc1

Replies

Anonymous
Wednesday 8 January 2020 at 15:34
Gameforge client install Microsoft Visual C++ 2015 X86
Wednesday 8 January 2020 at 16:10
Function to support vcrun2015 is not yet made (I mean reliable) in POL.
Anonymous
Saturday 18 January 2020 at 19:15
Steam version working with Wine, also private server runs.

Edited by Dadu042

Dadu042 Sunday 8 December 2019 at 20:29
Dadu042

Warning

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

Differences

@@ -16,8 +16,11 @@
 #   Add $PREFIX var
 #   Update gettext message
 # [Dadu042] (2019-08-07)
-#   Disable Wine 1.3.37, use System's Wine version (usally at least 2x. or 3.0 nowadays).
-#   Disable POL_Browser before installing (why the website now ?).
+#   Disable Wine 1.3.37, use System's Wine version (usally at least 2x. or 3.0 nowadays).
+#   Disable POL_Browser before installing (why opening the website now ?).
+# [Dadu042] (2019-12-08)
+#   Standardize System wine.
+
 #
 # KNOWN ISSUES:
 # - Wine 4.0.1: install work up to 90% then no window -> it's because it is updating.
@@ -27,7 +30,7 @@
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
   
-# WORKING_WINE_VERSION="1.3.37"
+WORKING_WINE_VERSION=""
   
 TITLE="Runes Of Magic"
 PREFIX="RunesOfMagic"
@@ -42,7 +45,7 @@
 POL_Wine_SelectPrefix "$PREFIX"
 
 POL_Wine_PrefixCreate
-# POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
   
 #Installing POL_functions
 POL_Call POL_Install_ie6

New source code

#!/bin/bash
# Date : (2012-01-29)
# Last revision : See changelog
# Wine version used : System
# Distribution used to test : XUbuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux v4.3.4

# CHANGELOG:
# [Catskan] 2012 ?
#   First version ?
# [SuperPlumus] (2012-01-29 08-02)
#   Correction syntax error (!)
#   Change prefix name
#   Add $PREFIX var
#   Update gettext message
# [Dadu042] (2019-08-07)
#   Disable Wine 1.3.37, use System's Wine version (usally at least 2x. or 3.0 nowadays).
#   Disable POL_Browser before installing (why opening the website now ?).
# [Dadu042] (2019-12-08)
#   Standardize System wine.

#
# KNOWN ISSUES:
# - Wine 4.0.1: install work up to 90% then no window -> it's because it is updating.
# - Wine 4.0.1: Can not type in the login box, when the app windowed (OK when full screen).
# - Wine 4.0.1: No web page displayed in the installer, just a white color (however it seems not to block the installation). Tried: gecko install.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
WORKING_WINE_VERSION=""
  
TITLE="Runes Of Magic"
PREFIX="RunesOfMagic"
   
POL_Debug_Init
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Frogster" "http://www.runesofmagic.com/" "Catskan" "$PREFIX"
  
# POL_Browser "http://www.runesofmagic.com/"
   
#Wine preparation
POL_Wine_SelectPrefix "$PREFIX"

POL_Wine_PrefixCreate
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
  
#Installing POL_functions
POL_Call POL_Install_ie6
POL_Call POL_Install_dotnet20
POL_Call POL_Install_wininet
POL_Call POL_Install_vcrun2005
 
cd "$POL_USER_ROOT/tmp"
   
if [ "$POL_SELECTED_FILE" = "" ]
then
POL_SetupWindow_message "$(eval_gettext 'You can download $TITLE install file here:')\n\nhttp://www.runesofmagic.com/" "$TITLE"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
CHEMIN="$APP_ANSWER"
else
CHEMIN="$POL_SELECTED_FILE"
fi
POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE"
   
Set_Managed Off
POL_Wine "$CHEMIN"
  
   
POL_Shortcut "launcher.exe" "$TITLE Launcher" "" "" "Game;RoleGame;"
POL_Shortcut "Runes Of Magic.exe" "$TITLE" "" "" "Game;RoleGame;"
  
POL_SetupWindow_Close
exit 0

Replies

Dadu042 Wednesday 7 August 2019 at 18:25
Dadu042

Warning

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

Message

Tutorial played OK.

 

Warning: after installation, my game upgraded itself for more than 10 hours  ! (from version '7.2.1.2848.en' to '7.3.0.2880.en'). Size on the HDD : 27 GB !.

Differences

@@ -1,6 +1,7 @@
 #!/bin/bash
 # Date : (2012-01-29)
 # Last revision : See changelog
+# Wine version used : System
 # Distribution used to test : XUbuntu 18.04 x64
 # Script licence : GPL3
 # Program licence : Retail
@@ -14,9 +15,10 @@
 #   Change prefix name
 #   Add $PREFIX var
 #   Update gettext message
-# [Dadu042] (2019-08-02)
+# [Dadu042] (2019-08-07)
 #   Disable Wine 1.3.37, use System's Wine version (usally at least 2x. or 3.0 nowadays).
-
+#   Disable POL_Browser before installing (why the website now ?).
+#
 # KNOWN ISSUES:
 # - Wine 4.0.1: install work up to 90% then no window -> it's because it is updating.
 # - Wine 4.0.1: Can not type in the login box, when the app windowed (OK when full screen).
@@ -34,7 +36,6 @@
 POL_SetupWindow_Init
 POL_SetupWindow_presentation "$TITLE" "Frogster" "http://www.runesofmagic.com/" "Catskan" "$PREFIX"
   
-# Why opening the website now ?
 # POL_Browser "http://www.runesofmagic.com/"
    
 #Wine preparation

New source code

#!/bin/bash
# Date : (2012-01-29)
# Last revision : See changelog
# Wine version used : System
# Distribution used to test : XUbuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux v4.3.4

# CHANGELOG:
# [Catskan] 2012 ?
#   First version ?
# [SuperPlumus] (2012-01-29 08-02)
#   Correction syntax error (!)
#   Change prefix name
#   Add $PREFIX var
#   Update gettext message
# [Dadu042] (2019-08-07)
#   Disable Wine 1.3.37, use System's Wine version (usally at least 2x. or 3.0 nowadays).
#   Disable POL_Browser before installing (why the website now ?).
#
# KNOWN ISSUES:
# - Wine 4.0.1: install work up to 90% then no window -> it's because it is updating.
# - Wine 4.0.1: Can not type in the login box, when the app windowed (OK when full screen).
# - Wine 4.0.1: No web page displayed in the installer, just a white color (however it seems not to block the installation). Tried: gecko install.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
# WORKING_WINE_VERSION="1.3.37"
  
TITLE="Runes Of Magic"
PREFIX="RunesOfMagic"
   
POL_Debug_Init
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Frogster" "http://www.runesofmagic.com/" "Catskan" "$PREFIX"
  
# POL_Browser "http://www.runesofmagic.com/"
   
#Wine preparation
POL_Wine_SelectPrefix "$PREFIX"

POL_Wine_PrefixCreate
# POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
  
#Installing POL_functions
POL_Call POL_Install_ie6
POL_Call POL_Install_dotnet20
POL_Call POL_Install_wininet
POL_Call POL_Install_vcrun2005
 
cd "$POL_USER_ROOT/tmp"
   
if [ "$POL_SELECTED_FILE" = "" ]
then
POL_SetupWindow_message "$(eval_gettext 'You can download $TITLE install file here:')\n\nhttp://www.runesofmagic.com/" "$TITLE"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
CHEMIN="$APP_ANSWER"
else
CHEMIN="$POL_SELECTED_FILE"
fi
POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE"
   
Set_Managed Off
POL_Wine "$CHEMIN"
  
   
POL_Shortcut "launcher.exe" "$TITLE Launcher" "" "" "Game;RoleGame;"
POL_Shortcut "Runes Of Magic.exe" "$TITLE" "" "" "Game;RoleGame;"
  
POL_SetupWindow_Close
exit 0

Replies

Wednesday 7 August 2019 at 18:46
Improvements to try in a next script:
POL_Call POL_Install_ie6 -> 7
POL_Call POL_Install_dotnet20 -> 20sp2
POL_Call POL_Install_vcrun2005 -> 2010
Anonymous
Thursday 22 February 2024 at 16:04
I know it's been quite some time, but is there a way to get this running on macOS Sonoma on Apple Silicon processors?

Edited by Dadu042

lpegoraro Thursday 2 March 2017 at 22:21
lpegoraro Anonymous

Message

Hey, It is working fine in the main client, but I want to play a locked version of a local server that needs to pass the argument "NoCheckVersion" to the Client.exe, it is not working properly in this.

 

Can anyone help in this case?

 

Thanks!

Replies

Friday 2 August 2019 at 16:07
Wiki -> user guide.