Das Forum

Splinter cell Blacklist

Autor Antworten
Massawi33 Tuesday 29 October 2013 at 21:22
Massawi33

Bonsoir 

Voila mon script pour Splinter cell Blacklist , pour moi le son marche pas !! :(

Bon voila vous en pensez quoi ?? :
  1. #!/bin/bash
  2. # Date : (2013-10-29 20-20)
  3. # Last revision : (2013-10-29 20-20)
  4. # Wine version used : 1.7.1
  5. # Distribution used to test : Debian Sid
  6. # Author : Massawi33
  7.  
  8. [ "$PLAYONLINUX" = "" ] && exit 0
  9. source "$PLAYONLINUX/lib/sources"
  10.  
  11. TITLE="Splinter Cell Blacklist"
  12. PREFIX="SplinterCellBlacklist"
  13.  
  14. POL_SetupWindow_Init
  15. POL_Debug_Init
  16.  
  17. POL_SetupWindow_presentation "$TITLE" "Ubisoft" "http://splintercell.ubi.com" "Massawi33" "$PREFIX"
  18.  
  19. POL_Wine_SelectPrefix "$PREFIX"
  20. POL_Wine_PrefixCreate "1.7.1"
  21.  
  22. POL_SetupWindow_InstallMethod "LOCAL,DVD"
  23.  
  24. if [ "$INSTALL_METHOD" = "LOCAL" ]
  25. then
  26.     cd "$HOME"
  27.     POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
  28.     POL_Wine_WaitBefore "$TITLE"
  29.     POL_Wine start /unix "$APP_ANSWER"
  30.     POL_Wine_WaitExit "$TITLE"
  31. elif [ "$INSTALL_METHOD" = "DVD" ]
  32. then
  33.     POL_SetupWindow_cdrom
  34.     POL_SetupWindow_check_cdrom "BlacklistAutoRun.exe"
  35.     POL_Wine_WaitBefore "$TITLE"
  36.     POL_Wine start /unix "$CDROM/BlacklistAutoRun.exe"
  37.     POL_Wine_WaitExit "$TITLE"
  38. fi
  39.  
  40. POL_Wine_SetVideoDriver
  41. POL_SetupWindow_VMS "512"
  42.  
  43. POL_Shortcut "Blacklist_game.exe" "$TITLE"
  44.  
  45. POL_SetupWindow_Close
  46. exit
petch Tuesday 29 October 2013 at 22:43
petch

Peut-être avec DirectX natif?
http://bugs.winehq.org/show_bug.cgi?id=34358

Sinon le script paraît pas mal, "start /unix" n'est peut-être pas indispensable (je sais qu'il est mentionné dans la doc...), et s'il est enlevé il est possible que les POL_Wine_WaitExit deviennent également superflus; Sinon s'il est gardé ce sont les POL_Wine_WaitBefore qui sont superflus, il n'y a pas de gros intérêt à avoir les deux simultanément sur une même commande (détails en anglais dans http://www.playonlinux.com/en/topic-11087-SonoHana_08__Tenshi_no_Hanabira_Zome.html)
Massawi33 Wednesday 30 October 2013 at 18:22
Massawi33

Bonjour
1/ Quand j'ai installer directx 9 le jeu ne se lançais pas
2/ si j'ai bien compris j'enlève le "start /unix" et le POL_Wine_WaitExit du script ??
Massawi33 Sunday 3 November 2013 at 13:28
Massawi33

!!