GOG.com - The Elder Scrolls III: Morrowind GOTY Edition

Informations

Creator Message
Fangorn Anonymous

Warning

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

Informations

Platforms:
Downloads: 17338
Wine: System

Feedbacks

Description

Open-world action role-playing video game, 2002.

The Elder Scrolls III: Morrowind Game of the Year Edition includes Morrowind plus all of the content from the Bloodmoon and Tribunal expansions.

Appdb.winehq.org

Source code

#!/bin/bash
# Last revision : see changelog
# Wine version used : system
# Author : see changelog
# License : GNU/GPL v3

# CHANGELOG
# [Tutul, modified by Fangorn] (2015-12-26)
#   First script.
# [Dadu042] (2020-01-06)
#   Wine 1.8 -> system version.
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"

GOGID="the_elder_scrolls_iii_morrowind_goty_edition"  
TITLE="GOG.com - The Elder Scrolls III: Morrowind GOTY Edition"
SHORTCUT_NAME="The Elder Scrolls III - Morrowind"
PREFIX="TES3_Morrowind_gog"
EDITOR="Bethesda Softworks"
GAME_URL="http://www.gog.com/gamecard/$GOGID"
AUTHOR="Fangorn"
GAME_VMS="32"
 
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/morrowind/top.jpg" "http://files.playonlinux.com/resources/setups/morrowind/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 2689
 
# Starting debugging API
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 

POL_Call POL_GoG_setup "$GOGID" "3a027504a0e4599f8c6b5b5bcc87a5c6" # MD5 hash of installer v.2.0.0.7

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
   
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86"
POL_Wine_PrefixCreate
 
POL_Call POL_GoG_install

# GoG work!
Set_OS winxp
   
# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
   
# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver
   
# Doesn't hurt ;)
POL_Wine_reboot

POL_Shortcut "Morrowind Launcher.exe" "$SHORTCUT_NAME" "$SHORTCUT_NAME.png" "" "Game;RolePlaying;"
POL_Shortcut_Document "$SHORTCUT_NAME" "$GOGROOT/Morrowind/manual.pdf" 
 
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Message
Dadu042 Monday 6 January 2020 at 23:55
Dadu042

Information

This update has been approved by the team.

Differences

@@ -1,8 +1,14 @@
 #!/bin/bash
-# Last revision : (2015-12-26 10:20)
-# Wine version used : 1.8
-# Author : Tutul, modified by Fangorn
+# Last revision : see changelog
+# Wine version used : system
+# Author : see changelog
 # License : GNU/GPL v3
