Final Fantasy III

Informations

Creator Message
Ronin DUSETTE

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 16563
Wine: 3.0.3

Feedbacks

Description

The new FF3 re-release.

Screenshots

MiniatureMiniatureMiniatureMiniatureMiniature

Source code

#!/bin/bash
# Date : (2014-03-01)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5
#
# CHANGELOG
# [RoninDusette] (2014-03-01)
#   Initial script.
# [Dadu042] (2020-01-27 23:00)
#   Wine 1.7.30 -> 3.0.3

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
     
PREFIX="FinalFantasyIII"
WINEVERSION="3.0.3"
TITLE="Final Fantasy III"
EDITOR="Squre Enix Co."
GAME_URL="http://www.square-enix.com/"
AUTHOR="RoninDusette"
     
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
     
POL_Debug_Init
     
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
     
# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
     
#Dependencies
     
# Configuration
Set_OS "winxp"
     
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
     
# Create Shortcuts
POL_Shortcut "FF3_Launcher.exe" "$TITLE" "" "" "Game;"
    
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Message
Dadu042 Wednesday 29 January 2020 at 23:37
Dadu042

Information

This update has been approved by the team.

Differences

@@ -4,13 +4,18 @@
 # Author : RoninDusette
 # Licence : GPLv3
 # PlayOnLinux: 4.2.5
-     
-     
+#
+# CHANGELOG
+# [RoninDusette] (2014-03-01)
+#   Initial script.
+# [Dadu042] (2020-01-27 23:00)
+#   Wine 1.7.30 -> 3.0.3
+
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
      
 PREFIX="FinalFantasyIII"
-WINEVERSION="1.7.30"
+WINEVERSION="3.0.3"
 TITLE="Final Fantasy III"
 EDITOR="Squre Enix Co."
 GAME_URL="http://www.square-enix.com/"
@@ -41,7 +46,7 @@
 POL_Wine_WaitExit "$TITLE"
      
 # Create Shortcuts
-POL_Shortcut "FF3_Launcher.exe" "$TITLE"
+POL_Shortcut "FF3_Launcher.exe" "$TITLE" "" "" "Game;"
     
 POL_SetupWindow_Close
 exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2014-03-01)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5
#
# CHANGELOG
# [RoninDusette] (2014-03-01)
#   Initial script.
# [Dadu042] (2020-01-27 23:00)
#   Wine 1.7.30 -> 3.0.3

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
     
PREFIX="FinalFantasyIII"
WINEVERSION="3.0.3"
TITLE="Final Fantasy III"
EDITOR="Squre Enix Co."
GAME_URL="http://www.square-enix.com/"
AUTHOR="RoninDusette"
     
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
     
POL_Debug_Init
     
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
     
# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
     
#Dependencies
     
# Configuration
Set_OS "winxp"
     
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
     
# Create Shortcuts
POL_Shortcut "FF3_Launcher.exe" "$TITLE" "" "" "Game;"
    
POL_SetupWindow_Close
exit 0

Replies

Ronin DUSETTE Wednesday 12 November 2014 at 18:31
Ronin DUSETTE

Warning

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

Message

Initial commit

Differences

@@ -0,0 +1,47 @@
+#!/bin/bash
+# Date : (2014-03-01)
+# Distribution used to test : Kubuntu 14.04 LTS 64-bit
+# Author : RoninDusette
+# Licence : GPLv3
+# PlayOnLinux: 4.2.5
+     
+     
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+     
+PREFIX="FinalFantasyIII"
+WINEVERSION="1.7.30"
+TITLE="Final Fantasy III"
+EDITOR="Squre Enix Co."
+GAME_URL="http://www.square-enix.com/"
+AUTHOR="RoninDusette"
+     
+#Initialization
+POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
+POL_SetupWindow_Init
+     
+POL_Debug_Init
+     
+# Presentation
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+     
+# Create Prefix
+POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINEVERSION"
+     
+#Dependencies
+     
+# Configuration
+Set_OS "winxp"
+     
+# Installation
+POL_Wine_WaitBefore "$TITLE"
+POL_Wine "$APP_ANSWER"
+POL_Wine_WaitExit "$TITLE"
+     
+# Create Shortcuts
+POL_Shortcut "FF3_Launcher.exe" "$TITLE"
+    
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2014-03-01)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5
     
     
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
     
PREFIX="FinalFantasyIII"
WINEVERSION="1.7.30"
TITLE="Final Fantasy III"
EDITOR="Squre Enix Co."
GAME_URL="http://www.square-enix.com/"
AUTHOR="RoninDusette"
     
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
     
POL_Debug_Init
     
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
     
# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
     
#Dependencies
     
# Configuration
Set_OS "winxp"
     
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
     
# Create Shortcuts
POL_Shortcut "FF3_Launcher.exe" "$TITLE"
    
POL_SetupWindow_Close
exit 0

Replies

Wednesday 12 November 2014 at 18:31
Will add screenshots and resources later.
Friday 14 November 2014 at 19:15
Added screenshots.
Thursday 11 December 2014 at 21:19
Resources have been added here: http://www.playonlinux.com/en/topic-12694-Script_Final_Fantasy_3_resources.html
Thursday 11 December 2014 at 22:10
uploaded
Thursday 11 December 2014 at 22:32
Sweeeet. Thanks, sir.