Black Mesa
Informations
Creator | Message |
---|---|
Quentin PÂRIS
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 1 DescriptionFPS : run, think, shoot source. Revisit Half-Life with this highly acclaimed re-imagining created on Valve's Source engine. Source code#!/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:
ContributeMember | Message |
legendhairy | Thursday 3 February 2022 at 19:42 |
legendhairy
|
MessageI'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) Replies |
Quentin PÂRIS | Sunday 27 December 2015 at 16:13 |
Quentin PÂRIS
|
InformationThis update has been approved by the team. 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" New source code#!/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 RepliesEdited by Tinou |
Quentin PÂRIS | Wednesday 16 December 2015 at 18:47 |
Quentin PÂRIS
|
WarningThis update has not been approved yet by the team. 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 New source code#!/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 RepliesEdited by 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