I Miss the Sunrise

Informations

Creator Message
monban

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 7724
Wine: System

Feedbacks

Description

"Where were you when the universe ended?". I Miss the Sunrise (2012) is an all-new prequel to 2009's The Reconstruction. Featuring strategic battles, player-created weapons, and unique gameplay around every turn, I Miss the Sunrise is an RPG experience like no other.

Web page on rpgmaker.net 

Note: script can download the game.

Screenshots

MiniatureMiniatureMiniature

Source code

#!/bin/bash
# Date : (2014-02-02 00-45)
# Last revision : (2014-02-07 01-45)
# Wine version used : 1.7.11
# Distribution used to test : Ubuntu 13.10 Saucy Salamander
# Author : monban
# Script licence : Public Domain
# Program licence : Commercial
# Depend :

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="I Miss the Sunrise"
PREFIX="imissthesunrise"
 
POL_SetupWindow_Init
POL_SetupWindow_SetID 1939
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "Tilde-One" "http://www.tilde-one.com/IMTS/" "monban" "$PREFIX"
 
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
 
POL_System_TmpCreate "$PREFIX"

POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"

if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
  cd $POL_System_TmpDir
  POL_Download "http://rpgmaker.net/content/games/2732/downloads/IMTS_Setup_24.exe" "7025979eb03e9a226e2dd742f0a02db6"
else
  POL_SetupWindow_browse "Please select the IMTS setup file" "$TITLE" "IMTS_Setup_24.exe"
  cp "$APP_ANSWER" "$POL_System_TmpDir/IMTS_Setup_24.exe"
fi
 
POL_Call POL_Install_directx9
POL_Call POL_Install_dotnet20
 
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$POL_System_TmpDir/IMTS_Setup_24.exe"
POL_Wine_reboot
 
POL_Shortcut "Game.exe" "$TITLE"
POL_System_TmpDelete
POL_SetupWindow_Close

exit 0

Contributions

Filters:

Contribute
Member Message
Dadu042 Monday 3 June 2019 at 14:19
Dadu042

Message

I use the download option, I have the following issues :

  • Wine 4.0: missing texts (not displayed) from the first screen (ie: "Awaken new pilot" is blacked).
  • Wine 4.0, error in the log (Fixed by installing directmusic) : 0009:err:ole:COMPOBJ_DllList_Add couldn't load in-process dll L"C:\\windows\\system32\\dmloader.dll"
  • Wine 3.21 and 2.22 : crash before launch.

Replies

Edited by Dadu042