RoX
Informations
Creator | Meddelanden |
---|---|
odziom91
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks1 0 DescriptionRoX 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. ScreenshotsSource 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 |
Contributions
Filters:
ContributeMember | Meddelanden |
Dadu042 | Thursday 2 January 2020 at 11:56 |
Dadu042
|
InformationThis 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 SvarTuesday 5 May 2020 at 21:28
|
odziom91 | Wednesday 3 August 2016 at 1:00 |
odziom91
|
WarningThis update has not been approved yet by the team. 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 Svar |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com