Black Mesa

Informations

Créateur Messages
Quentin PÂRIS Anonymous

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 15282
Wine: 1.8-staging

Retours d'expérience

Description

FPS : run, think, shoot source. Revisit Half-Life with this highly acclaimed re-imagining created on Valve's Source engine.

Wikipedia.

Code source

#!/bin/bash
# Date : (2015-12-16 18-47)
# Wine version used : 1.8-rc4-staging
# Distribution used to test : Mac OS
# Author : Quentin PÂRIS
# Licence : Retail

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Black Mesa"
PREFIX="BlackMesa"
WORKING_WINE_VERSION="1.8-staging"
STEAM_ID="362890"
POL_SetupWindow_Init

POL_SetupWindow_presentation "$TITLE" "Valve" "" "Quentin PÂRIS" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

#fetching PROGRAMFILES environmental variable
POL_LoadVar_PROGRAMFILES


POL_SetupWindow_InstallMethod "STEAM"

if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Call POL_Install_steam
        POL_Call POL_Install_steam_flags "$STEAM_ID"
        POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID"
fi

POL_Wine_VMS
POL_Call POL_Install_tahoma

if [ "$INSTALL_METHOD" == "STEAM" ]; then
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID"
fi
  
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribuer
Membre Messages
legendhairy Jeudi 3 Février 2022 à 19:42
legendhairy Anonymous

Messages

I'm getting the following error when trying to install:

 

http://media.steampowered.com/client/installer/SteamSetup.exe

Error ! Files mismatch

Local : 29a0d4f99b2ad92bc67d276c0c43d603

Server : 81448c2e730b597bbd5e43007ce6a

Do you want to retry?

 

When I click yes it gives me the error again.

I'm running MacOS Monterey 12.1. (3.4ghz quad intel i5, Radeon Pro 560 4gb)

Réponses

Quentin PÂRIS Dimanche 27 Décembre 2015 à 16:13
Quentin PÂRIS Anonymous

Information

Cette mise à jour a été acceptée par l'équipe

Differences

@@ -10,7 +10,7 @@
  
 TITLE="Black Mesa"
 PREFIX="BlackMesa"
-WORKING_WINE_VERSION="1.8-rc4-staging"
+WORKING_WINE_VERSION="1.8-staging"
 STEAM_ID="362890"
 POL_SetupWindow_Init
 
@@ -32,7 +32,7 @@
 fi
 
 POL_Wine_VMS
-
+POL_Call POL_Install_tahoma
 
 if [ "$INSTALL_METHOD" == "STEAM" ]; then
 	cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"

Nouveau code source

#!/bin/bash
# Date : (2015-12-16 18-47)
# Wine version used : 1.8-rc4-staging
# Distribution used to test : Mac OS
# Author : Quentin PÂRIS
# Licence : Retail

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Black Mesa"
PREFIX="BlackMesa"
WORKING_WINE_VERSION="1.8-staging"
STEAM_ID="362890"
POL_SetupWindow_Init

POL_SetupWindow_presentation "$TITLE" "Valve" "" "Quentin PÂRIS" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

#fetching PROGRAMFILES environmental variable
POL_LoadVar_PROGRAMFILES


POL_SetupWindow_InstallMethod "STEAM"

if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Call POL_Install_steam
        POL_Call POL_Install_steam_flags "$STEAM_ID"
        POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID"
fi

POL_Wine_VMS
POL_Call POL_Install_tahoma

if [ "$INSTALL_METHOD" == "STEAM" ]; then
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID"
fi
  
POL_SetupWindow_Close
exit

Réponses

Edité par Tinou

Quentin PÂRIS Mercredi 16 Décembre 2015 à 18:47
Quentin PÂRIS Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -0,0 +1,43 @@
+#!/bin/bash
+# Date : (2015-12-16 18-47)
+# Wine version used : 1.8-rc4-staging
+# Distribution used to test : Mac OS
+# Author : Quentin PÂRIS
+# Licence : Retail
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+ 
+TITLE="Black Mesa"
+PREFIX="BlackMesa"
+WORKING_WINE_VERSION="1.8-rc4-staging"
+STEAM_ID="362890"
+POL_SetupWindow_Init
+
+POL_SetupWindow_presentation "$TITLE" "Valve" "" "Quentin PÂRIS" "$PREFIX"
+
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+
+#fetching PROGRAMFILES environmental variable
+POL_LoadVar_PROGRAMFILES
+
+
+POL_SetupWindow_InstallMethod "STEAM"
+
+if [ "$INSTALL_METHOD" == "STEAM" ]; then
+	POL_Call POL_Install_steam
+	POL_Call POL_Install_steam_flags "$STEAM_ID"
+	POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID"
+fi
+
+POL_Wine_VMS
+
+
+if [ "$INSTALL_METHOD" == "STEAM" ]; then
+	cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
+	POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID"
+fi
+  
+POL_SetupWindow_Close
+exit
\ No newline at end of file

Nouveau code source

#!/bin/bash
# Date : (2015-12-16 18-47)
# Wine version used : 1.8-rc4-staging
# Distribution used to test : Mac OS
# Author : Quentin PÂRIS
# Licence : Retail

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Black Mesa"
PREFIX="BlackMesa"
WORKING_WINE_VERSION="1.8-rc4-staging"
STEAM_ID="362890"
POL_SetupWindow_Init

POL_SetupWindow_presentation "$TITLE" "Valve" "" "Quentin PÂRIS" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

#fetching PROGRAMFILES environmental variable
POL_LoadVar_PROGRAMFILES


POL_SetupWindow_InstallMethod "STEAM"

if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Call POL_Install_steam
        POL_Call POL_Install_steam_flags "$STEAM_ID"
        POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID"
fi

POL_Wine_VMS


if [ "$INSTALL_METHOD" == "STEAM" ]; then
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID"
fi
  
POL_SetupWindow_Close
exit

Réponses

Edité par Tinou

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