Steins;Gate

Informations

Creator Message
markingdude Anonymous

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 15367
Wine: 2.22

Feedbacks

Description

Science fiction visual novel video game, 2009.  Wikipedia.

Note that this installer is designed for only the official English translation available at J-List.

Appdb.winehq.org , PCGamingWiki.

Screenshots

Miniature

Source code

#!/bin/bash
# Date : (2014-01-20)
# Last revision : see changelog
# Wine version used : 2.22
# Distribution used to test : Mac OS X 10.9.2
# Author : Marking
# Tested using Mac OS X 10.9.2

# CHANGELOG
# [Marking] (2014-01-20)
#   First script.
# [Dadu042] (2019-12-08)
#   Wine 1.7.15 -> 2.22
# [Dadu042] (2020-03-17)
#   Wine 1.7.15 -> 2.22 (fix)

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

# Setup some needed variables
TITLE="Steins;Gate"
PREFIX="steinsgate"
WINEVERSION="2.22"
EDITOR="Nitroplus"
GAME_URL="http://steins-gate.us"
AUTHOR="Marking"
SHORTCUT_NAME="Steins;Gate"

# Download images for installation script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"

# Initialize the script and debugging
POL_SetupWindow_Init
POL_SetupWindow_SetID 1988
POL_Debug_Init
 
# Setup presentation window
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Begin setting up the Wine Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Installs components needed to install game and play movies
POL_Call POL_Install_msxml3
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_d3dx9
POL_Call POL_Install_quartz
POL_Call POL_Install_wmp10

# Ask user for either DVD or Local installation
POL_SetupWindow_InstallMethod "LOCAL,DVD"

if [ "$INSTALL_METHOD" = "LOCAL" ]
then
        # Ask user to find "Setup.exe"
    cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please locate installation program (Setup.exe)')" "$TITLE"
        POL_Wine_WaitBefore "$TITLE"
        POL_Wine "$APP_ANSWER" /silent

elif [ "$INSTALL_METHOD" = "DVD" ]
then
        # Launches the installation program from CD/DVD
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "data.bin"
        POL_Wine_WaitBefore "$TITLE"
        POL_Wine "$CDROM/Setup.exe" /silent
fi
    
# Create a shortcut for easy access
POL_Shortcut "STEINSGATE.EXE" "$SHORTCUT_NAME" "$SHORTCUT_NAME.png"

POL_SetupWindow_Close
exit

Contributions

Filters:

Contribute
Member Message
yassuo Friday 24 April 2020 at 20:01
yassuo Anonymous

Message

please help me it's asking for a setup.exe how do i move on?

Replies

Dadu042 Tuesday 17 March 2020 at 11:26
Dadu042

Information

This update has been approved by the team.

Differences

@@ -11,6 +11,8 @@
 #   First script.
 # [Dadu042] (2019-12-08)
 #   Wine 1.7.15 -> 2.22
+# [Dadu042] (2020-03-17)
+#   Wine 1.7.15 -> 2.22 (fix)
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
@@ -18,7 +20,7 @@
 # Setup some needed variables
 TITLE="Steins;Gate"
 PREFIX="steinsgate"
-WINEVERSION="1.7.15"
+WINEVERSION="2.22"
 EDITOR="Nitroplus"
 GAME_URL="http://steins-gate.us"
 AUTHOR="Marking"

New source code

#!/bin/bash
# Date : (2014-01-20)
# Last revision : see changelog
# Wine version used : 2.22
# Distribution used to test : Mac OS X 10.9.2
# Author : Marking
# Tested using Mac OS X 10.9.2

# CHANGELOG
# [Marking] (2014-01-20)
#   First script.
# [Dadu042] (2019-12-08)
#   Wine 1.7.15 -> 2.22
# [Dadu042] (2020-03-17)
#   Wine 1.7.15 -> 2.22 (fix)

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

# Setup some needed variables
TITLE="Steins;Gate"
PREFIX="steinsgate"
WINEVERSION="2.22"
EDITOR="Nitroplus"
GAME_URL="http://steins-gate.us"
AUTHOR="Marking"
SHORTCUT_NAME="Steins;Gate"

# Download images for installation script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"

# Initialize the script and debugging
POL_SetupWindow_Init
POL_SetupWindow_SetID 1988
POL_Debug_Init
 
# Setup presentation window
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Begin setting up the Wine Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Installs components needed to install game and play movies
POL_Call POL_Install_msxml3
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_d3dx9
POL_Call POL_Install_quartz
POL_Call POL_Install_wmp10

