The King of Fighters XIV Steam Version

Informations

Creator Message
andrelima175

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 2855
Wine: 2.22

Feedbacks

Description

The 14º classic fighting game came with graphics improvements and a lot of characters. They maintain the classic 2d fighting with 3 on 3 characters. 

Made by SNK, Deep Silver and Atlus. 

 

Source code

#!/bin/bash
# Date: 18/04/2017
# Last revision: see changelog
# Wine version used: 2.22
# Distribution tested: Ubuntu 16.04.4 x64
# Only for: http://www.playonlinux.com
# 
# CHANGELOG:
# andrelima175 (2010-04-21)
#   First script. Distribution used to test : Ubuntu 9.10.
# Dadu042 (2019-08-01)
#   Wine 2.20-staging -> 2.22  (because usually better)

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="The_King_of_Fighters_XIV"
PREFIX="KOFXIV"
WINEVERSION="2.22"
EDITOR="SNK"
GAME_URL="https://www.atlus.com/kofxiv"
STEAM_ID="571260"
 
        POL_SetupWindow_Init
        POL_Debug_Init
 
        POL_SetupWindow_presentation "$TITLE" "SNK" "GAME_URL" "STEAM"
        POL_Wine_SelectPrefix "$PREFIX"
 
        POL_System_SetArch "x64"
        POL_Wine_PrefixCreate "$WINEVERSION"
 
#Installing dependencies
 
        POL_Call POL_Install_vcrun2013
        POL_Call POL_Install_dxfullsetup
        POL_SetupWindow_VMS
        POL_Wine_SetVideoDriver
 
        POL_SetupWindow_InstallMethod "STEAM,DVD"
 
if  [ "$INSTALL_METHOD" == "STEAM" ]; then
 
        POL_Call POL_Install_steam
        POL_SetupWindow_message "$(eval_gettext 'After steam install, login & close steam')"
        POL_Call POL_Install_steam_flags "$STEAM_ID"
 
#Installing the game by Steam
 
fi
 
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
        POL_Wine_WaitExit "$TITLE"
 
#Installation  - DVD
 
if  [ "$INSTALL_METHOD" == "DVD" ]; then
 
#Installing the game
#If doesn't work, choose the correct file manually.
 
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "setup.exe"
        POL_Wine start /unix "$CDROM/setup.exe"
        POL_Wine_WaitExit "$TITLE"
 
fi
 
        POL_Shortcut
        POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Message
Dadu042 Thursday 1 August 2019 at 23:32
Dadu042

Information

This update has been approved by the team.

Message

See changelog. Not tested.

Differences

@@ -0,0 +1,72 @@
+#!/bin/bash
+# Date: 18/04/2017
+# Last revision: see changelog
+# Wine version used: 2.22
+# Distribution tested: Ubuntu 16.04.4 x64
+# Only for: http://www.playonlinux.com
+# 
+# CHANGELOG:
+# andrelima175 (2010-04-21)
+#   First script. Distribution used to test : Ubuntu 9.10.
+# Dadu042 (2019-08-01)
+#   Wine 2.20-staging -> 2.22  (because usually better)
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+ 
+TITLE="The_King_of_Fighters_XIV"
+PREFIX="KOFXIV"
+WINEVERSION="2.22"
+EDITOR="SNK"
+GAME_URL="https://www.atlus.com/kofxiv"
+STEAM_ID="571260"
+ 
+        POL_SetupWindow_Init
+        POL_Debug_Init
+ 
+        POL_SetupWindow_presentation "$TITLE" "SNK" "GAME_URL" "STEAM"
+        POL_Wine_SelectPrefix "$PREFIX"
+ 
+        POL_System_SetArch "x64"
+        POL_Wine_PrefixCreate "$WINEVERSION"
+ 
+#Installing dependencies
+ 
+        POL_Call POL_Install_vcrun2013
+        POL_Call POL_Install_dxfullsetup
+        POL_SetupWindow_VMS
+        POL_Wine_SetVideoDriver
+ 
+        POL_SetupWindow_InstallMethod "STEAM,DVD"
+ 
+if  [ "$INSTALL_METHOD" == "STEAM" ]; then
+ 
+        POL_Call POL_Install_steam
+        POL_SetupWindow_message "$(eval_gettext 'After steam install, login & close steam')"
+        POL_Call POL_Install_steam_flags "$STEAM_ID"
+ 
+#Installing the game by Steam
+ 
+fi
+ 
+        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
+        POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
+        POL_Wine_WaitExit "$TITLE"
+ 
+#Installation  - DVD
+ 
+if  [ "$INSTALL_METHOD" == "DVD" ]; then
+ 
+#Installing the game
+#If doesn't work, choose the correct file manually.
+ 
+        POL_SetupWindow_cdrom
+        POL_SetupWindow_check_cdrom "setup.exe"
+        POL_Wine start /unix "$CDROM/setup.exe"
+        POL_Wine_WaitExit "$TITLE"
+ 
+fi
+ 
+        POL_Shortcut
+        POL_SetupWindow_Close
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date: 18/04/2017
# Last revision: see changelog
# Wine version used: 2.22
# Distribution tested: Ubuntu 16.04.4 x64
# Only for: http://www.playonlinux.com
# 
# CHANGELOG:
# andrelima175 (2010-04-21)
#   First script. Distribution used to test : Ubuntu 9.10.
# Dadu042 (2019-08-01)
#   Wine 2.20-staging -> 2.22  (because usually better)

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="The_King_of_Fighters_XIV"
PREFIX="KOFXIV"
WINEVERSION="2.22"
EDITOR="SNK"
GAME_URL="https://www.atlus.com/kofxiv"
STEAM_ID="571260"
 
        POL_SetupWindow_Init
        POL_Debug_Init
 
        POL_SetupWindow_presentation "$TITLE" "SNK" "GAME_URL" "STEAM"
        POL_Wine_SelectPrefix "$PREFIX"
 
        POL_System_SetArch "x64"
        POL_Wine_PrefixCreate "$WINEVERSION"
 
