plata |
Dimanche 17 Avril 2016 à 14:22
|
plata
|
The script installs Mirror's Edge for Steam.
Icons:
MirrorsEdge-48x48.png
https://ibin.co/2e4EB6RUWs37.png
MirrorsEdge-22x22.png
https://ibin.co/2e4DEPEFi6gH.png
left.png
https://ibin.co/2e4EKmWdtliL.png
top.png
https://ibin.co/2e4EU9Fcy6cv.png
#!/bin/bash
# Date : (2016-04-17 ??-??)
# Last revision : (2016-04-17 ??-??)
# Wine version used : 1.8.2
# Distribution used to test : Linux Mint 17.3 x64
# Author : plata
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Mirror's Edge (Steam)"
PREFIX="Mirrors_Edge"
WORKING_WINE_VERSION="1.8.2"
EDITOR="DICE"
GAME_URL="http://www.mirrorsedge.com/"
AUTHOR="plata"
# start the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# set prefix path
POL_Wine_SelectPrefix "$PREFIX"
# download wine if necessary and create prefix
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
# make sure that game window shows up
Set_Managed "Off"
# install dependencies
POL_Call POL_Install_corefonts
POL_Call POL_Install_d3dx9
POL_Call POL_Install_Physx
POL_Call POL_Install_tahoma
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_steam
# begin game installation
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
POL_Wine "steam.exe" steam://install/17410
POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE"
POL_Wine_WaitExit "$TITLE"
# Making shortcut
POL_Shortcut "MirrorsEdge.exe" "$TITLE"
POL_SetupWindow_Close
exit 0
Edité par plata
|
MTres19 |
Vendredi 22 Avril 2016 à 2:11
|
MTres19
|
Just a suggestion: You might want to set $WORKING_WINE_VERSION to 1.8.2 or even a 1.9.x development release. Especially 1.8.2 is going to be more likely to be already installed, since it's a stable version and therefore more likely to be used by scripts.
|
plata |
Vendredi 6 Mai 2016 à 10:28
|
plata
|
I followed this guide: http://www.gamersonlinux.com/forum/threads/mirrors-edge-guide.254
Maybe 1.8.2 or 1.9.x is working as well, but I cannot approve that in general.
Btw: Why am I not subscribed to this thread automatically when I created it?
|
MTres19 |
Vendredi 6 Mai 2016 à 16:22
|
MTres19
|
Have you tested 1.8.x or 1.9.x? To test your script: in the PlayOnLinux window, go to Tools > Run a local script.
|
plata |
Vendredi 6 Mai 2016 à 18:18
|
plata
|
1.8.2 is working. I just had to uncheck "Allow window manager to control window". How can I do that in the script directly?
|
MTres19 |
Vendredi 6 Mai 2016 à 20:36
|
MTres19
|
|
plata |
Vendredi 6 Mai 2016 à 21:42
|
plata
|
|
MTres19 |
Samedi 14 Mai 2016 à 21:23
|
MTres19
|
|
plata |
Dimanche 15 Mai 2016 à 11:17
|
plata
|
|
Hunter621 |
Mardi 26 Mars 2019 à 8:12
|
Hunter621
|
The script installs Mirror's Edge for Steam.
Icons:
MirrorsEdge-48x48.png
https://ibin.co/2e4EB6RUWs37.png
MirrorsEdge-22x22.png
https://ibin.co/2e4DEPEFi6gH.png
left.png
https://ibin.co/2e4EKmWdtliL.png
top.png
https://ibin.co/2e4EU9Fcy6cv.png APKJunky
#!/bin/bash
# Date : (2016-04-17 ??-??)
# Last revision : (2016-04-17 ??-??)
# Wine version used : 1.8.2
# Distribution used to test : Linux Mint 17.3 x64
# Author : plata
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Mirror's Edge (Steam)"
PREFIX="Mirrors_Edge"
WORKING_WINE_VERSION="1.8.2"
EDITOR="DICE"
GAME_URL="http://www.mirrorsedge.com/"
AUTHOR="plata"
# start the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# set prefix path
POL_Wine_SelectPrefix "$PREFIX"
# download wine if necessary and create prefix
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
# make sure that game window shows up
Set_Managed "Off"
# install dependencies
POL_Call POL_Install_corefonts
POL_Call POL_Install_d3dx9
POL_Call POL_Install_Physx
POL_Call POL_Install_tahoma
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_steam
# begin game installation
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
POL_Wine "steam.exe" steam://install/17410
POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE"
POL_Wine_WaitExit "$TITLE"
# Making shortcut
POL_Shortcut "MirrorsEdge.exe" "$TITLE"
POL_SetupWindow_Close
exit 0
I have faced the same issue. Can anyone help me?
Edité par Hunter621
|