RoX

Informatie

Creator Bericht
odziom91

Information

This installer has been approved by the team.

Informatie

Platforms:
Downloads: 2660
Wine: 3.0.3

Feedbacks

Omschrijving

RoX is a freeware similar in many ways to Boulder Dash, but with stylish modern graphics and music. RoX includes an editor that lets you create your own level packs when you're finished or frustrated with the 69 pack-in levels. Website.

Schermafdrukken

Miniature

Broncode

#!/bin/bash
#
# Date : (2016-08-02 23-31)
# Last revision : see changelog
# Wine version used : 3.0.3
# Distribution used to test : Manjaro Linux 16.06.1
# Author : OdzioM
# Licence : Freeware
#
#
# CHANGELOG
# [OdzioM] (2016-08-02)
#   First script
# [Dadu042] (2020-01-02)
#   Wine 1.9.15-staging -> 3.0.3
#   The link to "dx8vb.dll" is still break, I can not find a website (linkable) hosting it.


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Safrosoft RoX"
INFO1="Safrosoft"
INFO2="http://www.autofish.net/shrines/rox/"
AUTHOR="OdzioM"
PREFIX="RoX"
WORKING_WINE_VERSION="3.0.3"
WINE_ARCH="x86"
 
# Down as of 2020-01-02
# POL_GetSetupImages "http://odziomek.pl/playonlinux/$PREFIX/top.png" "http://odziomek.pl/playonlinux/$PREFIX/left.jpg" "$TITLE"
 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$INFO1" "$INFO2" "$AUTHOR" "$PREFIX"
 
# checking for unzip command in Linux
check_one "unzip" "unzip"
POL_SetupWindow_missing
 
POL_Wine_SelectPrefix "$PREFIX"
 
POL_System_SetArch "$WINE_ARCH"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"

# Down as of 2020-01-02
# Download and register DX8VB.DLL (required to start RoX)
POL_Download "http://odziomek.pl/playonlinux/$PREFIX/dll/dx8vb.dll"
mv -f dx8vb.dll "$WINEPREFIX/drive_c/windows/system32"
POL_Wine regsvr32.exe dx8vb.dll
POL_Wine_WaitExit "dx8vb.dll"
 
# Download and unzip RoX installer
POL_Download "http://www.autofish.net/shrines/rox/rox_1_4_setup.zip"
unzip "$POL_System_TmpDir/rox_1_4_setup.zip"
 
# Installation
SETUP_EXE="$POL_System_TmpDir/RoX_1_4_Setup.exe"
POL_Wine start /unix "$SETUP_EXE"
POL_Wine_WaitExit "$TITLE"
 
POL_System_TmpDelete "$PREFIX"
 
POL_Shortcut "RoX.exe" "$TITLE" "" "" "Game;"
POL_Shortcut "Rox Editor.exe" "$TITLE Editor" "" ""
 
POL_SetupWindow_message "Installation complete!\n\nTo run $TITLE please select $TITLE icon from your desktop." "$TITLE"
 
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Bericht
Dadu042 Donderdag 2 Januari 2020 om 11:56
Dadu042

Information

This update has been approved by the team.

Differences

@@ -1,63 +1,74 @@
 #!/bin/bash
 #
 # Date : (2016-08-02 23-31)
-# Last revision : (2016-08-03 01-00)
-# Wine version used : 1.9.15-staging
+# Last revision : see changelog
+# Wine version used : 3.0.3
 # Distribution used to test : Manjaro Linux 16.06.1
 # Author : OdzioM
 # Licence : Freeware
+#
+#
+# CHANGELOG
+# [OdzioM] (2016-08-02)
+#   First script
+# [Dadu042] (2020-01-02)
+#   Wine 1.9.15-staging -> 3.0.3
+#   The link to "dx8vb.dll" is still break, I can not find a website (linkable) hosting it.
+
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
-
+ 
 TITLE="Safrosoft RoX"
 INFO1="Safrosoft"
 INFO2="http://www.autofish.net/shrines/rox/"
 AUTHOR="OdzioM"
 PREFIX="RoX"
-WORKING_WINE_VERSION="1.9.15-staging"
+WORKING_WINE_VERSION="3.0.3"
 WINE_ARCH="x86"
-
-POL_GetSetupImages "http://odziomek.pl/playonlinux/$PREFIX/top.png" "http://odziomek.pl/playonlinux/$PREFIX/left.jpg" "$TITLE"
-
+ 
+# Down as of 2020-01-02
+# POL_GetSetupImages "http://odziomek.pl/playonlinux/$PREFIX/top.png" "http://odziomek.pl/playonlinux/$PREFIX/left.jpg" "$TITLE"
+ 
 POL_SetupWindow_Init
 POL_Debug_Init
-
+ 
 POL_SetupWindow_presentation "$TITLE" "$INFO1" "$INFO2" "$AUTHOR" "$PREFIX"