# Ask user for either DVD or Local installation
POL_SetupWindow_InstallMethod "LOCAL,DVD"

if [ "$INSTALL_METHOD" = "LOCAL" ]
then
        # Ask user to find "Setup.exe"
    cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please locate installation program (Setup.exe)')" "$TITLE"
        POL_Wine_WaitBefore "$TITLE"
        POL_Wine "$APP_ANSWER" /silent

elif [ "$INSTALL_METHOD" = "DVD" ]
then
        # Launches the installation program from CD/DVD
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "data.bin"
        POL_Wine_WaitBefore "$TITLE"
        POL_Wine "$CDROM/Setup.exe" /silent
fi
    
# Create a shortcut for easy access
POL_Shortcut "STEINSGATE.EXE" "$SHORTCUT_NAME" "$SHORTCUT_NAME.png"

POL_SetupWindow_Close
exit

Replies

Lapin Tuesday 17 March 2020 at 2:15
Lapin Anonymous

Message

Hi, I'm fairly new and don't know how everything works on this site, but from my understanding, the value of WINEVERSION should have been changed to "2.22". I had to download the script from here and modify it to make the installation work. I made an account specifically to inform you of this since this is my favorite game, but I don't know how the header should be changed to reflect the change actually being applied, so I'm not submitting the actual edit.

Replies

Tuesday 17 March 2020 at 11:24
Thanks for the info, I fix the script. If the gamealso does work with Wine 3.0.3 please report it here.
Dadu042 Sunday 8 December 2019 at 11:43
Dadu042

Warning

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

Differences

@@ -1,12 +1,17 @@
 #!/bin/bash
 # Date : (2014-01-20)
-# Last revision : (2014-01-20)
-# Wine version used : 1.7.15
+# Last revision : see changelog
+# Wine version used : 2.22
 # Distribution used to test : Mac OS X 10.9.2
 # Author : Marking
-
 # Tested using Mac OS X 10.9.2
 
+# CHANGELOG
+# [Marking] (2014-01-20)
+#   First script.
+# [Dadu042] (2019-12-08)
+#   Wine 1.7.15 -> 2.22
+
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
 

New source code

#!/bin/bash
# Date : (2014-01-20)
# Last revision : see changelog
# Wine version used : 2.22
# Distribution used to test : Mac OS X 10.9.2
# Author : Marking
# Tested using Mac OS X 10.9.2

# CHANGELOG
# [Marking] (2014-01-20)
#   First script.
# [Dadu042] (2019-12-08)
#   Wine 1.7.15 -> 2.22

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

# Setup some needed variables
TITLE="Steins;Gate"
PREFIX="steinsgate"
WINEVERSION="1.7.15"
EDITOR="Nitroplus"
GAME_URL="http://steins-gate.us"
AUTHOR="Marking"
SHORTCUT_NAME="Steins;Gate"

# Download images for installation script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"

# Initialize the script and debugging
POL_SetupWindow_Init
POL_SetupWindow_SetID 1988
POL_Debug_Init
 
# Setup presentation window
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Begin setting up the Wine Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Installs components needed to install game and play movies
POL_Call POL_Install_msxml3
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_d3dx9
POL_Call POL_Install_quartz
POL_Call POL_Install_wmp10

# Ask user for either DVD or Local installation
POL_SetupWindow_InstallMethod "LOCAL,DVD"

if [ "$INSTALL_METHOD" = "LOCAL" ]
then
        # Ask user to find "Setup.exe"
    cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please locate installation program (Setup.exe)')" "$TITLE"
        POL_Wine_WaitBefore "$TITLE"
        POL_Wine "$APP_ANSWER" /silent

elif [ "$INSTALL_METHOD" = "DVD" ]
then
        # Launches the installation program from CD/DVD
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "data.bin"
        POL_Wine_WaitBefore "$TITLE"
        POL_Wine "$CDROM/Setup.exe" /silent
fi
    
# Create a shortcut for easy access
POL_Shortcut "STEINSGATE.EXE" "$SHORTCUT_NAME" "$SHORTCUT_NAME.png"

POL_SetupWindow_Close
exit

Replies

kjeld_sol Sunday 5 May 2019 at 18:08
kjeld_sol Anonymous

Message

Not installing, in install-process give error whem trying install WMP. 
OS KDE Neon (Ubuntu 18.04).

Replies

Friday 10 May 2019 at 11:14
Perhaps the issue is related to : https://www.playonlinux.com/en/app-757-POL_Install_wmp10.html
Anonymous
Friday 24 May 2019 at 23:11
 Not works.