Quake Live (Steam)
Informations
Creator | Message |
---|---|
RobLoach
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks3 0 DescriptionOnline shooter. Source code#!/bin/bash # # CHANGELOG: # [RobLoach] (2015) # First script. # [Dadu042] (2019-12-24) # Wine 2.12-staging -> 3.0.3 # POL_RequiredVersion "4.2.12" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Configuration TITLE="Quake Live" WEBSITE="http://www.quakelive.com" DEVELOPER="id Software" AUTHOR="PlayOnLinux" PREFIX="quakelive" WINE_VERSION="3.0.3" # Start up PlayOnLinux POL_SetupWindow_Init POL_SetupWindow_SetID 2407 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" # Create the Wine Prefix POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINE_VERSION" # Dependencies Set_OS "win7" POL_Call POL_Install_steam SHORTCUT="Steam.exe" SHORTCUT_IMAGE="" SHORTCUT_ARGS="-applaunch 282440" # Create the Shortcut to the program POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS" "Game;" POL_SetupWindow_Close exit |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Tuesday 24 December 2019 at 17:08 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -1,4 +1,12 @@ #!/bin/bash +# +# CHANGELOG: +# [RobLoach] (2015) +# First script. +# [Dadu042] (2019-12-24) +# Wine 2.12-staging -> 3.0.3 +# POL_RequiredVersion "4.2.12" + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -8,7 +16,7 @@ DEVELOPER="id Software" AUTHOR="PlayOnLinux" PREFIX="quakelive" -WINE_VERSION="2.12-staging" +WINE_VERSION="3.0.3" # Start up PlayOnLinux POL_SetupWindow_Init @@ -17,6 +25,8 @@ POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX" +POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" + # Create the Wine Prefix POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" @@ -31,7 +41,7 @@ SHORTCUT_ARGS="-applaunch 282440" # Create the Shortcut to the program -POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS" +POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS" "Game;" POL_SetupWindow_Close exit \ No newline at end of file New source code#!/bin/bash # # CHANGELOG: # [RobLoach] (2015) # First script. # [Dadu042] (2019-12-24) # Wine 2.12-staging -> 3.0.3 # POL_RequiredVersion "4.2.12" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Configuration TITLE="Quake Live" WEBSITE="http://www.quakelive.com" DEVELOPER="id Software" AUTHOR="PlayOnLinux" PREFIX="quakelive" WINE_VERSION="3.0.3" # Start up PlayOnLinux POL_SetupWindow_Init POL_SetupWindow_SetID 2407 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" # Create the Wine Prefix POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINE_VERSION" # Dependencies Set_OS "win7" POL_Call POL_Install_steam SHORTCUT="Steam.exe" SHORTCUT_IMAGE="" SHORTCUT_ARGS="-applaunch 282440" # Create the Shortcut to the program POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS" "Game;" POL_SetupWindow_Close exit Replies |
Nitrogen | Wednesday 29 November 2017 at 20:52 |
Nitrogen
|
WarningThis update has not been approved yet by the team. MessageOld version of wine prevented Steam from updating. Haven't tested heavily, but successfully played a few matches w/o noticeable issues. Differences@@ -5,13 +5,10 @@ # Configuration TITLE="Quake Live" WEBSITE="http://www.quakelive.com" -DEVELOPER="Quake Live" -AUTHOR="Rob Loach" +DEVELOPER="id Software" +AUTHOR="PlayOnLinux" PREFIX="quakelive" -WINE_VERSION="1.7.34" -SHORTCUT="Launcher.exe" -SHORTCUT_IMAGE="" -SHORTCUT_ARGS="" +WINE_VERSION="2.12-staging" # Start up PlayOnLinux POL_SetupWindow_Init @@ -30,6 +27,7 @@ POL_Call POL_Install_steam SHORTCUT="Steam.exe" +SHORTCUT_IMAGE="" SHORTCUT_ARGS="-applaunch 282440" # Create the Shortcut to the program New source code#!/bin/bash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Configuration TITLE="Quake Live" WEBSITE="http://www.quakelive.com" DEVELOPER="id Software" AUTHOR="PlayOnLinux" PREFIX="quakelive" WINE_VERSION="2.12-staging" # Start up PlayOnLinux POL_SetupWindow_Init POL_SetupWindow_SetID 2407 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX" # Create the Wine Prefix POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINE_VERSION" # Dependencies Set_OS "win7" POL_Call POL_Install_steam SHORTCUT="Steam.exe" SHORTCUT_IMAGE="" SHORTCUT_ARGS="-applaunch 282440" # Create the Shortcut to the program POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS" POL_SetupWindow_Close exit Replies |
petch | Friday 4 December 2015 at 23:46 |
petch
|
WarningThis update has not been approved yet by the team. MessageAdd POL_SetupWindow_SetID Add POL_Debug_Init Differences@@ -15,6 +15,9 @@ # Start up PlayOnLinux POL_SetupWindow_Init +POL_SetupWindow_SetID 2407 +POL_Debug_Init + POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX" # Create the Wine Prefix New source code#!/bin/bash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Configuration TITLE="Quake Live" WEBSITE="http://www.quakelive.com" DEVELOPER="Quake Live" AUTHOR="Rob Loach" PREFIX="quakelive" WINE_VERSION="1.7.34" SHORTCUT="Launcher.exe" SHORTCUT_IMAGE="" SHORTCUT_ARGS="" # Start up PlayOnLinux POL_SetupWindow_Init POL_SetupWindow_SetID 2407 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX" # Create the Wine Prefix POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINE_VERSION" # Dependencies Set_OS "win7" POL_Call POL_Install_steam SHORTCUT="Steam.exe" SHORTCUT_ARGS="-applaunch 282440" # Create the Shortcut to the program POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS" POL_SetupWindow_Close exit Replies |
RobLoach | Tuesday 17 November 2015 at 2:33 |
RobLoach
|
WarningThis update has not been approved yet by the team. MessageQuake Live is now only available through Steam. Differences@@ -9,9 +9,6 @@ AUTHOR="Rob Loach" PREFIX="quakelive" WINE_VERSION="1.7.34" -DOWNLOAD="http://cdn.quakelive.com/assets/2014120202/QuakeLiveSetup_841.exe" -DOWNLOAD_MD5="f9fe097fff487d95ef738e6fae45ba01" -DOWNLOAD_SETUP="QuakeLiveSetup_841.exe" SHORTCUT="Launcher.exe" SHORTCUT_IMAGE="" SHORTCUT_ARGS="" @@ -27,43 +24,13 @@ # Dependencies Set_OS "win7" -POL_Call POL_Install_corefonts -POL_Call POL_Install_dotnet35sp1 -# Select the installation method -POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL,STEAM" -if [ "$INSTALL_METHOD" = "LOCAL" ] -then - # Select and run the file - POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" - POL_SetupWindow_wait "Installation in progress." "$TITLE installation" - POL_Wine_WaitBefore "$TITLE" - POL_Wine start /unix "$APP_ANSWER" - POL_Wine_WaitExit "$TITLE" -elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] -then - # Create a temporary directory - POL_System_TmpCreate "$PREFIX" - cd "$POL_System_TmpDir" - - # Download the program - POL_Download "$DOWNLOAD" "$DOWNLOAD_MD5" - POL_SetupWindow_wait "Installation in progress." "$TITLE installation" - - # Run the setup - POL_Wine_WaitBefore "$TITLE" - POL_Wine start /unix "$POL_System_TmpDir/$DOWNLOAD_SETUP" - POL_Wine_WaitExit "$TITLE" - POL_System_TmpDelete -elif [ "$INSTALL_METHOD" = "STEAM" ] -then - POL_Call POL_Install_steam - SHORTCUT="Steam.exe" - SHORTCUT_ARGS="-applaunch 282440" -fi +POL_Call POL_Install_steam +SHORTCUT="Steam.exe" +SHORTCUT_ARGS="-applaunch 282440" # Create the Shortcut to the program POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS" POL_SetupWindow_Close -exit +exit \ No newline at end of file New source code#!/bin/bash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Configuration TITLE="Quake Live" WEBSITE="http://www.quakelive.com" DEVELOPER="Quake Live" AUTHOR="Rob Loach" PREFIX="quakelive" WINE_VERSION="1.7.34" SHORTCUT="Launcher.exe" SHORTCUT_IMAGE="" SHORTCUT_ARGS="" # Start up PlayOnLinux POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX" # Create the Wine Prefix POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINE_VERSION" # Dependencies Set_OS "win7" POL_Call POL_Install_steam SHORTCUT="Steam.exe" SHORTCUT_ARGS="-applaunch 282440" # Create the Shortcut to the program POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS" POL_SetupWindow_Close exit RepliesEdited by petch |
petch | Wednesday 21 January 2015 at 18:38 |
petch
|
WarningThis update has not been approved yet by the team. Message- Add POL_SetupWindow_SetID call - All localization support to POL_SetupWindow_browse - Remove POL_SetupWindow_wait redundant with POL_Wine_WaitBefore (that supports localization automatically) - start /unix is probably not required, and then only one of POL_Wine_WaitBefore/POL_Wine_WaitExit may be sufficient, but I can't tell for sure without testing, so left as-is Differences@@ -18,6 +18,7 @@ # Start up PlayOnLinux POL_SetupWindow_Init +POL_SetupWindow_SetID 2407 POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX" # Create the Wine Prefix @@ -35,8 +36,7 @@ if [ "$INSTALL_METHOD" = "LOCAL" ] then # Select and run the file - POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" - POL_SetupWindow_wait "Installation in progress." "$TITLE installation" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE installation" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" @@ -48,7 +48,6 @@ # Download the program POL_Download "$DOWNLOAD" "$DOWNLOAD_MD5" - POL_SetupWindow_wait "Installation in progress." "$TITLE installation" # Run the setup POL_Wine_WaitBefore "$TITLE" New source code#!/bin/bash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Configuration TITLE="Quake Live" WEBSITE="http://www.quakelive.com" DEVELOPER="Quake Live" AUTHOR="Rob Loach" PREFIX="quakelive" WINE_VERSION="1.7.34" DOWNLOAD="http://cdn.quakelive.com/assets/2014120202/QuakeLiveSetup_841.exe" DOWNLOAD_MD5="f9fe097fff487d95ef738e6fae45ba01" DOWNLOAD_SETUP="QuakeLiveSetup_841.exe" SHORTCUT="Launcher.exe" SHORTCUT_IMAGE="" SHORTCUT_ARGS="" # Start up PlayOnLinux POL_SetupWindow_Init POL_SetupWindow_SetID 2407 POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX" # Create the Wine Prefix POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINE_VERSION" # Dependencies Set_OS "win7" POL_Call POL_Install_corefonts POL_Call POL_Install_dotnet35sp1 # Select the installation method POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL,STEAM" if [ "$INSTALL_METHOD" = "LOCAL" ] then # Select and run the file POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE installation" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then # Create a temporary directory POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" # Download the program POL_Download "$DOWNLOAD" "$DOWNLOAD_MD5" # Run the setup POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$POL_System_TmpDir/$DOWNLOAD_SETUP" POL_Wine_WaitExit "$TITLE" POL_System_TmpDelete elif [ "$INSTALL_METHOD" = "STEAM" ] then POL_Call POL_Install_steam SHORTCUT="Steam.exe" SHORTCUT_ARGS="-applaunch 282440" fi # Create the Shortcut to the program POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS" POL_SetupWindow_Close exit RepliesWednesday 21 January 2015 at 18:54
Wednesday 21 January 2015 at 18:58
Wednesday 21 January 2015 at 19:15
Wednesday 21 January 2015 at 23:47
Thursday 3 December 2015 at 1:06
|
RobLoach | Wednesday 21 January 2015 at 17:19 |
RobLoach
|
WarningThis update has not been approved yet by the team. MessageInstallable from download, setup executable, or Steam. Differences@@ -0,0 +1,69 @@ +#!/bin/bash +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +# Configuration +TITLE="Quake Live" +WEBSITE="http://www.quakelive.com" +DEVELOPER="Quake Live" +AUTHOR="Rob Loach" +PREFIX="quakelive" +WINE_VERSION="1.7.34" +DOWNLOAD="http://cdn.quakelive.com/assets/2014120202/QuakeLiveSetup_841.exe" +DOWNLOAD_MD5="f9fe097fff487d95ef738e6fae45ba01" +DOWNLOAD_SETUP="QuakeLiveSetup_841.exe" +SHORTCUT="Launcher.exe" +SHORTCUT_IMAGE="" +SHORTCUT_ARGS="" + +# Start up PlayOnLinux +POL_SetupWindow_Init +POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX" + +# Create the Wine Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_System_SetArch "x86" +POL_Wine_PrefixCreate "$WINE_VERSION" + +# Dependencies +Set_OS "win7" +POL_Call POL_Install_corefonts +POL_Call POL_Install_dotnet35sp1 + +# Select the installation method +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL,STEAM" +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + # Select and run the file + POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" + POL_SetupWindow_wait "Installation in progress." "$TITLE installation" + POL_Wine_WaitBefore "$TITLE" + POL_Wine start /unix "$APP_ANSWER" + POL_Wine_WaitExit "$TITLE" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + # Create a temporary directory + POL_System_TmpCreate "$PREFIX" + cd "$POL_System_TmpDir" + + # Download the program + POL_Download "$DOWNLOAD" "$DOWNLOAD_MD5" + POL_SetupWindow_wait "Installation in progress." "$TITLE installation" + + # Run the setup + POL_Wine_WaitBefore "$TITLE" + POL_Wine start /unix "$POL_System_TmpDir/$DOWNLOAD_SETUP" + POL_Wine_WaitExit "$TITLE" + POL_System_TmpDelete +elif [ "$INSTALL_METHOD" = "STEAM" ] +then + POL_Call POL_Install_steam + SHORTCUT="Steam.exe" + SHORTCUT_ARGS="-applaunch 282440" +fi + +# Create the Shortcut to the program +POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS" + +POL_SetupWindow_Close +exit New source code#!/bin/bash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Configuration TITLE="Quake Live" WEBSITE="http://www.quakelive.com" DEVELOPER="Quake Live" AUTHOR="Rob Loach" PREFIX="quakelive" WINE_VERSION="1.7.34" DOWNLOAD="http://cdn.quakelive.com/assets/2014120202/QuakeLiveSetup_841.exe" DOWNLOAD_MD5="f9fe097fff487d95ef738e6fae45ba01" DOWNLOAD_SETUP="QuakeLiveSetup_841.exe" SHORTCUT="Launcher.exe" SHORTCUT_IMAGE="" SHORTCUT_ARGS="" # Start up PlayOnLinux POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "$DEVELOPER" "$WEBSITE" "$AUTHOR" "$PREFIX" # Create the Wine Prefix POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINE_VERSION" # Dependencies Set_OS "win7" POL_Call POL_Install_corefonts POL_Call POL_Install_dotnet35sp1 # Select the installation method POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL,STEAM" if [ "$INSTALL_METHOD" = "LOCAL" ] then # Select and run the file POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" POL_SetupWindow_wait "Installation in progress." "$TITLE installation" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then # Create a temporary directory POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" # Download the program POL_Download "$DOWNLOAD" "$DOWNLOAD_MD5" POL_SetupWindow_wait "Installation in progress." "$TITLE installation" # Run the setup POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$POL_System_TmpDir/$DOWNLOAD_SETUP" POL_Wine_WaitExit "$TITLE" POL_System_TmpDelete elif [ "$INSTALL_METHOD" = "STEAM" ] then POL_Call POL_Install_steam SHORTCUT="Steam.exe" SHORTCUT_ARGS="-applaunch 282440" fi # Create the Shortcut to the program POL_Shortcut "$SHORTCUT" "$TITLE" "$SHORTCUT_IMAGE" "$SHORTCUT_ARGS" POL_SetupWindow_Close exit RepliesWednesday 21 January 2015 at 18:14
Monday 5 October 2015 at 15:51
Wednesday 27 April 2016 at 10:23
|
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