Forums

Fifa 2011

Auteur Réponses
massimiliano0790 Lundi 29 Novembre 2010 à 16:36
massimiliano0790Anonymous

Salve a tutti. Creato e provato il gioco fifa 2011 su playonlinux. Fatemi sapere!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/bin/bash
# Wine version used : 1.2
# Distribution used to test : Debian Lenny
# Author : Maximo90
# Licence : Retail
  
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Fifa 2011"
PREFIX="fifa11"
WORKINGWINEVERSION="1.2"
  
POL_SetupWindow_make_icon_for_shortcut()
{
convert "$HOME/.local/share/icons/$2" -geometry 32X32 "$REPERTOIRE/icones/32/$1"
}
  
#starting the script
wget http://upload.wikimedia.org/wikipedia/it/6/69/Logo_FIFA_women%27s_world_cup_2011.jpg --output-document="$REPERTOIRE/tmp/leftnotscaled.jpeg"
convert "$REPERTOIRE/tmp/leftnotscaled.jpeg" -scale 150x356\\! "$REPERTOIRE/tmp/left.jpeg"
POL_SetupWindow_Init "" "$REPERTOIRE/tmp/left.jpeg"
  
POL_SetupWindow_presentation "$TITLE" "EA Sports" "http://www.ea.com/soccer/fifa" "Maximo90" "$PREFIX"
  
#asking for CDROM and checking if it's correct one
POL_SetupWindow_message "Please insert $TITLE media into your disk drive."
POL_SetupWindow_cdrom
cd "$CDROM"
CHECK=$(find . -iwholename ./EASetup.exe | cut -d'/' -f2)
POL_SetupWindow_check_cdrom "$CHECK"
  
select_prefix "$REPERTOIRE/wineprefix/$PREFIX"
  
#downloading specific Wine
POL_SetupWindow_install_wine "$WORKINGWINEVERSION"
Use_WineVersion "$WORKINGWINEVERSION"
  
#creating application's own prefix
POL_SetupWindow_prefixcreate
  
#fetching PROGRAMFILES environmental variable
PROGRAMFILES="Program Files"
POL_LoadVar_PROGRAMFILES
  
#Installing mandatory dependencies
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_d3dx9
POL_Call POL_Install_gecko
POL_Call POL_Install_tahoma
POL_Call POL_Install_dotnet20
POL_Call POL_Install_vcrun2008
 
#adding CD-ROM as drive D: to winecfg
cd "$WINEPREFIX/dosdevices"
ln -s "$CDROM" D:
  
cd "$WINEPREFIX/drive_c/windows/temp/"
echo "[HKEY_LOCAL_MACHINE\\\\Software\\\\Wine\\\\Drives]" > cdrom.reg
echo "\\"D:\\"=\\"cdrom\\"" >> cdrom.reg
regedit cdrom.reg
  
sleep 5
  
#starting installation
POL_SetupWindow_wait_next_signal "Installation in progress..." "$TITLE"
wine "$CDROM/$CHECK"
POL_SetupWindow_detect_exit
  
#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_make_shortcut "$PREFIX" "$PROGRAMFILES/EA Sports/FIFA 11/Game" "fifa.exe" "" "$TITLE"
  
Set_WineVersion_Assign "$WORKINGWINEVERSION" "$TITLE"
POL_SetupWindow_make_icon_for_shortcut "$TITLE"
  
POL_SetupWindow_message "$TITLE has been installed successfully." "$TITLE"
  
POL_SetupWindow_message_image "Please note that this game has a copy protection system\\nand sadly, it prevents Wine from running the game.\\n\\nPlayOnLinux will not provide any help concerning any illegal\\nstuff." "Note about copy protection" "$PLAYONLINUX/themes/tango/warning.png"
  
POL_SetupWindow_Close
exit
GNU_Raziel Lundi 29 Novembre 2010 à 17:27
GNU_Raziel

Here is the standardized version, added to official repository :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/bash
# Wine version used : 1.2
# Distribution used to test : Debian Lenny
# Author : Maximo90
# Licence : Retail
  
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Fifa 2011"
PREFIX="fifa11"
WORKING_WINE_VERSION="1.2"
  
#starting the script
rm "$REPERTOIRE/tmp/*.jpg"
POL_SetupWindow_Init
  
POL_SetupWindow_presentation "$TITLE" "EA Sports" "http://www.ea.com/soccer/fifa" "Maximo90" "$PREFIX"
  
#asking for CDROM and checking if it's correct one
POL_SetupWindow_message "Please insert $TITLE media into your disk drive."
POL_SetupWindow_cdrom
cd "$CDROM"
CHECK=$(find . -iwholename ./EASetup.exe | cut -d'/' -f2)
POL_SetupWindow_check_cdrom "$CHECK"
  
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
  
#Installing mandatory dependencies
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_d3dx9
POL_Call POL_Install_gecko
POL_Call POL_Install_tahoma
POL_Call POL_Install_dotnet20
POL_Call POL_Install_vcrun2008
  
#starting installation
POL_SetupWindow_wait_next_signal "Installation in progress..." "$TITLE"
wine "$CDROM/$CHECK"
POL_SetupWindow_detect_exit
 
## PlayOnMac Section
[ "$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" "fifa.exe" "$TITLE" "" ""
Set_WineVersion_Assign "$WORKING_WINE_VERSION" "$TITLE"
  
POL_SetupWindow_message "$TITLE has been installed successfully." "$TITLE"
  
POL_SetupWindow_message "Please note that this game has a copy protection system\\nand sadly, it prevents Wine from running the game.\\n\\nPlayOnLinux will not provide any help concerning any illegal\\nstuff." $TITLE"
  
POL_SetupWindow_Close
exit


Thread moved to the correct section.

Thx for your contribution.

Edité par GNU_Raziel

jaguar201 Samedi 8 Janvier 2011 à 14:42
jaguar201Anonymous

Does not work. (See forum --> games)
Vous êtes ici: Index > Your creations. > Fifa 2011

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@playonlinux.com