-
+ 
 # checking for unzip command in Linux
 check_one "unzip" "unzip"
 POL_SetupWindow_missing
-
+ 
 POL_Wine_SelectPrefix "$PREFIX"
-
+ 
 POL_System_SetArch "$WINE_ARCH"
 POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
-
+ 
 POL_System_TmpCreate "$PREFIX"
 cd "$POL_System_TmpDir"
 
+# Down as of 2020-01-02
 # Download and register DX8VB.DLL (required to start RoX)
 POL_Download "http://odziomek.pl/playonlinux/$PREFIX/dll/dx8vb.dll"
 mv -f dx8vb.dll "$WINEPREFIX/drive_c/windows/system32"
 POL_Wine regsvr32.exe dx8vb.dll
 POL_Wine_WaitExit "dx8vb.dll"
-
+ 
 # Download and unzip RoX installer
 POL_Download "http://www.autofish.net/shrines/rox/rox_1_4_setup.zip"
 unzip "$POL_System_TmpDir/rox_1_4_setup.zip"
-
+ 
 # Installation
 SETUP_EXE="$POL_System_TmpDir/RoX_1_4_Setup.exe"
 POL_Wine start /unix "$SETUP_EXE"
 POL_Wine_WaitExit "$TITLE"
-
+ 
 POL_System_TmpDelete "$PREFIX"
-
-POL_Shortcut "RoX.exe" "$TITLE" "" ""
+ 
+POL_Shortcut "RoX.exe" "$TITLE" "" "" "Game;"
 POL_Shortcut "Rox Editor.exe" "$TITLE Editor" "" ""
-
+ 
 POL_SetupWindow_message "Installation complete!\n\nTo run $TITLE please select $TITLE icon from your desktop." "$TITLE"
-
+ 
 POL_SetupWindow_Close
 exit 0
\ No newline at end of file

New source code

#!/bin/bash
#
# Date : (2016-08-02 23-31)
# Last revision : see changelog
# Wine version used : 3.0.3
# Distribution used to test : Manjaro Linux 16.06.1
# Author : OdzioM
# Licence : Freeware
#
#
# CHANGELOG
# [OdzioM] (2016-08-02)
#   First script
# [Dadu042] (2020-01-02)
#   Wine 1.9.15-staging -> 3.0.3
#   The link to "dx8vb.dll" is still break, I can not find a website (linkable) hosting it.


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Safrosoft RoX"
INFO1="Safrosoft"
INFO2="http://www.autofish.net/shrines/rox/"
AUTHOR="OdzioM"
PREFIX="RoX"
WORKING_WINE_VERSION="3.0.3"
WINE_ARCH="x86"
 
# Down as of 2020-01-02
# POL_GetSetupImages "http://odziomek.pl/playonlinux/$PREFIX/top.png" "http://odziomek.pl/playonlinux/$PREFIX/left.jpg" "$TITLE"
 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$INFO1" "$INFO2" "$AUTHOR" "$PREFIX"
 
# checking for unzip command in Linux
check_one "unzip" "unzip"
POL_SetupWindow_missing
 
POL_Wine_SelectPrefix "$PREFIX"
 
POL_System_SetArch "$WINE_ARCH"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"

# Down as of 2020-01-02
# Download and register DX8VB.DLL (required to start RoX)
POL_Download "http://odziomek.pl/playonlinux/$PREFIX/dll/dx8vb.dll"
mv -f dx8vb.dll "$WINEPREFIX/drive_c/windows/system32"
POL_Wine regsvr32.exe dx8vb.dll
POL_Wine_WaitExit "dx8vb.dll"
 
# Download and unzip RoX installer
POL_Download "http://www.autofish.net/shrines/rox/rox_1_4_setup.zip"
unzip "$POL_System_TmpDir/rox_1_4_setup.zip"
 
# Installation
SETUP_EXE="$POL_System_TmpDir/RoX_1_4_Setup.exe"
POL_Wine start /unix "$SETUP_EXE"
POL_Wine_WaitExit "$TITLE"
 
POL_System_TmpDelete "$PREFIX"
 
POL_Shortcut "RoX.exe" "$TITLE" "" "" "Game;"
POL_Shortcut "Rox Editor.exe" "$TITLE Editor" "" ""
 
POL_SetupWindow_message "Installation complete!\n\nTo run $TITLE please select $TITLE icon from your desktop." "$TITLE"
 
POL_SetupWindow_Close
exit 0

Antwoorden

Dinsdag 5 Mei 2020 om 21:28
Screen shot added.
odziom91 Woensdag 3 Augustus 2016 om 1:00
odziom91

Warning

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

Differences

