GOG.com - Sim City 3000 Unlimited

Informations

Creator Nachricht
hansbonini Anonymous

Warning

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

Informations

Platforms:
Downloads: 2733
Wine: 2.22

Feedbacks

Description

Create and control your urban empire with more power than ever before. With SimCity 3000 Unlimited, you get all the great features of the original SimCity 3000 plus much more. Expand your SimCities with two new building sets from Asia and Europe. Take on 13 challenging scenarios or create your own. Unleash four new disasters including an unforgiving whirlpool and plummeting space junk. This is truly SimCity without limits!

  • Re-create cities from around the globe with hundreds of new buildings.
  • Reunify East and West Berlin in one of 13 scenarios.
  • Spruce up your city with over 95 world landmarks.
  • Protect your citizens from four new disasters.
  • Select hundreds of buildings from SimCity 3000 and all-new Asian and European buildings.
  • Create unique masterpieces for your metropolis with the Building Architect Plus tool.
  • Inflict 9 disasters-including toxic clouds, plague of locusts, space junk, and a whirlpool.
  • Play 13 challenging scenarios or make your own with the SimCity Scenario Creator

Source code

#!/usr/bin/env playonlinux-bash
# Date : (2016-10-21 02-54)
# Last revision : (2017-03-14 01-50)
# Wine version used : 1.6.2
# Distribution used to test : Arch x86_64 4.9.14-1-lts
# Author : Hans Bonini
# Script licence : GPL v.2
# Program licence : Retail
# Depend :
#
# CHANGELOG
# [Hans Bonini] (2016-10-21 02-54)
#   First script.
# [khampf] (2017-03-14)
#   Fixes.
# [Dadu042] (2019-12-30)
#   Wine 2.0 -> 2.22.
#

