Need for Speed: Most Wanted
Informations
Créateur | Messages |
---|---|
NSLW
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience1 1 DescriptionRacing game, 2005. Wikipedia. Note: game won't run with original speed.exe file. Code source#!/bin/bash # Date : (2009-05-23 12-14) # Last revision : (2016-06-23 23-58) # Wine version used : 1.3, 1.8.3, 3.0 # Distribution used to test : Debian Squeeze (Testing), Arch Linux, Ubuntu 18.04 x64 # Author : NSWL & GNU_Raziel # Licence : Retail # # CHANGELOG # [NSWL & GNU_Raziel] (2009-05-23 12-14) # Initial script. # [Dadu042] (2020-01-27 23:30) # Improve shortcut. # Wine 3.0 -> 3.0.3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Need For Speed Most Wanted" PREFIX="NFSMW" WORKING_WINE_VERSION="3.0.3" GAME_VMS="32" #starting the script POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "EA Games" "N/A" "NSLW & GNU_Raziel" "$PREFIX" #preparing Wine prefix POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" #Choose between CD, DVD and Digital Download version POL_SetupWindow_InstallMethod "CD,DVD,LOCAL" if [ "$INSTALL_METHOD" == "CD" ]; then #asking for CDROM and checking if it's correct one #CD-ROM 1 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "AutoRun.exe" cd "$WINEPREFIX/dosdevices" rm "d::" ln -s "$CDROM" "d:" cd "$CDROM" POL_Wine "AutoRun.exe" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for reboot\nclick on "Yes" then click on "Next".')" POL_Wine "AutoRun.exe" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 2 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom cd "$WINEPREFIX/dosdevices" rm "d:" ln -s "$CDROM" "d:" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 3 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom rm "d:" ln -s "$CDROM" "d:" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 4 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom rm "d:" ln -s "$CDROM" "d:" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 1 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom rm "d:" ln -s "$CDROM" "d:" POL_SetupWindow_message "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" elif [ "$INSTALL_METHOD" == "DVD" ]; then #asking for CDROM and checking if it's correct one POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "AutoRun.exe" cd "$CDROM" POL_Wine "AutoRun.exe" POL_Wine_WaitExit "$TITLE" else #Asking then installing DDV of the game POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" fi # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## PlayOnMac Section [ "$PLAYONMAC" == "" ] && Set_SoundDriver "alsa" [ "$PLAYONMAC" == "" ] || Set_Managed "Off" ## End Section # Making shortcut POL_Shortcut "speed.exe" "$TITLE" "" "" "Game;" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" POL_SetupWindow_Close exit |
Contributions
Filters:
ContribuerMembre | Messages |
marcusshawn95 | Dimanche 21 Novembre 2021 à 6:54 |
marcusshawn95
|
MessagesHi, this is my first time using playonmac and I'm trying to download this file but it keeps asking me for a setup file and i dont know what it is supposed to be. I am using 2019 macbook pro. I've always loved this game and hate that you cant get it anywhere. if you could let me know what i need to do to get it working that would be appreciated. RéponsesEdité par marcusshawn95 |
Dadu042 | Mardi 28 Janvier 2020 à 19:50 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -5,13 +5,20 @@ # Distribution used to test : Debian Squeeze (Testing), Arch Linux, Ubuntu 18.04 x64 # Author : NSWL & GNU_Raziel # Licence : Retail - +# +# CHANGELOG +# [NSWL & GNU_Raziel] (2009-05-23 12-14) +# Initial script. +# [Dadu042] (2020-01-27 23:30) +# Improve shortcut. +# Wine 3.0 -> 3.0.3 + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Need For Speed Most Wanted" PREFIX="NFSMW" -WORKING_WINE_VERSION="3.0" +WORKING_WINE_VERSION="3.0.3" GAME_VMS="32" #starting the script @@ -82,7 +89,7 @@ POL_Wine_WaitExit "$TITLE" fi -#asking about memory size of graphic card +# Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## PlayOnMac Section @@ -90,8 +97,8 @@ [ "$PLAYONMAC" == "" ] || Set_Managed "Off" ## End Section -#making shortcut -POL_Shortcut "speed.exe" "$TITLE" +# Making shortcut +POL_Shortcut "speed.exe" "$TITLE" "" "" "Game;" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" Nouveau code source#!/bin/bash # Date : (2009-05-23 12-14) # Last revision : (2016-06-23 23-58) # Wine version used : 1.3, 1.8.3, 3.0 # Distribution used to test : Debian Squeeze (Testing), Arch Linux, Ubuntu 18.04 x64 # Author : NSWL & GNU_Raziel # Licence : Retail # # CHANGELOG # [NSWL & GNU_Raziel] (2009-05-23 12-14) # Initial script. # [Dadu042] (2020-01-27 23:30) # Improve shortcut. # Wine 3.0 -> 3.0.3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Need For Speed Most Wanted" PREFIX="NFSMW" WORKING_WINE_VERSION="3.0.3" GAME_VMS="32" #starting the script POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "EA Games" "N/A" "NSLW & GNU_Raziel" "$PREFIX" #preparing Wine prefix POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" #Choose between CD, DVD and Digital Download version POL_SetupWindow_InstallMethod "CD,DVD,LOCAL" if [ "$INSTALL_METHOD" == "CD" ]; then #asking for CDROM and checking if it's correct one #CD-ROM 1 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "AutoRun.exe" cd "$WINEPREFIX/dosdevices" rm "d::" ln -s "$CDROM" "d:" cd "$CDROM" POL_Wine "AutoRun.exe" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for reboot\nclick on "Yes" then click on "Next".')" POL_Wine "AutoRun.exe" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 2 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom cd "$WINEPREFIX/dosdevices" rm "d:" ln -s "$CDROM" "d:" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 3 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom rm "d:" ln -s "$CDROM" "d:" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 4 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom rm "d:" ln -s "$CDROM" "d:" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 1 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom rm "d:" ln -s "$CDROM" "d:" POL_SetupWindow_message "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" elif [ "$INSTALL_METHOD" == "DVD" ]; then #asking for CDROM and checking if it's correct one POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "AutoRun.exe" cd "$CDROM" POL_Wine "AutoRun.exe" POL_Wine_WaitExit "$TITLE" else #Asking then installing DDV of the game POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" fi # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## PlayOnMac Section [ "$PLAYONMAC" == "" ] && Set_SoundDriver "alsa" [ "$PLAYONMAC" == "" ] || Set_Managed "Off" ## End Section # Making shortcut POL_Shortcut "speed.exe" "$TITLE" "" "" "Game;" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" POL_SetupWindow_Close exit Réponses |
marcelo_hayden | Mercredi 16 Janvier 2019 à 17:45 |
marcelo_hayden
|
MessagesIt's working fine when I change the Wine version for 3.0. The PlayOnLinux team needs to approve the last code update that uses 3.0. RéponsesMercredi 16 Janvier 2019 à 21:02
|
LinuxScripter | Mercredi 14 Février 2018 à 11:46 |
LinuxScripter
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesGame runs on the latest version on wine just fine. No dependencies needed. Differences@@ -1,8 +1,8 @@ #!/bin/bash -# Date : (2009-23-05 12-14) -# Last revision : (2016-04-01 13-24) -# Wine version used : 1.3 -# Distribution used to test : Debian Squeeze (Testing) +# Date : (2009-05-23 12-14) +# Last revision : (2016-06-23 23-58) +# Wine version used : 1.3, 1.8.3, 3.0 +# Distribution used to test : Debian Squeeze (Testing), Arch Linux, Ubuntu 18.04 x64 # Author : NSWL & GNU_Raziel # Licence : Retail @@ -11,172 +11,89 @@ TITLE="Need For Speed Most Wanted" PREFIX="NFSMW" -WORKING_WINE_VERSION="1.3.0" - -if [ "$POL_LANG" == "fr" ]; then -LNG_CHOOSE_MEDIA="Quelle version possédez-vous?" -LNG_CD="Version CD" -LNG_DVD="Version DVD" -LNG_DDV="Version Digital Download" -LNG_CHOOSE_DDV="Veuillez selectionner votre executable Digital Download" -LNG_WAIT_REBOOT="Quand l'installateur du jeu demandera de redémarrer cliquez sur \"Oui\"\npuis cliquez sur \"Suivant\"." -LNG_INSERT_MEDIA_1="Veuillez insérer le disque 1 dans votre lecteur\nsi ce n'est pas déja fait." -LNG_INSERT_MEDIA_2="Veuillez insérer le disque 2 dans votre lecteur\nsi ce n'est pas déja fait." -LNG_INSERT_MEDIA_3="Veuillez insérer le disque 3 dans votre lecteur\nsi ce n'est pas déja fait." -LNG_INSERT_MEDIA_4="Veuillez insérer le disque 4 dans votre lecteur\nsi ce n'est pas déja fait." -LNG_NEXT_MEDIA="Quand l'installateur du jeu demandera le prochain disque\ncliquez sur \"Suivant\"." -LNG_INSERT_MEDIA="Veuillez insérer le disque $TITLE dans votre lecteur\nsi ce n'est pas déja fait." -LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du\njeu sera terminée sous peine de devoir recommencer l'installation." -LNG_INSTALL_ON="Installation en cours..." -LNG_GAME_VMS="La taille de votre mémoire graphique?" -LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de 128Mo de mémoire." -LNG_SUCCES="$TITLE a été installé avec succès." -else -LNG_CHOOSE_MEDIA="What version do you have?" -LNG_CD="CD Version" -LNG_DVD="DVD Version" -LNG_DDV="Digital Download Version" -LNG_CHOOSE_DDV="Please select your $TITLE Digital Download executable" -LNG_WAIT_REBOOT="When the game setup will ask for reboot click on \"Yes\"\nthen click on \"Next\"." -LNG_INSERT_MEDIA_1="Please insert disk 1 into your disk drive\nif not already done." -LNG_INSERT_MEDIA_2="Please insert disk 2 into your disk drive\nif not already done." -LNG_INSERT_MEDIA_3="Please insert disk 3 into your disk drive\nif not already done." -LNG_INSERT_MEDIA_4="Please insert disk 4 into your disk drive\nif not already done." -LNG_NEXT_MEDIA="When the game setup will ask for next disk\nclick on \"Next\"." -LNG_INSERT_MEDIA="Please insert $TITLE media into your disk drive\nif not already done." -LNG_WAIT_END="Click on \"Next\" ONLY when the game installation is finished\nor you will have to redo the installation." -LNG_INSTALL_ON="Installation in progress..." -LNG_GAME_VMS="How much memory do your graphic card have got?" -LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than 128Mo of memory." -LNG_SUCCES="$TITLE has been installed successfully." -fi +WORKING_WINE_VERSION="3.0" +GAME_VMS="32" #starting the script -rm "$REPERTOIRE/tmp/*.jpg" POL_SetupWindow_Init +POL_Debug_Init -POL_SetupWindow_presentation "$TITLE" "EA Games" "N/A" "NSLW & GNU_Raziel" "$PREFIX" +POL_SetupWindow_presentation "$TITLE" "EA Games" "N/A" "NSLW & GNU_Raziel" "$PREFIX" -select_prefix "$REPERTOIRE/wineprefix/$PREFIX" - -#downloading specific Wine -POL_SetupWindow_install_wine "$WORKING_WINE_VERSION" -Use_WineVersion "$WORKING_WINE_VERSION" - -#fetching PROGRAMFILES environmental variable -POL_LoadVar_PROGRAMFILES +#preparing Wine prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_System_SetArch "x86" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" #Choose between CD, DVD and Digital Download version -POL_SetupWindow_menu "$LNG_CHOOSE_MEDIA" "Actions" "$LNG_CD~$LNG_DVD~$LNG_DDV" "~" +POL_SetupWindow_InstallMethod "CD,DVD,LOCAL" -if [ "$APP_ANSWER" == "$LNG_CD" ]; then - GAME_MEDIAVERSION="CD" -elif [ "$APP_ANSWER" == "$LNG_DVD" ]; then - GAME_MEDIAVERSION="DVD" +if [ "$INSTALL_METHOD" == "CD" ]; then + #asking for CDROM and checking if it's correct one + #CD-ROM 1 + POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" + POL_SetupWindow_cdrom + POL_SetupWindow_check_cdrom "AutoRun.exe" + cd "$WINEPREFIX/dosdevices" + rm "d::" + ln -s "$CDROM" "d:" + cd "$CDROM" + POL_Wine "AutoRun.exe" + POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for reboot\nclick on "Yes" then click on "Next".')" + POL_Wine "AutoRun.exe" + POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" + #CD-ROM 2 + POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" + POL_SetupWindow_cdrom + cd "$WINEPREFIX/dosdevices" + rm "d:" + ln -s "$CDROM" "d:" + POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" + #CD-ROM 3 + POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" + POL_SetupWindow_cdrom + rm "d:" + ln -s "$CDROM" "d:" + POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" + #CD-ROM 4 + POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" + POL_SetupWindow_cdrom + rm "d:" + ln -s "$CDROM" "d:" + POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" + #CD-ROM 1 + POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" + POL_SetupWindow_cdrom + rm "d:" + ln -s "$CDROM" "d:" + POL_SetupWindow_message "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" +elif [ "$INSTALL_METHOD" == "DVD" ]; then + #asking for CDROM and checking if it's correct one + POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" + POL_SetupWindow_cdrom + POL_SetupWindow_check_cdrom "AutoRun.exe" + cd "$CDROM" + POL_Wine "AutoRun.exe" + POL_Wine_WaitExit "$TITLE" else - GAME_MEDIAVERSION="DD" -fi - -#Installing mandatory dependencies -POL_Call POL_Install_vcrun2005 -POL_Call POL_Install_d3dx9 - -if [ "$GAME_MEDIAVERSION" == "CD" ]; then - #asking for CDROM and checking if it's correct one - #CD-ROM 1 - POL_SetupWindow_message "$LNG_INSERT_MEDIA_1" - POL_SetupWindow_cdrom - POL_SetupWindow_check_cdrom "AutoRun.exe" - cd $WINEPREFIX/dosdevices - rm d:: - ls -sfT $CDROM d: - wine start /unix "$CDROM/AutoRun.exe" - POL_SetupWindow_message "$LNG_WAIT_REBOOT" - wine start /unix "$CDROM/AutoRun.exe" - #Ejecting CD-ROM 1 - POL_SetupWindow_message "$LNG_NEXT_MEDIA" - wine eject d: - #CD-ROM 2 - POL_SetupWindow_message "$LNG_INSERT_MEDIA_2" - POL_SetupWindow_cdrom - cd $WINEPREFIX/dosdevices - ln -sfT $CDROM d: - #Ejecting CD-ROM 2 - POL_SetupWindow_message "$LNG_NEXT_MEDIA" - wine eject d: - #CD-ROM 3 - POL_SetupWindow_message "$LNG_INSERT_MEDIA_3" - POL_SetupWindow_cdrom - cd $WINEPREFIX/dosdevices - ln -sfT $CDROM d: - #Ejecting CD-ROM 3 - POL_SetupWindow_message "$LNG_NEXT_MEDIA" - eject d: - #CD-ROM 4 - POL_SetupWindow_message "$LNG_INSERT_MEDIA_4" - POL_SetupWindow_cdrom - cd $WINEPREFIX/dosdevices - ln -sfT $CDROM d: - #Ejecting CD-ROM 4 - POL_SetupWindow_message "$LNG_NEXT_MEDIA" - eject d: - #CD-ROM 1 - POL_SetupWindow_message "$LNG_INSERT_MEDIA_1" - POL_SetupWindow_cdrom - cd $WINEPREFIX/dosdevices - ln -sfT $CDROM d: - - POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE" -elif [ "$GAME_MEDIAVERSION" == "DVD" ]; then - #asking for CDROM and checking if it's correct one - POL_SetupWindow_message "$LNG_INSERT_MEDIA" - POL_SetupWindow_cdrom - POL_SetupWindow_check_cdrom "AutoRun.exe" - wine start /unix "$CDROM/AutoRun.exe" - POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE" -else - #Asking then installing DDV of the game - cd $HOME - POL_SetupWindow_browse "$LNG_CHOOSE_DDV" "$TITLE" - SETUP_EXE="$APP_ANSWER" - POL_SetupWindow_wait_next_signal "$LNG_INSTALL_ON" "$TITLE" - wine start /unix "$SETUP_EXE" - INSTALL_ON="1" - until [ "$INSTALL_ON" == "" ]; do - sleep 5 - INSTALL_ON=`ps aux | grep "wineserver" | grep -v "grep"` - done - POL_SetupWindow_detect_exit + #Asking then installing DDV of the game + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" + POL_Wine "$APP_ANSWER" + POL_Wine_WaitExit "$TITLE" fi #asking about memory size of graphic card -POL_SetupWindow_menu_list "$LNG_GAME_VMS" "$TITLE" "128-256-320-384-512-640-768-896-1024-1792-2048" "-" "256" -VMS="$APP_ANSWER" +POL_SetupWindow_VMS "$GAME_VMS" -cd "$WINEPREFIX/drive_c/windows/temp/" -echo "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]" > vms.reg -echo "\"VideoMemorySize\"=\"$VMS\"" >> vms.reg -regedit vms.reg -if [ "$VMS" -lt "256" ]; then - POL_SetupWindow_message "$LNG_VMS_ERROR" "$TITLE" -fi - ## PlayOnMac Section [ "$PLAYONMAC" == "" ] && Set_SoundDriver "alsa" [ "$PLAYONMAC" == "" ] || Set_Managed "Off" ## End Section -#cleaning temp -if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then - rm -rf "$WINEPREFIX/drive_c/windows/temp/*" - chmod -R 777 "$REPERTOIRE/tmp/" - rm -rf "$REPERTOIRE/tmp/*" -fi - #making shortcut -POL_SetupWindow_auto_shortcut "$PREFIX" "speed.exe" "$TITLE" "" "" -Set_WineVersion_Assign "$WORKING_WINE_VERSION" "$TITLE" +POL_Shortcut "speed.exe" "$TITLE" + +POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" -POL_SetupWindow_message "$LNG_SUCCES" "$TITLE" POL_SetupWindow_Close exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2009-05-23 12-14) # Last revision : (2016-06-23 23-58) # Wine version used : 1.3, 1.8.3, 3.0 # Distribution used to test : Debian Squeeze (Testing), Arch Linux, Ubuntu 18.04 x64 # Author : NSWL & GNU_Raziel # Licence : Retail [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Need For Speed Most Wanted" PREFIX="NFSMW" WORKING_WINE_VERSION="3.0" GAME_VMS="32" #starting the script POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "EA Games" "N/A" "NSLW & GNU_Raziel" "$PREFIX" #preparing Wine prefix POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" #Choose between CD, DVD and Digital Download version POL_SetupWindow_InstallMethod "CD,DVD,LOCAL" if [ "$INSTALL_METHOD" == "CD" ]; then #asking for CDROM and checking if it's correct one #CD-ROM 1 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "AutoRun.exe" cd "$WINEPREFIX/dosdevices" rm "d::" ln -s "$CDROM" "d:" cd "$CDROM" POL_Wine "AutoRun.exe" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for reboot\nclick on "Yes" then click on "Next".')" POL_Wine "AutoRun.exe" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 2 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom cd "$WINEPREFIX/dosdevices" rm "d:" ln -s "$CDROM" "d:" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 3 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom rm "d:" ln -s "$CDROM" "d:" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 4 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom rm "d:" ln -s "$CDROM" "d:" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 1 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom rm "d:" ln -s "$CDROM" "d:" POL_SetupWindow_message "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" elif [ "$INSTALL_METHOD" == "DVD" ]; then #asking for CDROM and checking if it's correct one POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "AutoRun.exe" cd "$CDROM" POL_Wine "AutoRun.exe" POL_Wine_WaitExit "$TITLE" else #Asking then installing DDV of the game POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" fi #asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## PlayOnMac Section [ "$PLAYONMAC" == "" ] && Set_SoundDriver "alsa" [ "$PLAYONMAC" == "" ] || Set_Managed "Off" ## End Section #making shortcut POL_Shortcut "speed.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" POL_SetupWindow_Close exit RéponsesVendredi 6 Juillet 2018 à 11:42
Dimanche 8 Juillet 2018 à 10:58
Lundi 9 Juillet 2018 à 17:20
Mercredi 11 Juillet 2018 à 20:19
Mercredi 16 Janvier 2019 à 17:34
Mercredi 16 Janvier 2019 à 17:43
Jeudi 17 Janvier 2019 à 9:59
|
ZeNity_ | Jeudi 23 Juin 2016 à 23:58 |
ZeNity_
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUpdated the script. Changelog: * Rewrote messages using eval_gettext command * Replaced deprecated functions by currently supported ones * Updated Wine version to 1.8.3 (latest stable) * Removed dependencies as they don't seem required anymore * Removed /start unix from POL_Wine calls Differences@@ -1,182 +1,99 @@ #!/bin/bash -# Date : (2009-23-05 12-14) -# Last revision : (2016-04-01 13-24) -# Wine version used : 1.3 -# Distribution used to test : Debian Squeeze (Testing) +# Date : (2009-05-23 12-14) +# Last revision : (2016-06-23 23-58) +# Wine version used : 1.3, 1.8.3 +# Distribution used to test : Debian Squeeze (Testing), Arch Linux # Author : NSWL & GNU_Raziel # Licence : Retail - + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Need For Speed Most Wanted" PREFIX="NFSMW" -WORKING_WINE_VERSION="1.3.0" - -if [ "$POL_LANG" == "fr" ]; then -LNG_CHOOSE_MEDIA="Quelle version possédez-vous?" -LNG_CD="Version CD" -LNG_DVD="Version DVD" -LNG_DDV="Version Digital Download" -LNG_CHOOSE_DDV="Veuillez selectionner votre executable Digital Download" -LNG_WAIT_REBOOT="Quand l'installateur du jeu demandera de redémarrer cliquez sur \"Oui\"\npuis cliquez sur \"Suivant\"." -LNG_INSERT_MEDIA_1="Veuillez insérer le disque 1 dans votre lecteur\nsi ce n'est pas déja fait." -LNG_INSERT_MEDIA_2="Veuillez insérer le disque 2 dans votre lecteur\nsi ce n'est pas déja fait." -LNG_INSERT_MEDIA_3="Veuillez insérer le disque 3 dans votre lecteur\nsi ce n'est pas déja fait." -LNG_INSERT_MEDIA_4="Veuillez insérer le disque 4 dans votre lecteur\nsi ce n'est pas déja fait." -LNG_NEXT_MEDIA="Quand l'installateur du jeu demandera le prochain disque\ncliquez sur \"Suivant\"." -LNG_INSERT_MEDIA="Veuillez insérer le disque $TITLE dans votre lecteur\nsi ce n'est pas déja fait." -LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du\njeu sera terminée sous peine de devoir recommencer l'installation." -LNG_INSTALL_ON="Installation en cours..." -LNG_GAME_VMS="La taille de votre mémoire graphique?" -LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de 128Mo de mémoire." -LNG_SUCCES="$TITLE a été installé avec succès." -else -LNG_CHOOSE_MEDIA="What version do you have?" -LNG_CD="CD Version" -LNG_DVD="DVD Version" -LNG_DDV="Digital Download Version" -LNG_CHOOSE_DDV="Please select your $TITLE Digital Download executable" -LNG_WAIT_REBOOT="When the game setup will ask for reboot click on \"Yes\"\nthen click on \"Next\"." -LNG_INSERT_MEDIA_1="Please insert disk 1 into your disk drive\nif not already done." -LNG_INSERT_MEDIA_2="Please insert disk 2 into your disk drive\nif not already done." -LNG_INSERT_MEDIA_3="Please insert disk 3 into your disk drive\nif not already done." -LNG_INSERT_MEDIA_4="Please insert disk 4 into your disk drive\nif not already done." -LNG_NEXT_MEDIA="When the game setup will ask for next disk\nclick on \"Next\"." -LNG_INSERT_MEDIA="Please insert $TITLE media into your disk drive\nif not already done." -LNG_WAIT_END="Click on \"Next\" ONLY when the game installation is finished\nor you will have to redo the installation." -LNG_INSTALL_ON="Installation in progress..." -LNG_GAME_VMS="How much memory do your graphic card have got?" -LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than 128Mo of memory." -LNG_SUCCES="$TITLE has been installed successfully." -fi - +WORKING_WINE_VERSION="1.8.3" +GAME_VMS="32" + #starting the script -rm "$REPERTOIRE/tmp/*.jpg" POL_SetupWindow_Init - -POL_SetupWindow_presentation "$TITLE" "EA Games" "N/A" "NSLW & GNU_Raziel" "$PREFIX" - -select_prefix "$REPERTOIRE/wineprefix/$PREFIX" - -#downloading specific Wine -POL_SetupWindow_install_wine "$WORKING_WINE_VERSION" -Use_WineVersion "$WORKING_WINE_VERSION" - -#fetching PROGRAMFILES environmental variable -POL_LoadVar_PROGRAMFILES - -#Choose between CD, DVD and Digital Download version -POL_SetupWindow_menu "$LNG_CHOOSE_MEDIA" "Actions" "$LNG_CD~$LNG_DVD~$LNG_DDV" "~" - -if [ "$APP_ANSWER" == "$LNG_CD" ]; then - GAME_MEDIAVERSION="CD" -elif [ "$APP_ANSWER" == "$LNG_DVD" ]; then - GAME_MEDIAVERSION="DVD" -else - GAME_MEDIAVERSION="DD" -fi +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "EA Games" "N/A" "NSLW & GNU_Raziel" "$PREFIX" -#Installing mandatory dependencies -POL_Call POL_Install_vcrun2005 -POL_Call POL_Install_d3dx9 +#preparing Wine prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_System_SetArch "x86" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" -if [ "$GAME_MEDIAVERSION" == "CD" ]; then +#Choose between CD, DVD and Digital Download version +POL_SetupWindow_InstallMethod "CD,DVD,LOCAL" + +if [ "$INSTALL_METHOD" == "CD" ]; then #asking for CDROM and checking if it's correct one #CD-ROM 1 - POL_SetupWindow_message "$LNG_INSERT_MEDIA_1" + POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "AutoRun.exe" - cd $WINEPREFIX/dosdevices - rm d:: - ls -sfT $CDROM d: - wine start /unix "$CDROM/AutoRun.exe" - POL_SetupWindow_message "$LNG_WAIT_REBOOT" - wine start /unix "$CDROM/AutoRun.exe" - #Ejecting CD-ROM 1 - POL_SetupWindow_message "$LNG_NEXT_MEDIA" - wine eject d: + cd "$WINEPREFIX/dosdevices" + rm "d::" + ln -s "$CDROM" "d:" + cd "$CDROM" + POL_Wine "AutoRun.exe" + POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for reboot\nclick on "Yes" then click on "Next".')" + POL_Wine "AutoRun.exe" + POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 2 - POL_SetupWindow_message "$LNG_INSERT_MEDIA_2" + POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom - cd $WINEPREFIX/dosdevices - ln -sfT $CDROM d: - #Ejecting CD-ROM 2 - POL_SetupWindow_message "$LNG_NEXT_MEDIA" - wine eject d: + cd "$WINEPREFIX/dosdevices" + rm "d:" + ln -s "$CDROM" "d:" + POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 3 - POL_SetupWindow_message "$LNG_INSERT_MEDIA_3" + POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom - cd $WINEPREFIX/dosdevices - ln -sfT $CDROM d: - #Ejecting CD-ROM 3 - POL_SetupWindow_message "$LNG_NEXT_MEDIA" - eject d: + rm "d:" + ln -s "$CDROM" "d:" + POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 4 - POL_SetupWindow_message "$LNG_INSERT_MEDIA_4" + POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom - cd $WINEPREFIX/dosdevices - ln -sfT $CDROM d: - #Ejecting CD-ROM 4 - POL_SetupWindow_message "$LNG_NEXT_MEDIA" - eject d: + rm "d:" + ln -s "$CDROM" "d:" + POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 1 - POL_SetupWindow_message "$LNG_INSERT_MEDIA_1" + POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom - cd $WINEPREFIX/dosdevices - ln -sfT $CDROM d: - - POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE" -elif [ "$GAME_MEDIAVERSION" == "DVD" ]; then + rm "d:" + ln -s "$CDROM" "d:" + POL_SetupWindow_message "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" +elif [ "$INSTALL_METHOD" == "DVD" ]; then #asking for CDROM and checking if it's correct one - POL_SetupWindow_message "$LNG_INSERT_MEDIA" + POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "AutoRun.exe" - wine start /unix "$CDROM/AutoRun.exe" - POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE" + cd "$CDROM" + POL_Wine "AutoRun.exe" + POL_Wine_WaitExit "$TITLE" else #Asking then installing DDV of the game - cd $HOME - POL_SetupWindow_browse "$LNG_CHOOSE_DDV" "$TITLE" - SETUP_EXE="$APP_ANSWER" - POL_SetupWindow_wait_next_signal "$LNG_INSTALL_ON" "$TITLE" - wine start /unix "$SETUP_EXE" - INSTALL_ON="1" - until [ "$INSTALL_ON" == "" ]; do - sleep 5 - INSTALL_ON=`ps aux | grep "wineserver" | grep -v "grep"` - done - POL_SetupWindow_detect_exit + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" + POL_Wine "$APP_ANSWER" + POL_Wine_WaitExit "$TITLE" fi - + #asking about memory size of graphic card -POL_SetupWindow_menu_list "$LNG_GAME_VMS" "$TITLE" "128-256-320-384-512-640-768-896-1024-1792-2048" "-" "256" -VMS="$APP_ANSWER" - -cd "$WINEPREFIX/drive_c/windows/temp/" -echo "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]" > vms.reg -echo "\"VideoMemorySize\"=\"$VMS\"" >> vms.reg -regedit vms.reg -if [ "$VMS" -lt "256" ]; then - POL_SetupWindow_message "$LNG_VMS_ERROR" "$TITLE" -fi +POL_SetupWindow_VMS "$GAME_VMS" ## PlayOnMac Section [ "$PLAYONMAC" == "" ] && Set_SoundDriver "alsa" [ "$PLAYONMAC" == "" ] || Set_Managed "Off" ## End Section - -#cleaning temp -if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then - rm -rf "$WINEPREFIX/drive_c/windows/temp/*" - chmod -R 777 "$REPERTOIRE/tmp/" - rm -rf "$REPERTOIRE/tmp/*" -fi - + #making shortcut -POL_SetupWindow_auto_shortcut "$PREFIX" "speed.exe" "$TITLE" "" "" -Set_WineVersion_Assign "$WORKING_WINE_VERSION" "$TITLE" - -POL_SetupWindow_message "$LNG_SUCCES" "$TITLE" +POL_Shortcut "speed.exe" "$TITLE" + +POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" + POL_SetupWindow_Close exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2009-05-23 12-14) # Last revision : (2016-06-23 23-58) # Wine version used : 1.3, 1.8.3 # Distribution used to test : Debian Squeeze (Testing), Arch Linux # Author : NSWL & GNU_Raziel # Licence : Retail [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Need For Speed Most Wanted" PREFIX="NFSMW" WORKING_WINE_VERSION="1.8.3" GAME_VMS="32" #starting the script POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "EA Games" "N/A" "NSLW & GNU_Raziel" "$PREFIX" #preparing Wine prefix POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" #Choose between CD, DVD and Digital Download version POL_SetupWindow_InstallMethod "CD,DVD,LOCAL" if [ "$INSTALL_METHOD" == "CD" ]; then #asking for CDROM and checking if it's correct one #CD-ROM 1 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "AutoRun.exe" cd "$WINEPREFIX/dosdevices" rm "d::" ln -s "$CDROM" "d:" cd "$CDROM" POL_Wine "AutoRun.exe" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for reboot\nclick on "Yes" then click on "Next".')" POL_Wine "AutoRun.exe" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 2 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom cd "$WINEPREFIX/dosdevices" rm "d:" ln -s "$CDROM" "d:" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 3 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom rm "d:" ln -s "$CDROM" "d:" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 4 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom rm "d:" ln -s "$CDROM" "d:" POL_SetupWindow_message "$(eval_gettext 'When the game setup will ask for next disk\nclick on "Next".')" #CD-ROM 1 POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom rm "d:" ln -s "$CDROM" "d:" POL_SetupWindow_message "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" elif [ "$INSTALL_METHOD" == "DVD" ]; then #asking for CDROM and checking if it's correct one POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "AutoRun.exe" cd "$CDROM" POL_Wine "AutoRun.exe" POL_Wine_WaitExit "$TITLE" else #Asking then installing DDV of the game POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" fi #asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" ## PlayOnMac Section [ "$PLAYONMAC" == "" ] && Set_SoundDriver "alsa" [ "$PLAYONMAC" == "" ] || Set_Managed "Off" ## End Section #making shortcut POL_Shortcut "speed.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" POL_SetupWindow_Close exit RéponsesMercredi 13 Décembre 2017 à 10:26
|
Scindix | Lundi 14 Mars 2016 à 4:58 |
Scindix
|
MessagesWhen using this script I get the error message "The game cannot be installed, because it requires DirectX 9.0c or higher." RéponsesMercredi 16 Mars 2016 à 20:52
|
ZeNity_ | Mercredi 6 Janvier 2016 à 15:02 |
ZeNity_
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesRemoved -fT option from ln command call to provide PlayOnMac compatibility:
Also made a correction: replaced ls by ln (first occurence). Differences@@ -1,6 +1,6 @@ #!/bin/bash # Date : (2009-23-05 12-14) -# Last revision : (2016-04-01 13-24) +# Last revision : (2016-06-01 15-02) # Wine version used : 1.3 # Distribution used to test : Debian Squeeze (Testing) # Author : NSWL & GNU_Raziel @@ -89,7 +89,7 @@ POL_SetupWindow_check_cdrom "AutoRun.exe" cd $WINEPREFIX/dosdevices rm d:: - ls -sfT $CDROM d: + ln -s $CDROM d: wine start /unix "$CDROM/AutoRun.exe" POL_SetupWindow_message "$LNG_WAIT_REBOOT" wine start /unix "$CDROM/AutoRun.exe" @@ -100,7 +100,8 @@ POL_SetupWindow_message "$LNG_INSERT_MEDIA_2" POL_SetupWindow_cdrom cd $WINEPREFIX/dosdevices - ln -sfT $CDROM d: + rm d: + ln -s $CDROM d: #Ejecting CD-ROM 2 POL_SetupWindow_message "$LNG_NEXT_MEDIA" wine eject d: @@ -108,7 +109,8 @@ POL_SetupWindow_message "$LNG_INSERT_MEDIA_3" POL_SetupWindow_cdrom cd $WINEPREFIX/dosdevices - ln -sfT $CDROM d: + rm d: + ln -s $CDROM d: #Ejecting CD-ROM 3 POL_SetupWindow_message "$LNG_NEXT_MEDIA" eject d: @@ -116,7 +118,8 @@ POL_SetupWindow_message "$LNG_INSERT_MEDIA_4" POL_SetupWindow_cdrom cd $WINEPREFIX/dosdevices - ln -sfT $CDROM d: + rm d: + ln -s $CDROM d: #Ejecting CD-ROM 4 POL_SetupWindow_message "$LNG_NEXT_MEDIA" eject d: @@ -124,7 +127,8 @@ POL_SetupWindow_message "$LNG_INSERT_MEDIA_1" POL_SetupWindow_cdrom cd $WINEPREFIX/dosdevices - ln -sfT $CDROM d: + rm d: + ln -s $CDROM d: POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE" elif [ "$GAME_MEDIAVERSION" == "DVD" ]; then Nouveau code source#!/bin/bash # Date : (2009-23-05 12-14) # Last revision : (2016-06-01 15-02) # Wine version used : 1.3 # Distribution used to test : Debian Squeeze (Testing) # Author : NSWL & GNU_Raziel # Licence : Retail [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Need For Speed Most Wanted" PREFIX="NFSMW" WORKING_WINE_VERSION="1.3.0" if [ "$POL_LANG" == "fr" ]; then LNG_CHOOSE_MEDIA="Quelle version possédez-vous?" LNG_CD="Version CD" LNG_DVD="Version DVD" LNG_DDV="Version Digital Download" LNG_CHOOSE_DDV="Veuillez selectionner votre executable Digital Download" LNG_WAIT_REBOOT="Quand l'installateur du jeu demandera de redémarrer cliquez sur \"Oui\"\npuis cliquez sur \"Suivant\"." LNG_INSERT_MEDIA_1="Veuillez insérer le disque 1 dans votre lecteur\nsi ce n'est pas déja fait." LNG_INSERT_MEDIA_2="Veuillez insérer le disque 2 dans votre lecteur\nsi ce n'est pas déja fait." LNG_INSERT_MEDIA_3="Veuillez insérer le disque 3 dans votre lecteur\nsi ce n'est pas déja fait." LNG_INSERT_MEDIA_4="Veuillez insérer le disque 4 dans votre lecteur\nsi ce n'est pas déja fait." LNG_NEXT_MEDIA="Quand l'installateur du jeu demandera le prochain disque\ncliquez sur \"Suivant\"." LNG_INSERT_MEDIA="Veuillez insérer le disque $TITLE dans votre lecteur\nsi ce n'est pas déja fait." LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du\njeu sera terminée sous peine de devoir recommencer l'installation." LNG_INSTALL_ON="Installation en cours..." LNG_GAME_VMS="La taille de votre mémoire graphique?" LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de 128Mo de mémoire." LNG_SUCCES="$TITLE a été installé avec succès." else LNG_CHOOSE_MEDIA="What version do you have?" LNG_CD="CD Version" LNG_DVD="DVD Version" LNG_DDV="Digital Download Version" LNG_CHOOSE_DDV="Please select your $TITLE Digital Download executable" LNG_WAIT_REBOOT="When the game setup will ask for reboot click on \"Yes\"\nthen click on \"Next\"." LNG_INSERT_MEDIA_1="Please insert disk 1 into your disk drive\nif not already done." LNG_INSERT_MEDIA_2="Please insert disk 2 into your disk drive\nif not already done." LNG_INSERT_MEDIA_3="Please insert disk 3 into your disk drive\nif not already done." LNG_INSERT_MEDIA_4="Please insert disk 4 into your disk drive\nif not already done." LNG_NEXT_MEDIA="When the game setup will ask for next disk\nclick on \"Next\"." LNG_INSERT_MEDIA="Please insert $TITLE media into your disk drive\nif not already done." LNG_WAIT_END="Click on \"Next\" ONLY when the game installation is finished\nor you will have to redo the installation." LNG_INSTALL_ON="Installation in progress..." LNG_GAME_VMS="How much memory do your graphic card have got?" LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than 128Mo of memory." LNG_SUCCES="$TITLE has been installed successfully." fi #starting the script rm "$REPERTOIRE/tmp/*.jpg" POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "EA Games" "N/A" "NSLW & GNU_Raziel" "$PREFIX" select_prefix "$REPERTOIRE/wineprefix/$PREFIX" #downloading specific Wine POL_SetupWindow_install_wine "$WORKING_WINE_VERSION" Use_WineVersion "$WORKING_WINE_VERSION" #fetching PROGRAMFILES environmental variable POL_LoadVar_PROGRAMFILES #Choose between CD, DVD and Digital Download version POL_SetupWindow_menu "$LNG_CHOOSE_MEDIA" "Actions" "$LNG_CD~$LNG_DVD~$LNG_DDV" "~" if [ "$APP_ANSWER" == "$LNG_CD" ]; then GAME_MEDIAVERSION="CD" elif [ "$APP_ANSWER" == "$LNG_DVD" ]; then GAME_MEDIAVERSION="DVD" else GAME_MEDIAVERSION="DD" fi #Installing mandatory dependencies POL_Call POL_Install_vcrun2005 POL_Call POL_Install_d3dx9 if [ "$GAME_MEDIAVERSION" == "CD" ]; then #asking for CDROM and checking if it's correct one #CD-ROM 1 POL_SetupWindow_message "$LNG_INSERT_MEDIA_1" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "AutoRun.exe" cd $WINEPREFIX/dosdevices rm d:: ln -s $CDROM d: wine start /unix "$CDROM/AutoRun.exe" POL_SetupWindow_message "$LNG_WAIT_REBOOT" wine start /unix "$CDROM/AutoRun.exe" #Ejecting CD-ROM 1 POL_SetupWindow_message "$LNG_NEXT_MEDIA" wine eject d: #CD-ROM 2 POL_SetupWindow_message "$LNG_INSERT_MEDIA_2" POL_SetupWindow_cdrom cd $WINEPREFIX/dosdevices rm d: ln -s $CDROM d: #Ejecting CD-ROM 2 POL_SetupWindow_message "$LNG_NEXT_MEDIA" wine eject d: #CD-ROM 3 POL_SetupWindow_message "$LNG_INSERT_MEDIA_3" POL_SetupWindow_cdrom cd $WINEPREFIX/dosdevices rm d: ln -s $CDROM d: #Ejecting CD-ROM 3 POL_SetupWindow_message "$LNG_NEXT_MEDIA" eject d: #CD-ROM 4 POL_SetupWindow_message "$LNG_INSERT_MEDIA_4" POL_SetupWindow_cdrom cd $WINEPREFIX/dosdevices rm d: ln -s $CDROM d: #Ejecting CD-ROM 4 POL_SetupWindow_message "$LNG_NEXT_MEDIA" eject d: #CD-ROM 1 POL_SetupWindow_message "$LNG_INSERT_MEDIA_1" POL_SetupWindow_cdrom cd $WINEPREFIX/dosdevices rm d: ln -s $CDROM d: POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE" elif [ "$GAME_MEDIAVERSION" == "DVD" ]; then #asking for CDROM and checking if it's correct one POL_SetupWindow_message "$LNG_INSERT_MEDIA" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "AutoRun.exe" wine start /unix "$CDROM/AutoRun.exe" POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE" else #Asking then installing DDV of the game cd $HOME POL_SetupWindow_browse "$LNG_CHOOSE_DDV" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_SetupWindow_wait_next_signal "$LNG_INSTALL_ON" "$TITLE" wine start /unix "$SETUP_EXE" INSTALL_ON="1" until [ "$INSTALL_ON" == "" ]; do sleep 5 INSTALL_ON=`ps aux | grep "wineserver" | grep -v "grep"` done POL_SetupWindow_detect_exit fi #asking about memory size of graphic card POL_SetupWindow_menu_list "$LNG_GAME_VMS" "$TITLE" "128-256-320-384-512-640-768-896-1024-1792-2048" "-" "256" VMS="$APP_ANSWER" cd "$WINEPREFIX/drive_c/windows/temp/" echo "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]" > vms.reg echo "\"VideoMemorySize\"=\"$VMS\"" >> vms.reg regedit vms.reg if [ "$VMS" -lt "256" ]; then POL_SetupWindow_message "$LNG_VMS_ERROR" "$TITLE" fi ## PlayOnMac Section [ "$PLAYONMAC" == "" ] && Set_SoundDriver "alsa" [ "$PLAYONMAC" == "" ] || Set_Managed "Off" ## End Section #cleaning temp if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then rm -rf "$WINEPREFIX/drive_c/windows/temp/*" chmod -R 777 "$REPERTOIRE/tmp/" rm -rf "$REPERTOIRE/tmp/*" fi #making shortcut POL_SetupWindow_auto_shortcut "$PREFIX" "speed.exe" "$TITLE" "" "" Set_WineVersion_Assign "$WORKING_WINE_VERSION" "$TITLE" POL_SetupWindow_message "$LNG_SUCCES" "$TITLE" POL_SetupWindow_Close exit Réponses |
ZeNity_ | Lundi 4 Janvier 2016 à 13:24 |
ZeNity_
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesHi, I rewrote the CD install section of the script as it didn't seem functional to me. Differences@@ -1,6 +1,6 @@ #!/bin/bash # Date : (2009-23-05 12-14) -# Last revision : (2010-29-11 17-00) +# Last revision : (2016-04-01 13-24) # Wine version used : 1.3 # Distribution used to test : Debian Squeeze (Testing) # Author : NSWL & GNU_Raziel @@ -19,11 +19,12 @@ LNG_DVD="Version DVD" LNG_DDV="Version Digital Download" LNG_CHOOSE_DDV="Veuillez selectionner votre executable Digital Download" -LNG_WAIT_CP="Patientez pendant la préparation de l'installation..." +LNG_WAIT_REBOOT="Quand l'installateur du jeu demandera de redémarrer cliquez sur \"Oui\"\npuis cliquez sur \"Suivant\"." LNG_INSERT_MEDIA_1="Veuillez insérer le disque 1 dans votre lecteur\nsi ce n'est pas déja fait." LNG_INSERT_MEDIA_2="Veuillez insérer le disque 2 dans votre lecteur\nsi ce n'est pas déja fait." LNG_INSERT_MEDIA_3="Veuillez insérer le disque 3 dans votre lecteur\nsi ce n'est pas déja fait." LNG_INSERT_MEDIA_4="Veuillez insérer le disque 4 dans votre lecteur\nsi ce n'est pas déja fait." +LNG_NEXT_MEDIA="Quand l'installateur du jeu demandera le prochain disque\ncliquez sur \"Suivant\"." LNG_INSERT_MEDIA="Veuillez insérer le disque $TITLE dans votre lecteur\nsi ce n'est pas déja fait." LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du\njeu sera terminée sous peine de devoir recommencer l'installation." LNG_INSTALL_ON="Installation en cours..." @@ -36,11 +37,12 @@ LNG_DVD="DVD Version" LNG_DDV="Digital Download Version" LNG_CHOOSE_DDV="Please select your $TITLE Digital Download executable" -LNG_WAIT_CP="Wait while the installation is prepared..." +LNG_WAIT_REBOOT="When the game setup will ask for reboot click on \"Yes\"\nthen click on \"Next\"." LNG_INSERT_MEDIA_1="Please insert disk 1 into your disk drive\nif not already done." LNG_INSERT_MEDIA_2="Please insert disk 2 into your disk drive\nif not already done." LNG_INSERT_MEDIA_3="Please insert disk 3 into your disk drive\nif not already done." LNG_INSERT_MEDIA_4="Please insert disk 4 into your disk drive\nif not already done." +LNG_NEXT_MEDIA="When the game setup will ask for next disk\nclick on \"Next\"." LNG_INSERT_MEDIA="Please insert $TITLE media into your disk drive\nif not already done." LNG_WAIT_END="Click on \"Next\" ONLY when the game installation is finished\nor you will have to redo the installation." LNG_INSTALL_ON="Installation in progress..." @@ -80,52 +82,51 @@ POL_Call POL_Install_d3dx9 if [ "$GAME_MEDIAVERSION" == "CD" ]; then - #Copy content of CDs to HDD - TEMP="$REPERTOIRE/tmp/$PREFIX" - chmod -R 777 $TEMP - rm -R $TEMP - mkdir -p $TEMP - cd $WINEPREFIX/dosdevices - ln -s $TEMP d: #asking for CDROM and checking if it's correct one #CD-ROM 1 POL_SetupWindow_message "$LNG_INSERT_MEDIA_1" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "AutoRun.exe" - POL_SetupWindow_wait_next_signal "$LNG_WAIT_CP" "$TITLE" - cp -r $CDROM/* $TEMP - chmod 777 $TEMP -R - mv $TEMP/autorun.inf $TEMP/autorun-cd1.inf + cd $WINEPREFIX/dosdevices + rm d:: + ls -sfT $CDROM d: + wine start /unix "$CDROM/AutoRun.exe" + POL_SetupWindow_message "$LNG_WAIT_REBOOT" + wine start /unix "$CDROM/AutoRun.exe" + #Ejecting CD-ROM 1 + POL_SetupWindow_message "$LNG_NEXT_MEDIA" + wine eject d: #CD-ROM 2 POL_SetupWindow_message "$LNG_INSERT_MEDIA_2" POL_SetupWindow_cdrom - POL_SetupWindow_wait_next_signal "$LNG_WAIT_CP" "$TITLE" - cp -r $CDROM/* $TEMP - chmod 777 $TEMP -R - mv $TEMP/autorun.inf $TEMP/autorun-cd2.inf + cd $WINEPREFIX/dosdevices + ln -sfT $CDROM d: + #Ejecting CD-ROM 2 + POL_SetupWindow_message "$LNG_NEXT_MEDIA" + wine eject d: #CD-ROM 3 POL_SetupWindow_message "$LNG_INSERT_MEDIA_3" POL_SetupWindow_cdrom - POL_SetupWindow_wait_next_signal "$LNG_WAIT_CP" "$TITLE" - cp -r $CDROM/* $TEMP - chmod 777 $TEMP -R - mv $TEMP/autorun.inf $TEMP/autorun-cd3.inf + cd $WINEPREFIX/dosdevices + ln -sfT $CDROM d: + #Ejecting CD-ROM 3 + POL_SetupWindow_message "$LNG_NEXT_MEDIA" + eject d: #CD-ROM 4 POL_SetupWindow_message "$LNG_INSERT_MEDIA_4" POL_SetupWindow_cdrom - POL_SetupWindow_wait_next_signal "$LNG_WAIT_CP" "$TITLE" - cp -r $CDROM/*.cab $TEMP - chmod 777 $TEMP -R - mv $TEMP/autorun.inf $TEMP/autorun-cd4.inf - mv $TEMP/autorun-cd1.inf $TEMP/autorun.inf + cd $WINEPREFIX/dosdevices + ln -sfT $CDROM d: + #Ejecting CD-ROM 4 + POL_SetupWindow_message "$LNG_NEXT_MEDIA" + eject d: + #CD-ROM 1 + POL_SetupWindow_message "$LNG_INSERT_MEDIA_1" + POL_SetupWindow_cdrom + cd $WINEPREFIX/dosdevices + ln -sfT $CDROM d: - wine "d:\\AutoRun.exe" POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE" - - #Relinking d: to $CDROM - cd $WINEPREFIX/dosdevices - rm ./d: - ln -s $CDROM ./d: elif [ "$GAME_MEDIAVERSION" == "DVD" ]; then #asking for CDROM and checking if it's correct one POL_SetupWindow_message "$LNG_INSERT_MEDIA" Nouveau code source#!/bin/bash # Date : (2009-23-05 12-14) # Last revision : (2016-04-01 13-24) # Wine version used : 1.3 # Distribution used to test : Debian Squeeze (Testing) # Author : NSWL & GNU_Raziel # Licence : Retail [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Need For Speed Most Wanted" PREFIX="NFSMW" WORKING_WINE_VERSION="1.3.0" if [ "$POL_LANG" == "fr" ]; then LNG_CHOOSE_MEDIA="Quelle version possédez-vous?" LNG_CD="Version CD" LNG_DVD="Version DVD" LNG_DDV="Version Digital Download" LNG_CHOOSE_DDV="Veuillez selectionner votre executable Digital Download" LNG_WAIT_REBOOT="Quand l'installateur du jeu demandera de redémarrer cliquez sur \"Oui\"\npuis cliquez sur \"Suivant\"." LNG_INSERT_MEDIA_1="Veuillez insérer le disque 1 dans votre lecteur\nsi ce n'est pas déja fait." LNG_INSERT_MEDIA_2="Veuillez insérer le disque 2 dans votre lecteur\nsi ce n'est pas déja fait." LNG_INSERT_MEDIA_3="Veuillez insérer le disque 3 dans votre lecteur\nsi ce n'est pas déja fait." LNG_INSERT_MEDIA_4="Veuillez insérer le disque 4 dans votre lecteur\nsi ce n'est pas déja fait." LNG_NEXT_MEDIA="Quand l'installateur du jeu demandera le prochain disque\ncliquez sur \"Suivant\"." LNG_INSERT_MEDIA="Veuillez insérer le disque $TITLE dans votre lecteur\nsi ce n'est pas déja fait." LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du\njeu sera terminée sous peine de devoir recommencer l'installation." LNG_INSTALL_ON="Installation en cours..." LNG_GAME_VMS="La taille de votre mémoire graphique?" LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de 128Mo de mémoire." LNG_SUCCES="$TITLE a été installé avec succès." else LNG_CHOOSE_MEDIA="What version do you have?" LNG_CD="CD Version" LNG_DVD="DVD Version" LNG_DDV="Digital Download Version" LNG_CHOOSE_DDV="Please select your $TITLE Digital Download executable" LNG_WAIT_REBOOT="When the game setup will ask for reboot click on \"Yes\"\nthen click on \"Next\"." LNG_INSERT_MEDIA_1="Please insert disk 1 into your disk drive\nif not already done." LNG_INSERT_MEDIA_2="Please insert disk 2 into your disk drive\nif not already done." LNG_INSERT_MEDIA_3="Please insert disk 3 into your disk drive\nif not already done." LNG_INSERT_MEDIA_4="Please insert disk 4 into your disk drive\nif not already done." LNG_NEXT_MEDIA="When the game setup will ask for next disk\nclick on \"Next\"." LNG_INSERT_MEDIA="Please insert $TITLE media into your disk drive\nif not already done." LNG_WAIT_END="Click on \"Next\" ONLY when the game installation is finished\nor you will have to redo the installation." LNG_INSTALL_ON="Installation in progress..." LNG_GAME_VMS="How much memory do your graphic card have got?" LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than 128Mo of memory." LNG_SUCCES="$TITLE has been installed successfully." fi #starting the script rm "$REPERTOIRE/tmp/*.jpg" POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "EA Games" "N/A" "NSLW & GNU_Raziel" "$PREFIX" select_prefix "$REPERTOIRE/wineprefix/$PREFIX" #downloading specific Wine POL_SetupWindow_install_wine "$WORKING_WINE_VERSION" Use_WineVersion "$WORKING_WINE_VERSION" #fetching PROGRAMFILES environmental variable POL_LoadVar_PROGRAMFILES #Choose between CD, DVD and Digital Download version POL_SetupWindow_menu "$LNG_CHOOSE_MEDIA" "Actions" "$LNG_CD~$LNG_DVD~$LNG_DDV" "~" if [ "$APP_ANSWER" == "$LNG_CD" ]; then GAME_MEDIAVERSION="CD" elif [ "$APP_ANSWER" == "$LNG_DVD" ]; then GAME_MEDIAVERSION="DVD" else GAME_MEDIAVERSION="DD" fi #Installing mandatory dependencies POL_Call POL_Install_vcrun2005 POL_Call POL_Install_d3dx9 if [ "$GAME_MEDIAVERSION" == "CD" ]; then #asking for CDROM and checking if it's correct one #CD-ROM 1 POL_SetupWindow_message "$LNG_INSERT_MEDIA_1" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "AutoRun.exe" cd $WINEPREFIX/dosdevices rm d:: ls -sfT $CDROM d: wine start /unix "$CDROM/AutoRun.exe" POL_SetupWindow_message "$LNG_WAIT_REBOOT" wine start /unix "$CDROM/AutoRun.exe" #Ejecting CD-ROM 1 POL_SetupWindow_message "$LNG_NEXT_MEDIA" wine eject d: #CD-ROM 2 POL_SetupWindow_message "$LNG_INSERT_MEDIA_2" POL_SetupWindow_cdrom cd $WINEPREFIX/dosdevices ln -sfT $CDROM d: #Ejecting CD-ROM 2 POL_SetupWindow_message "$LNG_NEXT_MEDIA" wine eject d: #CD-ROM 3 POL_SetupWindow_message "$LNG_INSERT_MEDIA_3" POL_SetupWindow_cdrom cd $WINEPREFIX/dosdevices ln -sfT $CDROM d: #Ejecting CD-ROM 3 POL_SetupWindow_message "$LNG_NEXT_MEDIA" eject d: #CD-ROM 4 POL_SetupWindow_message "$LNG_INSERT_MEDIA_4" POL_SetupWindow_cdrom cd $WINEPREFIX/dosdevices ln -sfT $CDROM d: #Ejecting CD-ROM 4 POL_SetupWindow_message "$LNG_NEXT_MEDIA" eject d: #CD-ROM 1 POL_SetupWindow_message "$LNG_INSERT_MEDIA_1" POL_SetupWindow_cdrom cd $WINEPREFIX/dosdevices ln -sfT $CDROM d: POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE" elif [ "$GAME_MEDIAVERSION" == "DVD" ]; then #asking for CDROM and checking if it's correct one POL_SetupWindow_message "$LNG_INSERT_MEDIA" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "AutoRun.exe" wine start /unix "$CDROM/AutoRun.exe" POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE" else #Asking then installing DDV of the game cd $HOME POL_SetupWindow_browse "$LNG_CHOOSE_DDV" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_SetupWindow_wait_next_signal "$LNG_INSTALL_ON" "$TITLE" wine start /unix "$SETUP_EXE" INSTALL_ON="1" until [ "$INSTALL_ON" == "" ]; do sleep 5 INSTALL_ON=`ps aux | grep "wineserver" | grep -v "grep"` done POL_SetupWindow_detect_exit fi #asking about memory size of graphic card POL_SetupWindow_menu_list "$LNG_GAME_VMS" "$TITLE" "128-256-320-384-512-640-768-896-1024-1792-2048" "-" "256" VMS="$APP_ANSWER" cd "$WINEPREFIX/drive_c/windows/temp/" echo "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]" > vms.reg echo "\"VideoMemorySize\"=\"$VMS\"" >> vms.reg regedit vms.reg if [ "$VMS" -lt "256" ]; then POL_SetupWindow_message "$LNG_VMS_ERROR" "$TITLE" fi ## PlayOnMac Section [ "$PLAYONMAC" == "" ] && Set_SoundDriver "alsa" [ "$PLAYONMAC" == "" ] || Set_Managed "Off" ## End Section #cleaning temp if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then rm -rf "$WINEPREFIX/drive_c/windows/temp/*" chmod -R 777 "$REPERTOIRE/tmp/" rm -rf "$REPERTOIRE/tmp/*" fi #making shortcut POL_SetupWindow_auto_shortcut "$PREFIX" "speed.exe" "$TITLE" "" "" Set_WineVersion_Assign "$WORKING_WINE_VERSION" "$TITLE" POL_SetupWindow_message "$LNG_SUCCES" "$TITLE" POL_SetupWindow_Close exit Réponses |
MasterGamer2001 | Mercredi 8 Octobre 2014 à 18:10 |
MasterGamer2001
|
Messagesit keeps saying warning PlayOnMac Wizard the i click next then agree and it still wont work RéponsesMercredi 8 Octobre 2014 à 21:06
|
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