#Installing dependencies
 
        POL_Call POL_Install_vcrun2013
        POL_Call POL_Install_dxfullsetup
        POL_SetupWindow_VMS
        POL_Wine_SetVideoDriver
 
        POL_SetupWindow_InstallMethod "STEAM,DVD"
 
if  [ "$INSTALL_METHOD" == "STEAM" ]; then
 
        POL_Call POL_Install_steam
        POL_SetupWindow_message "$(eval_gettext 'After steam install, login & close steam')"
        POL_Call POL_Install_steam_flags "$STEAM_ID"
 
#Installing the game by Steam
 
fi
 
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
        POL_Wine_WaitExit "$TITLE"
 
#Installation  - DVD
 
if  [ "$INSTALL_METHOD" == "DVD" ]; then
 
#Installing the game
#If doesn't work, choose the correct file manually.
 
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "setup.exe"
        POL_Wine start /unix "$CDROM/setup.exe"
        POL_Wine_WaitExit "$TITLE"
 
fi
 
        POL_Shortcut
        POL_SetupWindow_Close
exit 0

Replies

andrelima175 Saturday 21 April 2018 at 5:43
andrelima175

Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

I made some fixes in the script. Try it and change if its not working for you. wink

 

 

Differences

@@ -0,0 +1,67 @@
+#!/bin/bash
+# Date: 18/04/2017
+# Last revision: 20/04/2017
+# Wine version used: 2.20 Staging
+# Distribution tested: Ubuntu 16.04.4 x64
+# Only for: http://www.playonlinux.com
+
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+TITLE="The_King_of_Fighters_XIV"
+PREFIX="KOFXIV"
+WINEVERSION="2.20-staging"
+EDITOR="SNK"
+GAME_URL="https://www.atlus.com/kofxiv"
+STEAM_ID="571260"
+
+	POL_SetupWindow_Init
+	POL_Debug_Init
+
+	POL_SetupWindow_presentation "$TITLE" "SNK" "GAME_URL" "STEAM"
+	POL_Wine_SelectPrefix "$PREFIX"
+
+	POL_System_SetArch "x64"
+	POL_Wine_PrefixCreate "$WINEVERSION"
+
+#Installing dependencies
+
+	POL_Call POL_Install_vcrun2013
+	POL_Call POL_Install_dxfullsetup
+	POL_SetupWindow_VMS
+	POL_Wine_SetVideoDriver
+
+	POL_SetupWindow_InstallMethod "STEAM,DVD"
+
+if  [ "$INSTALL_METHOD" == "STEAM" ]; then
+
+	POL_Call POL_Install_steam
+	POL_SetupWindow_message "$(eval_gettext 'After steam install, login & close steam')"
+	POL_Call POL_Install_steam_flags "$STEAM_ID"
+
+#Installing the game by Steam
+
+fi
+
+	cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
+	POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
+	POL_Wine_WaitExit "$TITLE"
+
+#Installation  - DVD
+
+if  [ "$INSTALL_METHOD" == "DVD" ]; then
+
+#Installing the game
+#If doesn't work, choose the correct file manually.
+
+	POL_SetupWindow_cdrom
+        POL_SetupWindow_check_cdrom "setup.exe"
+        POL_Wine start /unix "$CDROM/setup.exe"
+        POL_Wine_WaitExit "$TITLE"
+
+fi
+
+	POL_Shortcut 
+	POL_SetupWindow_Close
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date: 18/04/2017
# Last revision: 20/04/2017
# Wine version used: 2.20 Staging
# Distribution tested: Ubuntu 16.04.4 x64
# Only for: http://www.playonlinux.com


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="The_King_of_Fighters_XIV"
PREFIX="KOFXIV"
WINEVERSION="2.20-staging"
EDITOR="SNK"
GAME_URL="https://www.atlus.com/kofxiv"
STEAM_ID="571260"

        POL_SetupWindow_Init
        POL_Debug_Init

        POL_SetupWindow_presentation "$TITLE" "SNK" "GAME_URL" "STEAM"
        POL_Wine_SelectPrefix "$PREFIX"

        POL_System_SetArch "x64"
        POL_Wine_PrefixCreate "$WINEVERSION"