+
+# CHANGELOG
+# [Tutul, modified by Fangorn] (2015-12-26)
+#   First script.
+# [Dadu042] (2020-01-06)
+#   Wine 1.8 -> system version.
  
 [ -z "$PLAYONLINUX" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
@@ -25,9 +31,7 @@
  
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
  
-# Setting Wine Version
-WORKING_WINE_VERSION="1.8"
- 
+
 POL_Call POL_GoG_setup "$GOGID" "3a027504a0e4599f8c6b5b5bcc87a5c6" # MD5 hash of installer v.2.0.0.7
 
 # Setting prefix path
@@ -35,7 +39,7 @@
    
 # Downloading wine if necessary and creating prefix
 POL_System_SetArch "x86"
-POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+POL_Wine_PrefixCreate
  
 POL_Call POL_GoG_install
 

New source code

#!/bin/bash
# Last revision : see changelog
# Wine version used : system
# Author : see changelog
# License : GNU/GPL v3

# CHANGELOG
# [Tutul, modified by Fangorn] (2015-12-26)
#   First script.
# [Dadu042] (2020-01-06)
#   Wine 1.8 -> system version.
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"

GOGID="the_elder_scrolls_iii_morrowind_goty_edition"  
TITLE="GOG.com - The Elder Scrolls III: Morrowind GOTY Edition"
SHORTCUT_NAME="The Elder Scrolls III - Morrowind"
PREFIX="TES3_Morrowind_gog"
EDITOR="Bethesda Softworks"
GAME_URL="http://www.gog.com/gamecard/$GOGID"
AUTHOR="Fangorn"
GAME_VMS="32"
 
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/morrowind/top.jpg" "http://files.playonlinux.com/resources/setups/morrowind/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 2689
 
# Starting debugging API
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 

POL_Call POL_GoG_setup "$GOGID" "3a027504a0e4599f8c6b5b5bcc87a5c6" # MD5 hash of installer v.2.0.0.7

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
   
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86"
POL_Wine_PrefixCreate
 
POL_Call POL_GoG_install

# GoG work!
Set_OS winxp
   
# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
   
# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver
   
# Doesn't hurt ;)
POL_Wine_reboot

POL_Shortcut "Morrowind Launcher.exe" "$SHORTCUT_NAME" "$SHORTCUT_NAME.png" "" "Game;RolePlaying;"
POL_Shortcut_Document "$SHORTCUT_NAME" "$GOGROOT/Morrowind/manual.pdf" 
 
POL_SetupWindow_Close
exit 0

Replies

Fangorn Saturday 26 December 2015 at 15:54
Fangorn Anonymous

Warning

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

Differences

@@ -0,0 +1,58 @@
+#!/bin/bash
+# Last revision : (2015-12-26 10:20)
+# Wine version used : 1.8
+# Author : Tutul, modified by Fangorn
+# License : GNU/GPL v3
+ 
+[ -z "$PLAYONLINUX" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+GOGID="the_elder_scrolls_iii_morrowind_goty_edition"  
+TITLE="GOG.com - The Elder Scrolls III: Morrowind GOTY Edition"
+SHORTCUT_NAME="The Elder Scrolls III - Morrowind"
+PREFIX="TES3_Morrowind_gog"
+EDITOR="Bethesda Softworks"
+GAME_URL="http://www.gog.com/gamecard/$GOGID"
+AUTHOR="Fangorn"
+GAME_VMS="32"
+ 
+POL_GetSetupImages "http://files.playonlinux.com/resources/setups/morrowind/top.jpg" "http://files.playonlinux.com/resources/setups/morrowind/left.jpg" "$TITLE"
+POL_SetupWindow_Init
+POL_SetupWindow_SetID 2689
+ 
+# Starting debugging API
+POL_Debug_Init
+ 
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+ 
+# Setting Wine Version
+WORKING_WINE_VERSION="1.8"
+ 
+POL_Call POL_GoG_setup "$GOGID" "3a027504a0e4599f8c6b5b5bcc87a5c6" # MD5 hash of installer v.2.0.0.7
+
+# Setting prefix path
+POL_Wine_SelectPrefix "$PREFIX"
+   
+# Downloading wine if necessary and creating prefix
+POL_System_SetArch "x86"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+ 
+POL_Call POL_GoG_install
+
+# GoG work!
+Set_OS winxp
+   
+# Asking about memory size of graphic card
+POL_SetupWindow_VMS $GAME_VMS
+   
+# Set Graphic Card information keys for wine
+POL_Wine_SetVideoDriver
+   
+# Doesn't hurt ;)
+POL_Wine_reboot
+
+POL_Shortcut "Morrowind Launcher.exe" "$SHORTCUT_NAME" "$SHORTCUT_NAME.png" "" "Game;RolePlaying;"
+POL_Shortcut_Document "$SHORTCUT_NAME" "$GOGROOT/Morrowind/manual.pdf" 
+ 
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Last revision : (2015-12-26 10:20)
# Wine version used : 1.8
# Author : Tutul, modified by Fangorn
# License : GNU/GPL v3
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"

GOGID="the_elder_scrolls_iii_morrowind_goty_edition"  
TITLE="GOG.com - The Elder Scrolls III: Morrowind GOTY Edition"
SHORTCUT_NAME="The Elder Scrolls III - Morrowind"
PREFIX="TES3_Morrowind_gog"
EDITOR="Bethesda Softworks"
GAME_URL="http://www.gog.com/gamecard/$GOGID"
AUTHOR="Fangorn"
GAME_VMS="32"
 
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/morrowind/top.jpg" "http://files.playonlinux.com/resources/setups/morrowind/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 2689
 
# Starting debugging API
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
# Setting Wine Version
WORKING_WINE_VERSION="1.8"
 
POL_Call POL_GoG_setup "$GOGID" "3a027504a0e4599f8c6b5b5bcc87a5c6" # MD5 hash of installer v.2.0.0.7

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
   
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
POL_Call POL_GoG_install

# GoG work!
Set_OS winxp
   
# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
   
# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver
   
# Doesn't hurt ;)
POL_Wine_reboot

POL_Shortcut "Morrowind Launcher.exe" "$SHORTCUT_NAME" "$SHORTCUT_NAME.png" "" "Game;RolePlaying;"
POL_Shortcut_Document "$SHORTCUT_NAME" "$GOGROOT/Morrowind/manual.pdf" 
 
POL_SetupWindow_Close
exit 0

Replies

Anonymous
Thursday 31 January 2019 at 21:05
I am attempting to install this, but it is stuck on "Please wait while the virtual drive is being created..."

System information:

ubuntu 18.04

wine 1.8 (installed by playonlinux)

 
Anonymous
Tuesday 24 August 2021 at 21:45
I installed the game but keep getting Out of Range error. I don't know what that means or how to fix.