[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
# POL Variables
GOGID="simcity_3000"
PREFIX="Sc3kUnlimited_gog"
WINE_VERSION="2.22"
TITLE="GOG.com - SimCity 3000 Unlimited"
 
# SC3K Variables
SC3K_GAME_EXE="SC3U.EXE"
SC3K_GAME_SHORTCUT="SimCity 3000 Unlimited"
SC3K_LANGUAGESETUP_EXE="language_setup.exe"
SC3K_LANGUAGESETUP_SHORTCUT="SC3K - Language Setup"
SC3K_BAAPP_EXE="Baapp.exe"
SC3K_BAAPP_SHORTCUT="SC3K - Building Architect Plus"
 
# Initialize Setup and Debug it! ;)
POL_SetupWindow_Init
POL_Debug_Init
 
# Show Installer Presentation
POL_SetupWindow_presentation "$TITLE" "Maxis Software Inc. / Electronic Arts" "http://www.gog.com/game/$GOGID" "Hans Bonini" "$PREFIX"
 
# Call GOG Setup Selection
POL_Call POL_GoG_setup "$GOGID" "08def8dc74e350ad94c978eb46770f09"
  
# Configure Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINE_VERSION"
 
# Run GOG Installer
POL_Call POL_GoG_install
 
# Set OS to GOG
Set_OS "winxp"
 
# Set VMS to 64MB
POL_SetupWindow_VMS "64"
 
# Reboot Wine
POL_Wine_reboot
  
# Configure Shortcuts
POL_Shortcut "$SC3K_GAME_EXE" "$SC3K_GAME_SHORTCUT" "" "" "Game;Simulation;"
POL_Shortcut "$SC3K_LANGUAGESETUP_EXE" "$SC3K_LANGUAGESETUP_SHORTCUT" "" "" "Game;Simulation;"
POL_Shortcut "$SC3K_BAAPP_EXE" "$SC3K_BAAPP_SHORTCUT" "" "" "Game;Simulation;"
  
# Show Setup Success Message
POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE"
  
# Finish
POL_SetupWindow_Close
  
exit 0

Contributions

Filters:

Contribute
Member Nachricht
Dadu042 Tuesday 31 December 2019 at 14:27
Dadu042

Information

This update has been approved by the team.

Differences

@@ -7,14 +7,23 @@
 # Script licence : GPL v.2
 # Program licence : Retail
 # Depend :
-  
+#
+# CHANGELOG
+# [Hans Bonini] (2016-10-21 02-54)
+#   First script.
+# [khampf] (2017-03-14)
+#   Fixes.
+# [Dadu042] (2019-12-30)
+#   Wine 2.0 -> 2.22.
+#
+
 [ -z "$PLAYONLINUX" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
   
 # POL Variables
 GOGID="simcity_3000"
 PREFIX="Sc3kUnlimited_gog"
-WINE_VERSION="2.0"
+WINE_VERSION="2.22"
 TITLE="GOG.com - SimCity 3000 Unlimited"
  
 # SC3K Variables
@@ -43,7 +52,7 @@
 POL_Call POL_GoG_install
  
 # Set OS to GOG
-Set_OS winxp
+Set_OS "winxp"
  
 # Set VMS to 64MB
 POL_SetupWindow_VMS "64"

New source code

#!/usr/bin/env playonlinux-bash
# Date : (2016-10-21 02-54)
# Last revision : (2017-03-14 01-50)
# Wine version used : 1.6.2
# Distribution used to test : Arch x86_64 4.9.14-1-lts
# Author : Hans Bonini
# Script licence : GPL v.2
# Program licence : Retail
# Depend :
#
# CHANGELOG
# [Hans Bonini] (2016-10-21 02-54)
#   First script.
# [khampf] (2017-03-14)
#   Fixes.
# [Dadu042] (2019-12-30)
#   Wine 2.0 -> 2.22.
#

[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
# POL Variables
GOGID="simcity_3000"
PREFIX="Sc3kUnlimited_gog"
WINE_VERSION="2.22"
TITLE="GOG.com - SimCity 3000 Unlimited"
 
# SC3K Variables
SC3K_GAME_EXE="SC3U.EXE"
SC3K_GAME_SHORTCUT="SimCity 3000 Unlimited"
SC3K_LANGUAGESETUP_EXE="language_setup.exe"
SC3K_LANGUAGESETUP_SHORTCUT="SC3K - Language Setup"
SC3K_BAAPP_EXE="Baapp.exe"
SC3K_BAAPP_SHORTCUT="SC3K - Building Architect Plus"
 
# Initialize Setup and Debug it! ;)
POL_SetupWindow_Init
POL_Debug_Init
 
# Show Installer Presentation
POL_SetupWindow_presentation "$TITLE" "Maxis Software Inc. / Electronic Arts" "http://www.gog.com/game/$GOGID" "Hans Bonini" "$PREFIX"
 
# Call GOG Setup Selection
POL_Call POL_GoG_setup "$GOGID" "08def8dc74e350ad94c978eb46770f09"
  
# Configure Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINE_VERSION"
 
# Run GOG Installer
POL_Call POL_GoG_install
 
# Set OS to GOG
Set_OS "winxp"
 
# Set VMS to 64MB
POL_SetupWindow_VMS "64"
 
# Reboot Wine
POL_Wine_reboot
  
# Configure Shortcuts
POL_Shortcut "$SC3K_GAME_EXE" "$SC3K_GAME_SHORTCUT" "" "" "Game;Simulation;"
POL_Shortcut "$SC3K_LANGUAGESETUP_EXE" "$SC3K_LANGUAGESETUP_SHORTCUT" "" "" "Game;Simulation;"
POL_Shortcut "$SC3K_BAAPP_EXE" "$SC3K_BAAPP_SHORTCUT" "" "" "Game;Simulation;"
  
# Show Setup Success Message
POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE"
  
# Finish
POL_SetupWindow_Close
  
exit 0

Antworten

khampf Tuesday 14 March 2017 at 1:06
khampf

Warning

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

Nachricht

I just started writing my own script for SC3K when I found this which is better (mine could not download from GoG). I bumped Wine to the 2.0 stable version. The bad news is that I could not get this script to download from GoG either but downloading manually is easy enough. The script gives some runtime errors in the GoG setup but those are ok to ignore. Also the script had problems making shortcuts due to a couple of bad double quotes but I fixed those and now everything works great!

Differences

@@ -0,0 +1,65 @@
+#!/usr/bin/env playonlinux-bash
+# Date : (2016-10-21 02-54)
+# Last revision : (2017-03-14 01-50)
+# Wine version used : 1.6.2
+# Distribution used to test : Arch x86_64 4.9.14-1-lts
+# Author : Hans Bonini
+# Script licence : GPL v.2
+# Program licence : Retail
+# Depend :
+  
+[ -z "$PLAYONLINUX" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+  
+# POL Variables
+GOGID="simcity_3000"
+PREFIX="Sc3kUnlimited_gog"
+WINE_VERSION="2.0"
+TITLE="GOG.com - SimCity 3000 Unlimited"
+ 
+# SC3K Variables
+SC3K_GAME_EXE="SC3U.EXE"
+SC3K_GAME_SHORTCUT="SimCity 3000 Unlimited"
+SC3K_LANGUAGESETUP_EXE="language_setup.exe"
+SC3K_LANGUAGESETUP_SHORTCUT="SC3K - Language Setup"
+SC3K_BAAPP_EXE="Baapp.exe"
+SC3K_BAAPP_SHORTCUT="SC3K - Building Architect Plus"
+ 
+# Initialize Setup and Debug it! ;)
+POL_SetupWindow_Init
+POL_Debug_Init
+ 
+# Show Installer Presentation
+POL_SetupWindow_presentation "$TITLE" "Maxis Software Inc. / Electronic Arts" "http://www.gog.com/game/$GOGID" "Hans Bonini" "$PREFIX"
+ 
+# Call GOG Setup Selection
+POL_Call POL_GoG_setup "$GOGID" "08def8dc74e350ad94c978eb46770f09"
+  
+# Configure Prefix
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINE_VERSION"
+ 
+# Run GOG Installer
+POL_Call POL_GoG_install
+ 
+# Set OS to GOG
+Set_OS winxp
+ 
+# Set VMS to 64MB
+POL_SetupWindow_VMS "64"
+ 
+# Reboot Wine
+POL_Wine_reboot
+  
+# Configure Shortcuts
+POL_Shortcut "$SC3K_GAME_EXE" "$SC3K_GAME_SHORTCUT" "" "" "Game;Simulation;"
+POL_Shortcut "$SC3K_LANGUAGESETUP_EXE" "$SC3K_LANGUAGESETUP_SHORTCUT" "" "" "Game;Simulation;"
+POL_Shortcut "$SC3K_BAAPP_EXE" "$SC3K_BAAPP_SHORTCUT" "" "" "Game;Simulation;"
+  
+# Show Setup Success Message
+POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE"
+  
+# Finish
+POL_SetupWindow_Close
+  
+exit 0
\ No newline at end of file

New source code

#!/usr/bin/env playonlinux-bash
# Date : (2016-10-21 02-54)
# Last revision : (2017-03-14 01-50)
# Wine version used : 1.6.2
# Distribution used to test : Arch x86_64 4.9.14-1-lts
# Author : Hans Bonini
# Script licence : GPL v.2
# Program licence : Retail
# Depend :
  
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
# POL Variables
GOGID="simcity_3000"
PREFIX="Sc3kUnlimited_gog"
WINE_VERSION="2.0"
TITLE="GOG.com - SimCity 3000 Unlimited"
 
# SC3K Variables
SC3K_GAME_EXE="SC3U.EXE"
SC3K_GAME_SHORTCUT="SimCity 3000 Unlimited"
SC3K_LANGUAGESETUP_EXE="language_setup.exe"
SC3K_LANGUAGESETUP_SHORTCUT="SC3K - Language Setup"
SC3K_BAAPP_EXE="Baapp.exe"
SC3K_BAAPP_SHORTCUT="SC3K - Building Architect Plus"
 
# Initialize Setup and Debug it! ;)
POL_SetupWindow_Init
POL_Debug_Init
 
# Show Installer Presentation
POL_SetupWindow_presentation "$TITLE" "Maxis Software Inc. / Electronic Arts" "http://www.gog.com/game/$GOGID" "Hans Bonini" "$PREFIX"
 
# Call GOG Setup Selection
POL_Call POL_GoG_setup "$GOGID" "08def8dc74e350ad94c978eb46770f09"
  
# Configure Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINE_VERSION"
 
# Run GOG Installer
POL_Call POL_GoG_install
 
# Set OS to GOG
Set_OS winxp
 
# Set VMS to 64MB
POL_SetupWindow_VMS "64"
 
# Reboot Wine
POL_Wine_reboot
  
# Configure Shortcuts
POL_Shortcut "$SC3K_GAME_EXE" "$SC3K_GAME_SHORTCUT" "" "" "Game;Simulation;"
POL_Shortcut "$SC3K_LANGUAGESETUP_EXE" "$SC3K_LANGUAGESETUP_SHORTCUT" "" "" "Game;Simulation;"
POL_Shortcut "$SC3K_BAAPP_EXE" "$SC3K_BAAPP_SHORTCUT" "" "" "Game;Simulation;"
  
# Show Setup Success Message
POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE"
  
# Finish
POL_SetupWindow_Close
  
exit 0

Antworten

Tuesday 31 December 2019 at 14:25
Script approved.
hansbonini Wednesday 21 September 2016 at 10:32
hansbonini Anonymous

Warning

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

Nachricht

Changed to Wine 1.9.2, cause this version is most compatible with libgpg...

I didnt found where i can edit the script on main post.

Differences

@@ -0,0 +1,66 @@
+#!/usr/bin/env playonlinux-bash
+# Date : (2016-10-21 02-54)
+# Last revision : (2016-10-21 05-06)
+# Wine version used : 1.6.2
+# Distribution used to test : ARCH x86/64 4.7.4.1
+# Author : Hans Bonini
+# Script licence : GPL v.2
+# Program licence : Retail
+# Depend :
+ 
+[ -z "$PLAYONLINUX" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+ 
+# POL Variables
+GOGID="simcity_3000"
+PREFIX="Sc3kUnlimited_gog"
+WINE_VERSION="1.9.19"
+TITLE="GOG.com - SimCity 3000 Unlimited"
+
+# SC3K Variables
+SC3K_GAME_EXE="SC3U.EXE"
+SC3K_GAME_SHORTCUT="SimCity 3000 Unlimited"
+SC3K_LANGUAGESETUP_EXE="language_setup.exe"
+SC3K_LANGUAGESETUP_SHORTCUT=¨SC3K - Language Setup"
+SC3K_BAAPP_EXE="Baapp.exe"
+SC3K_BAAPP_SHORTCUT=¨SC3K - Building Architect Plus"
+
+# Initialize Setup and Debug it! ;)
+POL_SetupWindow_Init
+POL_Debug_Init
+
+# Show Installer Presentation 
+POL_SetupWindow_presentation "$TITLE" "Maxis Software Inc. / Electronic Arts" \
+    "http://www.gog.com/game/$GOGID" "Hans Bonini" "$PREFIX"
+
+# Call GOG Setup Selection
+POL_Call POL_GoG_setup "$GOGID" "08def8dc74e350ad94c978eb46770f09"
+ 
+# Configure Prefix
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINE_VERSION"
+
+# Run GOG Installer
+POL_Call POL_GoG_install
+
+# Set OS to GOG
+Set_OS winxp
+
+# Set VMS to 64MB
+POL_SetupWindow_VMS "64"
+
+# Reboot Wine
+POL_Wine_reboot
+ 
+# Configure Shortcuts
+POL_Shortcut "$SC3K_GAME_EXE" "$SC3K_GAME_SHORTCUT" "" "" "Game;Simulation;"
+POL_Shortcut "$SC3K_LANGUAGESETUP_EXE" "$SC3K_LANGUAGESETUP_SHORTCUT" "" "" "Game;Simulation;"
+POL_Shortcut "$SC3K_BAAPP_EXE" "$SC3K_BAAPP_SHORTCUT" "" "" "Game;Simulation;"
+ 
+# Show Setup Success Message
+POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE"
+ 
+# Finish
+POL_SetupWindow_Close
+ 
+exit 0
\ No newline at end of file

New source code

#!/usr/bin/env playonlinux-bash
# Date : (2016-10-21 02-54)
# Last revision : (2016-10-21 05-06)
# Wine version used : 1.6.2
# Distribution used to test : ARCH x86/64 4.7.4.1
# Author : Hans Bonini
# Script licence : GPL v.2
# Program licence : Retail
# Depend :
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
# POL Variables
GOGID="simcity_3000"
PREFIX="Sc3kUnlimited_gog"
WINE_VERSION="1.9.19"
TITLE="GOG.com - SimCity 3000 Unlimited"

# SC3K Variables
SC3K_GAME_EXE="SC3U.EXE"
SC3K_GAME_SHORTCUT="SimCity 3000 Unlimited"
SC3K_LANGUAGESETUP_EXE="language_setup.exe"
SC3K_LANGUAGESETUP_SHORTCUT=¨SC3K - Language Setup"
SC3K_BAAPP_EXE="Baapp.exe"
SC3K_BAAPP_SHORTCUT=¨SC3K - Building Architect Plus"

# Initialize Setup and Debug it! ;)
POL_SetupWindow_Init
POL_Debug_Init

# Show Installer Presentation 
POL_SetupWindow_presentation "$TITLE" "Maxis Software Inc. / Electronic Arts" \
    "http://www.gog.com/game/$GOGID" "Hans Bonini" "$PREFIX"

# Call GOG Setup Selection
POL_Call POL_GoG_setup "$GOGID" "08def8dc74e350ad94c978eb46770f09"
 
# Configure Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINE_VERSION"

# Run GOG Installer
POL_Call POL_GoG_install

# Set OS to GOG
Set_OS winxp

# Set VMS to 64MB
POL_SetupWindow_VMS "64"

# Reboot Wine
POL_Wine_reboot
 
# Configure Shortcuts
POL_Shortcut "$SC3K_GAME_EXE" "$SC3K_GAME_SHORTCUT" "" "" "Game;Simulation;"
POL_Shortcut "$SC3K_LANGUAGESETUP_EXE" "$SC3K_LANGUAGESETUP_SHORTCUT" "" "" "Game;Simulation;"
POL_Shortcut "$SC3K_BAAPP_EXE" "$SC3K_BAAPP_SHORTCUT" "" "" "Game;Simulation;"
 
# Show Setup Success Message
POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE"
 
# Finish
POL_SetupWindow_Close
 
exit 0

Antworten

hansbonini Wednesday 21 September 2016 at 10:10
hansbonini Anonymous

Warning

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

Nachricht

Installer Script - First Version

Differences

@@ -0,0 +1,53 @@
+#!/usr/bin/env playonlinux-bash
+# Date : (2016-10-21 02-54)
+# Last revision : (2016-10-21 02-54)
+# Wine version used : 1.6.2
+# Distribution used to test : ARCH x86/64 4.7.4.1
+# Author : Hans Bonini
+# Script licence : GPL v.2
+# Program licence : Retail
+# Depend :
+ 
+[ -z "$PLAYONLINUX" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+ 
+GOGID="simcity_3000"
+PREFIX="Sc3kUnlimited_gog"
+WINE_VERSION="1.6.2"
+TITLE="GOG.com - SimCity 3000 Unlimited"
+
+SC3K_GAME_EXE="SC3U.EXE"
+SC3K_GAME_SHORTCUT="SimCity 3000 Unlimited"
+SC3K_LANGUAGESETUP_EXE=¨language_setup.exe¨
+SC3K_LANGUAGESETUP_SHORTCUT=¨SC3K - Language Setup¨
+SC3K_BAAPP_EXE=¨Baapp.exe¨
+SC3K_BAAPP_SHORTCUT=¨SC3K - Building Architect Plus¨
+
+POL_SetupWindow_Init
+POL_Debug_Init
+ 
+POL_SetupWindow_presentation "$TITLE" "Maxis Software Inc. / Electronic Arts" \
+    "http://www.gog.com/game/$GOGID" "Hans Bonini" "$PREFIX"
+ 
+POL_Call POL_GoG_setup "$GOGID" ¨08def8dc74e350ad94c978eb46770f09¨
+ 
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINE_VERSION"
+
+POL_Call POL_GoG_install
+
+# GoG work!
+Set_OS winxp
+
+POL_SetupWindow_VMS "64"
+POL_Wine_reboot
+ 
+POL_Shortcut "$SC3K_GAME_EXE" "$SC3K_GAME_SHORTCUT" "" "" "Game;Simulation;"
+POL_Shortcut "$SC3K_LANGUAGESETUP_EXE" "$SC3K_LANGUAGESETUP_SHORTCUT" "" "" "Game;Simulation;"
+POL_Shortcut "$SC3K_BAAPP_EXE" "$SC3K_BAAPP_SHORTCUT" "" "" "Game;Simulation;"
+ 
+POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE"
+ 
+POL_SetupWindow_Close
+ 
+exit 0
\ No newline at end of file

New source code

#!/usr/bin/env playonlinux-bash
# Date : (2016-10-21 02-54)
# Last revision : (2016-10-21 02-54)
# Wine version used : 1.6.2
# Distribution used to test : ARCH x86/64 4.7.4.1
# Author : Hans Bonini
# Script licence : GPL v.2
# Program licence : Retail
# Depend :
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
GOGID="simcity_3000"
PREFIX="Sc3kUnlimited_gog"
WINE_VERSION="1.6.2"
TITLE="GOG.com - SimCity 3000 Unlimited"

SC3K_GAME_EXE="SC3U.EXE"
SC3K_GAME_SHORTCUT="SimCity 3000 Unlimited"
SC3K_LANGUAGESETUP_EXE=¨language_setup.exe¨
SC3K_LANGUAGESETUP_SHORTCUT=¨SC3K - Language Setup¨
SC3K_BAAPP_EXE=¨Baapp.exe¨
SC3K_BAAPP_SHORTCUT=¨SC3K - Building Architect Plus¨

POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "Maxis Software Inc. / Electronic Arts" \
    "http://www.gog.com/game/$GOGID" "Hans Bonini" "$PREFIX"
 
POL_Call POL_GoG_setup "$GOGID" ¨08def8dc74e350ad94c978eb46770f09¨
 
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINE_VERSION"

POL_Call POL_GoG_install

# GoG work!
Set_OS winxp

POL_SetupWindow_VMS "64"
POL_Wine_reboot
 
POL_Shortcut "$SC3K_GAME_EXE" "$SC3K_GAME_SHORTCUT" "" "" "Game;Simulation;"
POL_Shortcut "$SC3K_LANGUAGESETUP_EXE" "$SC3K_LANGUAGESETUP_SHORTCUT" "" "" "Game;Simulation;"
POL_Shortcut "$SC3K_BAAPP_EXE" "$SC3K_BAAPP_SHORTCUT" "" "" "Game;Simulation;"
 
POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE"
 
POL_SetupWindow_Close
 
exit 0

Antworten