@@ -0,0 +1,63 @@
+#!/bin/bash
+#
+# Date : (2016-08-02 23-31)
+# Last revision : (2016-08-03 01-00)
+# Wine version used : 1.9.15-staging
+# Distribution used to test : Manjaro Linux 16.06.1
+# Author : OdzioM
+# Licence : Freeware
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+TITLE="Safrosoft RoX"
+INFO1="Safrosoft"
+INFO2="http://www.autofish.net/shrines/rox/"
+AUTHOR="OdzioM"
+PREFIX="RoX"
+WORKING_WINE_VERSION="1.9.15-staging"
+WINE_ARCH="x86"
+
+POL_GetSetupImages "http://odziomek.pl/playonlinux/$PREFIX/top.png" "http://odziomek.pl/playonlinux/$PREFIX/left.jpg" "$TITLE"
+
+POL_SetupWindow_Init
+POL_Debug_Init
+
+POL_SetupWindow_presentation "$TITLE" "$INFO1" "$INFO2" "$AUTHOR" "$PREFIX"
+
+# checking for unzip command in Linux
+check_one "unzip" "unzip"
+POL_SetupWindow_missing
+
+POL_Wine_SelectPrefix "$PREFIX"
+
+POL_System_SetArch "$WINE_ARCH"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+
+POL_System_TmpCreate "$PREFIX"
+cd "$POL_System_TmpDir"
+
+# Download and register DX8VB.DLL (required to start RoX)
+POL_Download "http://odziomek.pl/playonlinux/$PREFIX/dll/dx8vb.dll"
+mv -f dx8vb.dll "$WINEPREFIX/drive_c/windows/system32"
+POL_Wine regsvr32.exe dx8vb.dll
+POL_Wine_WaitExit "dx8vb.dll"
+
+# Download and unzip RoX installer
+POL_Download "http://www.autofish.net/shrines/rox/rox_1_4_setup.zip"
+unzip "$POL_System_TmpDir/rox_1_4_setup.zip"
+
+# Installation
+SETUP_EXE="$POL_System_TmpDir/RoX_1_4_Setup.exe"
+POL_Wine start /unix "$SETUP_EXE"
+POL_Wine_WaitExit "$TITLE"
+
+POL_System_TmpDelete "$PREFIX"
+
+POL_Shortcut "RoX.exe" "$TITLE" "" ""
+POL_Shortcut "Rox Editor.exe" "$TITLE Editor" "" ""
+
+POL_SetupWindow_message "Installation complete!\n\nTo run $TITLE please select $TITLE icon from your desktop." "$TITLE"
+
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
#
# Date : (2016-08-02 23-31)
# Last revision : (2016-08-03 01-00)
# Wine version used : 1.9.15-staging
# Distribution used to test : Manjaro Linux 16.06.1
# Author : OdzioM
# Licence : Freeware

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

TITLE="Safrosoft RoX"
INFO1="Safrosoft"
INFO2="http://www.autofish.net/shrines/rox/"
AUTHOR="OdzioM"
PREFIX="RoX"
WORKING_WINE_VERSION="1.9.15-staging"
WINE_ARCH="x86"

POL_GetSetupImages "http://odziomek.pl/playonlinux/$PREFIX/top.png" "http://odziomek.pl/playonlinux/$PREFIX/left.jpg" "$TITLE"

POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$INFO1" "$INFO2" "$AUTHOR" "$PREFIX"

# checking for unzip command in Linux
check_one "unzip" "unzip"
POL_SetupWindow_missing

POL_Wine_SelectPrefix "$PREFIX"

POL_System_SetArch "$WINE_ARCH"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"

# Download and register DX8VB.DLL (required to start RoX)
POL_Download "http://odziomek.pl/playonlinux/$PREFIX/dll/dx8vb.dll"
mv -f dx8vb.dll "$WINEPREFIX/drive_c/windows/system32"
POL_Wine regsvr32.exe dx8vb.dll
POL_Wine_WaitExit "dx8vb.dll"

# Download and unzip RoX installer
POL_Download "http://www.autofish.net/shrines/rox/rox_1_4_setup.zip"
unzip "$POL_System_TmpDir/rox_1_4_setup.zip"

# Installation
SETUP_EXE="$POL_System_TmpDir/RoX_1_4_Setup.exe"
POL_Wine start /unix "$SETUP_EXE"
POL_Wine_WaitExit "$TITLE"

POL_System_TmpDelete "$PREFIX"

POL_Shortcut "RoX.exe" "$TITLE" "" ""
POL_Shortcut "Rox Editor.exe" "$TITLE Editor" "" ""

POL_SetupWindow_message "Installation complete!\n\nTo run $TITLE please select $TITLE icon from your desktop." "$TITLE"

POL_SetupWindow_Close
exit 0

Antwoorden

Vrijdag 10 Mei 2019 om 19:53
http://odziomek.pl/ is down as of 2019-05-10
Donderdag 2 Januari 2020 om 8:51
Script approved.