#Installing dependencies

        POL_Call POL_Install_vcrun2013
        POL_Call POL_Install_dxfullsetup
        POL_SetupWindow_VMS
        POL_Wine_SetVideoDriver

        POL_SetupWindow_InstallMethod "STEAM,DVD"

if  [ "$INSTALL_METHOD" == "STEAM" ]; then

        POL_Call POL_Install_steam
        POL_SetupWindow_message "$(eval_gettext 'After steam install, login & close steam')"
        POL_Call POL_Install_steam_flags "$STEAM_ID"

#Installing the game by Steam

fi

        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
        POL_Wine_WaitExit "$TITLE"

#Installation  - DVD

if  [ "$INSTALL_METHOD" == "DVD" ]; then

#Installing the game
#If doesn't work, choose the correct file manually.

        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "setup.exe"
        POL_Wine start /unix "$CDROM/setup.exe"
        POL_Wine_WaitExit "$TITLE"

fi

        POL_Shortcut 
        POL_SetupWindow_Close
exit 0

Replies

andrelima175 Wednesday 18 April 2018 at 2:37
andrelima175

Warning

This update has not been approved yet by the team.
Use it at your own risk

Differences

@@ -0,0 +1,67 @@
+#!/bin/bash
+# Date: 18/04/2017
+# Last revision: 18/04/2017
+# Wine version used: 2.20 Staging
+# Distribution tested: Ubuntu 16.04.4 x64
+# Author: andrelima175
+# License: retail
+# Only for: http://www.playonlinux.com
+
+["$PLAYONLINUX" = ""] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+TITLE="The King of Fighters XIV
+PREFIX="KOF XIV"
+WORKING_WINE_VERSION="2.20 Staging"
+EDITOR="SNK"
+GAME_URL="https://www.atlus.com/kofxiv"
+author="andrelima175
+
+#Starting Script
+POL_SetupWindow_Init
+
+#Debugging API
+POL_Debug_Init
+
+POL_SetupWindow_presentation "$TITLE" "EDITOR" "GAME_URL" "AUTHOR" "PREFIX"
+
+POL_Wine_SelectPrefix "$PREFIX"
+
+POL_System_SetArch "x64"
+
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+
+POL_System_TmpCreate
+
+POL_SetupWindow_InstallMethod "DVD,STEAM"
+
+#Dependencies
+
+POL_Call POL_Install_vcrun2013
+POL_Call POL_Install_dxfullsetup
+
+#Installation - Steam Method
+
+if ["INSTALL_METHOD" == "STEAM"]; then
+
+POL_Call POL_Install_steam
+
+fi
+
+POL_SetupWindow_Message "$(eval_gettext 'Finish all the installation first. Close the steam.')"
+POL_SetupWindow_Message "$(eval_gettext 'After all open steam and download the game')"
+
+#Installation  - DVD Method
+
+if ["INSTALL_METHOD" == "DVD"] then
+
+cd "$HOME"
+POL_SetupWindow_browse "$(eval_gettext 'Please select the file to install')" "$TITLE"
+POL_Wine start /unix "$SETUP_EXE"
+POL_Wine_WaitExit "$TITLE"
+
+fi 
+POL_System_TmpDelete
+POL_Shortcut
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date: 18/04/2017
# Last revision: 18/04/2017
# Wine version used: 2.20 Staging
# Distribution tested: Ubuntu 16.04.4 x64
# Author: andrelima175
# License: retail
# Only for: http://www.playonlinux.com

["$PLAYONLINUX" = ""] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="The King of Fighters XIV
PREFIX="KOF XIV"
WORKING_WINE_VERSION="2.20 Staging"
EDITOR="SNK"
GAME_URL="https://www.atlus.com/kofxiv"
author="andrelima175

#Starting Script
POL_SetupWindow_Init

#Debugging API
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "EDITOR" "GAME_URL" "AUTHOR" "PREFIX"

POL_Wine_SelectPrefix "$PREFIX"

POL_System_SetArch "x64"

POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

POL_System_TmpCreate

POL_SetupWindow_InstallMethod "DVD,STEAM"

#Dependencies

POL_Call POL_Install_vcrun2013
POL_Call POL_Install_dxfullsetup

#Installation - Steam Method

if ["INSTALL_METHOD" == "STEAM"]; then

POL_Call POL_Install_steam

fi

POL_SetupWindow_Message "$(eval_gettext 'Finish all the installation first. Close the steam.')"
POL_SetupWindow_Message "$(eval_gettext 'After all open steam and download the game')"

#Installation  - DVD Method

if ["INSTALL_METHOD" == "DVD"] then

cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the file to install')" "$TITLE"
POL_Wine start /unix "$SETUP_EXE"
POL_Wine_WaitExit "$TITLE"

fi 
POL_System_TmpDelete
POL_Shortcut
POL_SetupWindow_Close
exit 0

Replies