You are here
Paladins
Informations
Creator | Message |
---|---|
golyalpha
![]()
|
WarningThis installer has not been approved yet by the team. InformationsPlatforms: Feedbacks0 0 DescriptionPOL script for installing the Paladins game Source code |
Contributions
Filters:
ContributeMember | Message |
golyalpha | Saturday 6 October 2018 at 13:31 |
golyalpha
![]()
|
WarningThis update has not been approved yet by the team. MessageHere's the WIP version of the script. There are some issues with msxml3 while installing dotnet45, which I'm trying to solve right now, but yeah... Differences@@ -0,0 +1,21 @@ +#!/usr/bin/env playonlinux-bash +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" +TITLE="Paladins" + +POL_SetupWindow_Init + +POL_SetupWindow_message "This script will install everything required for the Paladins game" "$TITLE" + +POL_SetupWindow_wait "Creating prefix. Please wait." "$TITLE" +POL_Wine_SelectPrefix "Paladins" +POL_Wine_PrefixCreate + +POL_SetupWindow_wait "Installing prerequisites. Please wait." "$TITLE" +POL_Call POL_Install_dxfullsetup +POL_Call POL_Install_dotnet45 +POL_Call POL_Install_steam +POL_Call POL_Install_steam_flags + +POL_SetupWindow_Close +exit \ No newline at end of file New source code#!/usr/bin/env playonlinux-bash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Paladins" POL_SetupWindow_Init POL_SetupWindow_message "This script will install everything required for the Paladins game" "$TITLE" POL_SetupWindow_wait "Creating prefix. Please wait." "$TITLE" POL_Wine_SelectPrefix "Paladins" POL_Wine_PrefixCreate POL_SetupWindow_wait "Installing prerequisites. Please wait." "$TITLE" POL_Call POL_Install_dxfullsetup POL_Call POL_Install_dotnet45 POL_Call POL_Install_steam POL_Call POL_Install_steam_flags POL_SetupWindow_Close exit Replies |