osu
Informations
Creator | Message |
---|---|
boat
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks14 14 Descriptionosu! is a free-to-play rhytm game. The game features several gamemodes based on other rhytm games such as Elite Beat Agents, Taiko no Tatsujin and Beatmania, with online leaderboards, multiplayer and various features. ScreenshotsSource code#!/bin/bash # Date : (2013-10-06 14-11) # Last revision : see changelog # Wine version used : 1.9.1, 3.0.3 # Distribution used to test : Debian Stretch (Testing) # Author : boat # CHANGELOG # [boat] (2013-10-06) # First script. # [Dadu042] (2019-10-30) # Wine 1.9.1 -> 3.0.3 # POL 4.2.12 minimum [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="osu" PREFIX="osu_on_linux" WINEVERSION="3.0.3" EDITOR="peppy" GAME_URL="http://osu.ppy.sh/" AUTHOR="boat" # 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, debugging POL_SetupWindow_Init POL_SetupWindow_SetID 1856 POL_Debug_Init # Setup presentation window POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" # Begin setting up the Wine Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Install .NET Framework 4.5 POL_Call POL_Install_dotnet45 POL_Call POL_Install_gdiplus # Create and select the required directory for the updater mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" # Create a dummy file to prevent update loop touch discord-rpc.dll # Download the updater and config file (the config file is required for osu! to launch properly) POL_Download "http://m1.ppy.sh/r/osu!install.exe" mv "osu%21.user.cfg" "osu!.$USER.cfg" # Run the updater POL_SetupWindow_message "$(eval_gettext 'Press next to start the installer.')" "$TITLE" POL_Wine osu!install.exe # Wait for the updater to finish in order to create a shortcut of the executable POL_Wine_WaitExit "$TITLE" POL_Shortcut "osu!.exe" "osu!" "osu!.png" # Download the fonts required for Japanese characters support POL_SetupWindow_question "Install additional fonts for Japanese characters support?" "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then cd "$WINEPREFIX/drive_c/windows/Fonts" POL_Download "https://raw.githubusercontent.com/edubkendo/.dotfiles/master/.fonts/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" POL_Download "https://raw.githubusercontent.com/edubkendo/.dotfiles/master/.fonts/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" fi # Ask if the user wants to enable StrictDrawOrdering POL_SetupWindow_question "Would you like to enable StrictDrawOrdering? This is known to fix visual errors for users with AMD graphics cards and is generally recommended." "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then POL_Wine_Direct3D "StrictDrawOrdering" "enabled" fi # Ask if the user wants to register an account POL_SetupWindow_question "It is recommended that you register for an account and download some beatmaps before you start playing. Pressing yes will take you to the registration page, pressing no will finish the installation." "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then POL_Browser "https://osu.ppy.sh/p/register" fi POL_SetupWindow_Close exit |
Contributions
Filters:
ContributeMember | Message |
ZAFX | Sunday 25 September 2022 at 11:28 |
ZAFX
|
Messagehello, the game runs perfect BUT when i close the game its impossible to launch the game again, so when i accidentadly close the game i have to install the whole game again, there is a solution for this?, theres probably something that im doing wrong and its my fault bc this is abandoned, also there are some errors when i install the game and maybe thats the problem, and also the game keeps installing but it never finishes the installing, maybe in a few hours the game installs and that solves all my problems with this game but its been 3 hours and the game keeps installing, despite all, it works PERFECT when i can play it! Replies |
Dadu042 | Wednesday 30 October 2019 at 18:15 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -1,15 +1,22 @@ #!/bin/bash # Date : (2013-10-06 14-11) -# Last revision : (2016-01-18 09-19) -# Wine version used : 1.9.1 +# Last revision : see changelog +# Wine version used : 1.9.1, 3.0.3 # Distribution used to test : Debian Stretch (Testing) # Author : boat +# CHANGELOG +# [boat] (2013-10-06) +# First script. +# [Dadu042] (2019-10-30) +# Wine 1.9.1 -> 3.0.3 +# POL 4.2.12 minimum + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="osu" PREFIX="osu_on_linux" -WINEVERSION="1.9.1" +WINEVERSION="3.0.3" EDITOR="peppy" GAME_URL="http://osu.ppy.sh/" AUTHOR="boat" @@ -25,6 +32,8 @@ # Setup presentation window POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" +POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" + # Begin setting up the Wine Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" New source code#!/bin/bash # Date : (2013-10-06 14-11) # Last revision : see changelog # Wine version used : 1.9.1, 3.0.3 # Distribution used to test : Debian Stretch (Testing) # Author : boat # CHANGELOG # [boat] (2013-10-06) # First script. # [Dadu042] (2019-10-30) # Wine 1.9.1 -> 3.0.3 # POL 4.2.12 minimum [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="osu" PREFIX="osu_on_linux" WINEVERSION="3.0.3" EDITOR="peppy" GAME_URL="http://osu.ppy.sh/" AUTHOR="boat" # 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, debugging POL_SetupWindow_Init POL_SetupWindow_SetID 1856 POL_Debug_Init # Setup presentation window POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" # Begin setting up the Wine Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Install .NET Framework 4.5 POL_Call POL_Install_dotnet45 POL_Call POL_Install_gdiplus # Create and select the required directory for the updater mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" # Create a dummy file to prevent update loop touch discord-rpc.dll # Download the updater and config file (the config file is required for osu! to launch properly) POL_Download "http://m1.ppy.sh/r/osu!install.exe" mv "osu%21.user.cfg" "osu!.$USER.cfg" # Run the updater POL_SetupWindow_message "$(eval_gettext 'Press next to start the installer.')" "$TITLE" POL_Wine osu!install.exe # Wait for the updater to finish in order to create a shortcut of the executable POL_Wine_WaitExit "$TITLE" POL_Shortcut "osu!.exe" "osu!" "osu!.png" # Download the fonts required for Japanese characters support POL_SetupWindow_question "Install additional fonts for Japanese characters support?" "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then cd "$WINEPREFIX/drive_c/windows/Fonts" POL_Download "https://raw.githubusercontent.com/edubkendo/.dotfiles/master/.fonts/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" POL_Download "https://raw.githubusercontent.com/edubkendo/.dotfiles/master/.fonts/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" fi # Ask if the user wants to enable StrictDrawOrdering POL_SetupWindow_question "Would you like to enable StrictDrawOrdering? This is known to fix visual errors for users with AMD graphics cards and is generally recommended." "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then POL_Wine_Direct3D "StrictDrawOrdering" "enabled" fi # Ask if the user wants to register an account POL_SetupWindow_question "It is recommended that you register for an account and download some beatmaps before you start playing. Pressing yes will take you to the registration page, pressing no will finish the installation." "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then POL_Browser "https://osu.ppy.sh/p/register" fi POL_SetupWindow_Close exit Replies |
creeperskinmaker | Wednesday 25 September 2019 at 22:24 |
creeperskinmaker
|
Messageinstallion works intill .NET Framework 3.0 sp1 fix1 then the error window pops up stating Error in POL_Wine If your program is running, just ignore this message when clicking next, everthing installs intill .NET Framework 3.5 Replies |
Nightdavisao | Sunday 30 September 2018 at 21:39 |
Nightdavisao
|
WarningThis update has not been approved yet by the team. MessageThere is a updated osu! installer working, please give a feedback. GitHub page: https://github.com/Nightdavisao/osu_on_linux Differences@@ -1,82 +1,55 @@ #!/bin/bash -# Date : (2013-10-06 14-11) -# Last revision : (2016-01-18 09-19) -# Wine version used : 1.9.1 -# Distribution used to test : Debian Stretch (Testing) -# Author : boat - +# Date : (2018-09-30) +# Wine version used : 3.10 +# Distribution used to test : Linux Mint 19 Tara +# Author : Nightdavisao + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" -TITLE="osu" +TITLE="osu!" PREFIX="osu_on_linux" -WINEVERSION="1.9.1" +WINEVERSION="3.10" EDITOR="peppy" GAME_URL="http://osu.ppy.sh/" -AUTHOR="boat" - +AUTHOR="Nightdavisao" + # 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, debugging POL_SetupWindow_Init POL_SetupWindow_SetID 1856 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" + +# Install .NET Framework 4.0 and core fonts +POL_Call POL_Install_dotnet40 +POL_Call POL_Install_corefonts + +# Download the required fonts to Japanese characters +cd "$WINEPREFIX/drive_c/windows/Fonts" +POL_Download "https://github.com/Nightdavisao/osu_on_linux/blob/master/osu_on_linux/japanese_fonts/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" +POL_Download "https://github.com/Nightdavisao/osu_on_linux/blob/master/osu_on_linux/japanese_fonts/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" -# Install .NET Framework 4.5 -POL_Call POL_Install_dotnet45 -POL_Call POL_Install_gdiplus - -# Create and select the required directory for the updater +# Now create "osu!" folder in Programs Files and download the osu! icon and set the current directory to "osu!" folder mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" +POL_Download "https://github.com/Nightdavisao/osu_on_linux/raw/master/osu_on_linux/icon/osu!.png" -# Download the updater and config file (the config file is required for osu! to launch properly) -POL_Download "http://m1.ppy.sh/r/osu!install.exe" - -mv "osu%21.user.cfg" "osu!.$USER.cfg" - -# Run the updater -POL_SetupWindow_message "$(eval_gettext 'Press next to start the installer.')" "$TITLE" - +# Download the updater and open it +POL_Download "https://m1.ppy.sh/r/osu!install.exe" POL_Wine osu!install.exe - + # Wait for the updater to finish in order to create a shortcut of the executable POL_Wine_WaitExit "$TITLE" - + POL_Shortcut "osu!.exe" "osu!" "osu!.png" -# Download the fonts required for Japanese characters support -POL_SetupWindow_question "Install additional fonts for Japanese characters support?" "$TITLE" - -if [ "$APP_ANSWER" = "TRUE" ] -then - cd "$WINEPREFIX/drive_c/windows/Fonts" - POL_Download "http://www.boaty.org/POL/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" - POL_Download "http://www.boaty.org/POL/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" -fi - -# Ask if the user wants to enable StrictDrawOrdering -POL_SetupWindow_question "Would you like to enable StrictDrawOrdering? -This is known to fix visual errors for users with AMD graphics cards and is generally recommended." "$TITLE" - -if [ "$APP_ANSWER" = "TRUE" ] -then - POL_Wine_Direct3D "StrictDrawOrdering" "enabled" -fi - -# Ask if the user wants to register an account -POL_SetupWindow_question "It is recommended that you register for an account and download some beatmaps before you start playing. Pressing yes will take you to the registration page, pressing no will finish the installation." "$TITLE" - -if [ "$APP_ANSWER" = "TRUE" ] -then - POL_Browser "https://osu.ppy.sh/p/register" -fi POL_SetupWindow_Close exit \ No newline at end of file New source code#!/bin/bash # Date : (2018-09-30) # Wine version used : 3.10 # Distribution used to test : Linux Mint 19 Tara # Author : Nightdavisao [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="osu!" PREFIX="osu_on_linux" WINEVERSION="3.10" EDITOR="peppy" GAME_URL="http://osu.ppy.sh/" AUTHOR="Nightdavisao" # 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, debugging POL_SetupWindow_Init POL_SetupWindow_SetID 1856 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" # Install .NET Framework 4.0 and core fonts POL_Call POL_Install_dotnet40 POL_Call POL_Install_corefonts # Download the required fonts to Japanese characters cd "$WINEPREFIX/drive_c/windows/Fonts" POL_Download "https://github.com/Nightdavisao/osu_on_linux/blob/master/osu_on_linux/japanese_fonts/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" POL_Download "https://github.com/Nightdavisao/osu_on_linux/blob/master/osu_on_linux/japanese_fonts/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" # Now create "osu!" folder in Programs Files and download the osu! icon and set the current directory to "osu!" folder mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" POL_Download "https://github.com/Nightdavisao/osu_on_linux/raw/master/osu_on_linux/icon/osu!.png" # Download the updater and open it POL_Download "https://m1.ppy.sh/r/osu!install.exe" POL_Wine osu!install.exe # Wait for the updater to finish in order to create a shortcut of the executable POL_Wine_WaitExit "$TITLE" POL_Shortcut "osu!.exe" "osu!" "osu!.png" POL_SetupWindow_Close exit Replies |
VegaZS | Sunday 31 December 2017 at 18:22 |
VegaZS
|
WarningThis update has not been approved yet by the team. Differences@@ -37,6 +37,9 @@ mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" +# Create a dummy file to prevent update loop +touch discord-rpc.dll + # Download the updater and config file (the config file is required for osu! to launch properly) POL_Download "http://m1.ppy.sh/r/osu!install.exe" @@ -58,8 +61,8 @@ if [ "$APP_ANSWER" = "TRUE" ] then cd "$WINEPREFIX/drive_c/windows/Fonts" - POL_Download "http://www.boaty.org/POL/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" - POL_Download "http://www.boaty.org/POL/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" + POL_Download "https://raw.githubusercontent.com/edubkendo/.dotfiles/master/.fonts/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" + POL_Download "https://raw.githubusercontent.com/edubkendo/.dotfiles/master/.fonts/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" fi # Ask if the user wants to enable StrictDrawOrdering New source code#!/bin/bash # Date : (2013-10-06 14-11) # Last revision : (2016-01-18 09-19) # Wine version used : 1.9.1 # Distribution used to test : Debian Stretch (Testing) # Author : boat [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="osu" PREFIX="osu_on_linux" WINEVERSION="1.9.1" EDITOR="peppy" GAME_URL="http://osu.ppy.sh/" AUTHOR="boat" # 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, debugging POL_SetupWindow_Init POL_SetupWindow_SetID 1856 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" # Install .NET Framework 4.5 POL_Call POL_Install_dotnet45 POL_Call POL_Install_gdiplus # Create and select the required directory for the updater mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" # Create a dummy file to prevent update loop touch discord-rpc.dll # Download the updater and config file (the config file is required for osu! to launch properly) POL_Download "http://m1.ppy.sh/r/osu!install.exe" mv "osu%21.user.cfg" "osu!.$USER.cfg" # Run the updater POL_SetupWindow_message "$(eval_gettext 'Press next to start the installer.')" "$TITLE" POL_Wine osu!install.exe # Wait for the updater to finish in order to create a shortcut of the executable POL_Wine_WaitExit "$TITLE" POL_Shortcut "osu!.exe" "osu!" "osu!.png" # Download the fonts required for Japanese characters support POL_SetupWindow_question "Install additional fonts for Japanese characters support?" "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then cd "$WINEPREFIX/drive_c/windows/Fonts" POL_Download "https://raw.githubusercontent.com/edubkendo/.dotfiles/master/.fonts/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" POL_Download "https://raw.githubusercontent.com/edubkendo/.dotfiles/master/.fonts/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" fi # Ask if the user wants to enable StrictDrawOrdering POL_SetupWindow_question "Would you like to enable StrictDrawOrdering? This is known to fix visual errors for users with AMD graphics cards and is generally recommended." "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then POL_Wine_Direct3D "StrictDrawOrdering" "enabled" fi # Ask if the user wants to register an account POL_SetupWindow_question "It is recommended that you register for an account and download some beatmaps before you start playing. Pressing yes will take you to the registration page, pressing no will finish the installation." "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then POL_Browser "https://osu.ppy.sh/p/register" fi POL_SetupWindow_Close exit Replies |
Andrei Bereta | Monday 14 August 2017 at 3:42 |
Andrei Bereta
|
MessageCan't download net framework 3.0 and japanese font, but works fine Replies |
yohonet | Sunday 23 July 2017 at 21:07 |
yohonet
|
MessageCan't download dot net 3 from URL http://uni-smr.ac.ru/archive/win/MS%20.NET%20Framework/3.0/dotnetfx3.exe
Replies |
SilicaAndPina | Friday 5 May 2017 at 2:43 |
SilicaAndPina
|
|
MordorDie | Friday 31 March 2017 at 13:28 |
MordorDie
|
WarningThis update has not been approved yet by the team. Messageupd. Fixed link fonts! Differences@@ -58,8 +58,8 @@ if [ "$APP_ANSWER" = "TRUE" ] then cd "$WINEPREFIX/drive_c/windows/Fonts" - POL_Download "http://www.boaty.org/POL/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" - POL_Download "http://www.boaty.org/POL/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" + POL_Download "http://52.25.117.39/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" + POL_Download "http://52.25.117.39/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" fi # Ask if the user wants to enable StrictDrawOrdering New source code#!/bin/bash # Date : (2013-10-06 14-11) # Last revision : (2016-01-18 09-19) # Wine version used : 1.9.1 # Distribution used to test : Debian Stretch (Testing) # Author : boat [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="osu" PREFIX="osu_on_linux" WINEVERSION="1.9.1" EDITOR="peppy" GAME_URL="http://osu.ppy.sh/" AUTHOR="boat" # 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, debugging POL_SetupWindow_Init POL_SetupWindow_SetID 1856 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" # Install .NET Framework 4.5 POL_Call POL_Install_dotnet45 POL_Call POL_Install_gdiplus # Create and select the required directory for the updater mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" # Download the updater and config file (the config file is required for osu! to launch properly) POL_Download "http://m1.ppy.sh/r/osu!install.exe" mv "osu%21.user.cfg" "osu!.$USER.cfg" # Run the updater POL_SetupWindow_message "$(eval_gettext 'Press next to start the installer.')" "$TITLE" POL_Wine osu!install.exe # Wait for the updater to finish in order to create a shortcut of the executable POL_Wine_WaitExit "$TITLE" POL_Shortcut "osu!.exe" "osu!" "osu!.png" # Download the fonts required for Japanese characters support POL_SetupWindow_question "Install additional fonts for Japanese characters support?" "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then cd "$WINEPREFIX/drive_c/windows/Fonts" POL_Download "http://52.25.117.39/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" POL_Download "http://52.25.117.39/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" fi # Ask if the user wants to enable StrictDrawOrdering POL_SetupWindow_question "Would you like to enable StrictDrawOrdering? This is known to fix visual errors for users with AMD graphics cards and is generally recommended." "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then POL_Wine_Direct3D "StrictDrawOrdering" "enabled" fi # Ask if the user wants to register an account POL_SetupWindow_question "It is recommended that you register for an account and download some beatmaps before you start playing. Pressing yes will take you to the registration page, pressing no will finish the installation." "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then POL_Browser "https://osu.ppy.sh/p/register" fi POL_SetupWindow_Close exit Replies |
MordorDie | Friday 31 March 2017 at 13:15 |
MordorDie
|
WarningThis update has not been approved yet by the team. Differences@@ -58,8 +58,8 @@ if [ "$APP_ANSWER" = "TRUE" ] then cd "$WINEPREFIX/drive_c/windows/Fonts" - POL_Download "http://www.boaty.org/POL/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" - POL_Download "http://www.boaty.org/POL/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" + POL_Download "http://52.25.117.39/msgothic.ttc" "30a18f9118a22885a4104421f443c116" + POL_Download "http://52.25.117.39/msmincho.ttc" "053bd3a73bd55bd39dc78dae64d5527a" fi # Ask if the user wants to enable StrictDrawOrdering New source code#!/bin/bash # Date : (2013-10-06 14-11) # Last revision : (2016-01-18 09-19) # Wine version used : 1.9.1 # Distribution used to test : Debian Stretch (Testing) # Author : boat [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="osu" PREFIX="osu_on_linux" WINEVERSION="1.9.1" EDITOR="peppy" GAME_URL="http://osu.ppy.sh/" AUTHOR="boat" # 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, debugging POL_SetupWindow_Init POL_SetupWindow_SetID 1856 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" # Install .NET Framework 4.5 POL_Call POL_Install_dotnet45 POL_Call POL_Install_gdiplus # Create and select the required directory for the updater mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" # Download the updater and config file (the config file is required for osu! to launch properly) POL_Download "http://m1.ppy.sh/r/osu!install.exe" mv "osu%21.user.cfg" "osu!.$USER.cfg" # Run the updater POL_SetupWindow_message "$(eval_gettext 'Press next to start the installer.')" "$TITLE" POL_Wine osu!install.exe # Wait for the updater to finish in order to create a shortcut of the executable POL_Wine_WaitExit "$TITLE" POL_Shortcut "osu!.exe" "osu!" "osu!.png" # Download the fonts required for Japanese characters support POL_SetupWindow_question "Install additional fonts for Japanese characters support?" "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then cd "$WINEPREFIX/drive_c/windows/Fonts" POL_Download "http://52.25.117.39/msgothic.ttc" "30a18f9118a22885a4104421f443c116" POL_Download "http://52.25.117.39/msmincho.ttc" "053bd3a73bd55bd39dc78dae64d5527a" fi # Ask if the user wants to enable StrictDrawOrdering POL_SetupWindow_question "Would you like to enable StrictDrawOrdering? This is known to fix visual errors for users with AMD graphics cards and is generally recommended." "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then POL_Wine_Direct3D "StrictDrawOrdering" "enabled" fi # Ask if the user wants to register an account POL_SetupWindow_question "It is recommended that you register for an account and download some beatmaps before you start playing. Pressing yes will take you to the registration page, pressing no will finish the installation." "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then POL_Browser "https://osu.ppy.sh/p/register" fi POL_SetupWindow_Close exit Replies |
Koutaro | Friday 4 November 2016 at 2:31 |
Koutaro
|
MessageEl juego funciona perfectamente, aun que detesto que cuando elimino muchas canciones al final acaba por congelarse Replies |
Ketchup901 | Saturday 30 July 2016 at 17:12 |
Ketchup901
|
MessageIt runs fine and at a good framerate, but the sound is very bad and crackles horribly. How can I fix this? I'm on Arch 64-bit. RepliesThursday 6 October 2016 at 10:28
|
Nazmifr | Wednesday 20 July 2016 at 18:55 |
Nazmifr
|
MessageInstalled well but wine says that it crashed sometimes, and the program should only (in my opinion) be run after a reboot, if I remember right it did not work the first time but after I did a reboot it worked (and still works) fine !
Thanks for the work Replies |
agentcobra | Thursday 5 May 2016 at 12:50 |
agentcobra
|
MessageLe jeux fontionne chez moi, mais j'ai l'air d'avoir un décalage entre le son et l'image Replies |
Jailson kun | Sunday 6 March 2016 at 17:56 |
Jailson kun
|
MessageO jogo funcionou bem, consegui acessar minha conta e baixar os beatmaps, mas durante o jogo ele deu erro e durante a depuração apareceu o seguinte erro critico
super duper error on delegate System.ArgumentException: The device does not support creating a render target of the given format. Replies |
ShadowSageMike | Monday 18 January 2016 at 15:20 |
ShadowSageMike
|
WarningThis update has not been approved yet by the team. MessageI updated the script to use .NET 4.5 because thats what osu! requires now. Differences@@ -1,15 +1,15 @@ #!/bin/bash # Date : (2013-10-06 14-11) -# Last revision : (2014-06-01 01-17) -# Wine version used : 1.7.3 -# Distribution used to test : Linux Mint 15 +# Last revision : (2016-01-18 09-19) +# Wine version used : 1.9.1 +# Distribution used to test : Debian Stretch (Testing) # Author : boat [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="osu" PREFIX="osu_on_linux" -WINEVERSION="1.7.3" +WINEVERSION="1.9.1" EDITOR="peppy" GAME_URL="http://osu.ppy.sh/" AUTHOR="boat" @@ -29,23 +29,23 @@ POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" -# Install .NET Framework 2.0 -POL_Call POL_Install_dotnet20 +# Install .NET Framework 4.5 +POL_Call POL_Install_dotnet45 +POL_Call POL_Install_gdiplus # Create and select the required directory for the updater mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" # Download the updater and config file (the config file is required for osu! to launch properly) -POL_Download "http://osu.ppy.sh/release/osume.exe" -POL_Download "http://files.playonlinux.com/osu%21.user.cfg" "9c11104e1bd7db6a600fb1b18e535ed3" +POL_Download "http://m1.ppy.sh/r/osu!install.exe" mv "osu%21.user.cfg" "osu!.$USER.cfg" # Run the updater -POL_SetupWindow_message "$(eval_gettext 'Press next to start the updater. When the updater is finished, close it down. Do not start osu! yet.')" "$TITLE" +POL_SetupWindow_message "$(eval_gettext 'Press next to start the installer.')" "$TITLE" -POL_Wine osume.exe +POL_Wine osu!install.exe # Wait for the updater to finish in order to create a shortcut of the executable POL_Wine_WaitExit "$TITLE" New source code#!/bin/bash # Date : (2013-10-06 14-11) # Last revision : (2016-01-18 09-19) # Wine version used : 1.9.1 # Distribution used to test : Debian Stretch (Testing) # Author : boat [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="osu" PREFIX="osu_on_linux" WINEVERSION="1.9.1" EDITOR="peppy" GAME_URL="http://osu.ppy.sh/" AUTHOR="boat" # 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, debugging POL_SetupWindow_Init POL_SetupWindow_SetID 1856 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" # Install .NET Framework 4.5 POL_Call POL_Install_dotnet45 POL_Call POL_Install_gdiplus # Create and select the required directory for the updater mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" # Download the updater and config file (the config file is required for osu! to launch properly) POL_Download "http://m1.ppy.sh/r/osu!install.exe" mv "osu%21.user.cfg" "osu!.$USER.cfg" # Run the updater POL_SetupWindow_message "$(eval_gettext 'Press next to start the installer.')" "$TITLE" POL_Wine osu!install.exe # Wait for the updater to finish in order to create a shortcut of the executable POL_Wine_WaitExit "$TITLE" POL_Shortcut "osu!.exe" "osu!" "osu!.png" # Download the fonts required for Japanese characters support POL_SetupWindow_question "Install additional fonts for Japanese characters support?" "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then cd "$WINEPREFIX/drive_c/windows/Fonts" POL_Download "http://www.boaty.org/POL/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" POL_Download "http://www.boaty.org/POL/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" fi # Ask if the user wants to enable StrictDrawOrdering POL_SetupWindow_question "Would you like to enable StrictDrawOrdering? This is known to fix visual errors for users with AMD graphics cards and is generally recommended." "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then POL_Wine_Direct3D "StrictDrawOrdering" "enabled" fi # Ask if the user wants to register an account POL_SetupWindow_question "It is recommended that you register for an account and download some beatmaps before you start playing. Pressing yes will take you to the registration page, pressing no will finish the installation." "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then POL_Browser "https://osu.ppy.sh/p/register" fi POL_SetupWindow_Close exit RepliesEdited by petch |
astronautlevel | Thursday 17 December 2015 at 21:52 |
astronautlevel
|
MessageScript is outdated and no longer works. Replies |
marcostudios | Monday 22 June 2015 at 20:40 |
marcostudios
|
WarningThis update has not been approved yet by the team. Differences@@ -1,8 +1,8 @@ #!/bin/bash # Date : (2013-10-06 14-11) -# Last revision : (2014-06-01 01-17) +# Last revision : (2015-06-22 20-38) # Wine version used : 1.7.3 -# Distribution used to test : Linux Mint 15 +# Distribution used to test : Fedora Workstation 22 # Author : boat [ "$PLAYONLINUX" = "" ] && exit 0 @@ -29,23 +29,23 @@ POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" -# Install .NET Framework 2.0 -POL_Call POL_Install_dotnet20 +# Install .NET Framework 3.5 +POL_Call POL_Install_dotnet35 +POL_Call POL_Install_gdiplus # Create and select the required directory for the updater mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" # Download the updater and config file (the config file is required for osu! to launch properly) -POL_Download "http://osu.ppy.sh/release/osume.exe" -POL_Download "http://files.playonlinux.com/osu%21.user.cfg" "9c11104e1bd7db6a600fb1b18e535ed3" +POL_Download "http://m1.ppy.sh/r/osu!install.exe" mv "osu%21.user.cfg" "osu!.$USER.cfg" # Run the updater -POL_SetupWindow_message "$(eval_gettext 'Press next to start the updater. When the updater is finished, close it down. Do not start osu! yet.')" "$TITLE" +POL_SetupWindow_message "$(eval_gettext 'Press next to start the installer.')" "$TITLE" -POL_Wine osume.exe +POL_Wine osu!install.exe # Wait for the updater to finish in order to create a shortcut of the executable POL_Wine_WaitExit "$TITLE" New source code#!/bin/bash # Date : (2013-10-06 14-11) # Last revision : (2015-06-22 20-38) # Wine version used : 1.7.3 # Distribution used to test : Fedora Workstation 22 # Author : boat [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="osu" PREFIX="osu_on_linux" WINEVERSION="1.7.3" EDITOR="peppy" GAME_URL="http://osu.ppy.sh/" AUTHOR="boat" # 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, debugging POL_SetupWindow_Init POL_SetupWindow_SetID 1856 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" # Install .NET Framework 3.5 POL_Call POL_Install_dotnet35 POL_Call POL_Install_gdiplus # Create and select the required directory for the updater mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/osu!" # Download the updater and config file (the config file is required for osu! to launch properly) POL_Download "http://m1.ppy.sh/r/osu!install.exe" mv "osu%21.user.cfg" "osu!.$USER.cfg" # Run the updater POL_SetupWindow_message "$(eval_gettext 'Press next to start the installer.')" "$TITLE" POL_Wine osu!install.exe # Wait for the updater to finish in order to create a shortcut of the executable POL_Wine_WaitExit "$TITLE" POL_Shortcut "osu!.exe" "osu!" "osu!.png" # Download the fonts required for Japanese characters support POL_SetupWindow_question "Install additional fonts for Japanese characters support?" "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then cd "$WINEPREFIX/drive_c/windows/Fonts" POL_Download "http://www.boaty.org/POL/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" POL_Download "http://www.boaty.org/POL/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" fi # Ask if the user wants to enable StrictDrawOrdering POL_SetupWindow_question "Would you like to enable StrictDrawOrdering? This is known to fix visual errors for users with AMD graphics cards and is generally recommended." "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then POL_Wine_Direct3D "StrictDrawOrdering" "enabled" fi # Ask if the user wants to register an account POL_SetupWindow_question "It is recommended that you register for an account and download some beatmaps before you start playing. Pressing yes will take you to the registration page, pressing no will finish the installation." "$TITLE" if [ "$APP_ANSWER" = "TRUE" ] then POL_Browser "https://osu.ppy.sh/p/register" fi POL_SetupWindow_Close exit RepliesTuesday 23 June 2015 at 1:07
Monday 29 June 2015 at 23:00
Sunday 5 July 2015 at 1:48
Sunday 19 July 2015 at 19:33
Sunday 4 October 2015 at 23:46
Sunday 4 October 2015 at 23:47
Saturday 17 October 2015 at 16:18
|
Account deleted | Thursday 30 April 2015 at 17:37 |
Account deleted
|
MessageI had a little bug, i couldn't add a bitmap with just a click. I tried to reinstall but when the script want to launch the installer POL show "POL error". I had look the script and i have found where it crash, here : POL_Wine osume.exe I'm on archlinux 64 bits with openbox, and cairo-compmgr.
RepliesThursday 30 April 2015 at 18:36
Thursday 30 April 2015 at 18:36
Thursday 30 April 2015 at 19:06
Thursday 30 April 2015 at 19:08
Saturday 2 May 2015 at 1:23
Sunday 24 May 2015 at 0:02
Sunday 24 May 2015 at 0:03
Sunday 14 June 2015 at 2:27
Wednesday 17 June 2015 at 16:37
|
SkiFire13 | Monday 30 March 2015 at 16:02 |
SkiFire13
|
MessageOnly three problems. When I install it the installer say me to login, but it doesn't work. I have to login after I installed it. When I open it I have an error message about skin.ini, but everything work well I can't use OpenGL, only DirectX My system: CPU: AMD FX-8350 GPU: nvidia GTX 780 (driver 331.113-0ubuntu0.0.4) Linux Mint 17.1 PlayOnLinux 4.2.6 Replies |
lostinspacetime | Saturday 21 February 2015 at 14:02 |
lostinspacetime
|
MessageInstalling worked and game seems to work perfectly an 120FPS but there is a constand random input lag for mouse and keyboard. At first it was hard to notice, but in comparison with Windows it's very obvious. However, even without comparing, once a minute or so, the input lag gets really big. I'm using Playonlinux 4.2.5 with Wine 1.7.3. My System: Ubuntu 14.10, nVidia GTX 750 Ti with 346.35 driver, AMD PhenomII x4 @3,5GHz, 12GB RAM. RepliesThursday 26 March 2015 at 15:30
Thursday 26 March 2015 at 15:32
Thursday 26 March 2015 at 18:25
|
anyb | Friday 20 February 2015 at 12:09 |
anyb
|
MessageTested on latest Debian/Jessie today with Wine 1.6.2. All game modes are working well in borderless-fullscreen with a mouse. Haven't tested non-US fonts yet. Replies |
Xopez | Saturday 2 August 2014 at 0:31 |
Xopez
|
Messagea few months ago the software runned well. Now I want to install it again, but after downloading osume.exe it won't start the updater. it only says "Error in POL_Wine" Here is the Log of the script [spoiler] and the log of the drive [08/02/14 00:27:55] - Running wine-1.7.3 --version (Working directory : /usr/share/playonlinux/python) PlayOnLinux logfile > PlayOnLinux Version [08/02/14 00:28:06] - Running wine-1.7.3 cmd /c echo %ProgramFiles% (Working directory : /usr/share/playonlinux/python) [HKEY_CURRENT_USER\Software\Wine] [HKEY_CURRENT_USER\Software\Wine] [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion]
Replies |
popman | Sunday 8 June 2014 at 14:09 |
popman
|
MessageThe application runs prefectly, but I changed the wine version to system to make asian chatacters work (beforehand, they showed up as blank squares) I'd like a shortcut for my launcher with the real icon through. (if you can even do that with an installer script) Replies |
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