osu
Informations
Créateur | Messages |
---|---|
boat
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience14 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. Captures d'écranCode source#!/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:
ContribuerMembre | Messages |
ZAFX | Dimanche 25 September 2022 à 11:28 |
ZAFX
|
Messageshello, 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! Réponses |
Dadu042 | Mercredi 30 Octobre 2019 à 18:15 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe 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" Nouveau code source#!/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 Réponses |
creeperskinmaker | Mercredi 25 September 2019 à 22:24 |
creeperskinmaker
|
Messagesinstallion 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 Réponses |
Nightdavisao | Dimanche 30 September 2018 à 21:39 |
Nightdavisao
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesThere 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 Nouveau code source#!/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 Réponses |
VegaZS | Dimanche 31 Décembre 2017 à 18:22 |
VegaZS
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 Réponses |
Andrei Bereta | Lundi 14 Aoüt 2017 à 3:42 |
Andrei Bereta
|
MessagesCan't download net framework 3.0 and japanese font, but works fine Réponses |
yohonet | Dimanche 23 Juillet 2017 à 21:07 |
yohonet
|
MessagesCan't download dot net 3 from URL http://uni-smr.ac.ru/archive/win/MS%20.NET%20Framework/3.0/dotnetfx3.exe
Réponses |
SilicaAndPina | Vendredi 5 Mai 2017 à 2:43 |
SilicaAndPina
|
|
MordorDie | Vendredi 31 Mars 2017 à 13:28 |
MordorDie
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Messagesupd. 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 Nouveau code source#!/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 Réponses |
MordorDie | Vendredi 31 Mars 2017 à 13:15 |
MordorDie
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 Réponses |
Koutaro | Vendredi 4 Novembre 2016 à 2:31 |
Koutaro
|
MessagesEl juego funciona perfectamente, aun que detesto que cuando elimino muchas canciones al final acaba por congelarse Réponses |
Ketchup901 | Samedi 30 Juillet 2016 à 17:12 |
Ketchup901
|
MessagesIt 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. RéponsesJeudi 6 Octobre 2016 à 10:28
|
Nazmifr | Mercredi 20 Juillet 2016 à 18:55 |
Nazmifr
|
MessagesInstalled 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 Réponses |
agentcobra | Jeudi 5 Mai 2016 à 12:50 |
agentcobra
|
MessagesLe jeux fontionne chez moi, mais j'ai l'air d'avoir un décalage entre le son et l'image Réponses |
Jailson kun | Dimanche 6 Mars 2016 à 17:56 |
Jailson kun
|
MessagesO 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. Réponses |
ShadowSageMike | Lundi 18 Janvier 2016 à 15:20 |
ShadowSageMike
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesI 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" Nouveau code source#!/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 RéponsesEdité par petch |
astronautlevel | Jeudi 17 Décembre 2015 à 21:52 |
astronautlevel
|
MessagesScript is outdated and no longer works. Réponses |
marcostudios | Lundi 22 Juin 2015 à 20:40 |
marcostudios
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 RéponsesMardi 23 Juin 2015 à 1:07
Lundi 29 Juin 2015 à 23:00
Dimanche 5 Juillet 2015 à 1:48
Dimanche 19 Juillet 2015 à 19:33
Dimanche 4 Octobre 2015 à 23:46
Dimanche 4 Octobre 2015 à 23:47
Samedi 17 Octobre 2015 à 16:18
|
Account deleted | Jeudi 30 Avril 2015 à 17:37 |
Account deleted
|
MessagesI 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.
RéponsesJeudi 30 Avril 2015 à 18:36
Jeudi 30 Avril 2015 à 18:36
Jeudi 30 Avril 2015 à 19:06
Jeudi 30 Avril 2015 à 19:08
Samedi 2 Mai 2015 à 1:23
Dimanche 24 Mai 2015 à 0:02
Dimanche 24 Mai 2015 à 0:03
Dimanche 14 Juin 2015 à 2:27
Mercredi 17 Juin 2015 à 16:37
|
SkiFire13 | Lundi 30 Mars 2015 à 16:02 |
SkiFire13
|
MessagesOnly 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 Réponses |
lostinspacetime | Samedi 21 Février 2015 à 14:02 |
lostinspacetime
|
MessagesInstalling 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. RéponsesJeudi 26 Mars 2015 à 15:30
Jeudi 26 Mars 2015 à 15:32
Jeudi 26 Mars 2015 à 18:25
|
anyb | Vendredi 20 Février 2015 à 12:09 |
anyb
|
MessagesTested 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. Réponses |
Xopez | Samedi 2 Aoüt 2014 à 0:31 |
Xopez
|
Messagesa 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]
Réponses |
popman | Dimanche 8 Juin 2014 à 14:09 |
popman
|
MessagesThe 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) Réponses |
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