Pirate 101

Informations

Créateur Messages
jhersey Anonymous

Attention

This installer is a beta script. It means that it might not work as expected

Informations

Plate-formes :
Téléchargements : 7289
Wine: 4.0.2

Retours d'expérience

Description

Pirate themed MMORPG, 2012.

Wikipedia. Appdb.winehq.org

Code source

#!/bin/bash
# Date : (2014-01-29 ??-??)
# Wine version used : 4.0.2
# Distribution used to test : Ubuntu 19.04 amd64
# PlayOnLinux : 4.2.12
# Author : Joseph Hersey
  
# CHANGELOG
# [Joseph Hersey] (2014-01-29)
#   First script. Used Wine 1.7.11 x86
# [Dadu042] (2019-10-27)
#   Repaired the installer
#   Architecture x86 -> auto
#   REQ POL v4.3.4+
#   Wine system -> 4.0.2

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
PREFIX="Pirate101-t"
TITLE="Pirate 101"
EDITOR="KingsIsle Entertainment, Inc."
GAME_URL="https://www.pirate101.com"
AUTHOR="Joseph Hersey"
WORKING_WINE_VERSION="4.0.2"

# Initialization
#POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 1935
POL_Debug_Init
  
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"

# Determine Architecture
POL_System_SetArch "auto"
# POL_System_SetArch "x86"

POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

POL_Call POL_Install_gecko

# Installation - Determine if user wants to download or use a local copy.
 
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" # Choose method of installation
 if [ "$INSTALL_METHOD" = "LOCAL" ]
   then
    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" # Browse for File
  
    POL_Wine_WaitBefore "$TITLE"
    POL_Wine "$APP_ANSWER" # Install Application
  
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    POL_System_TmpCreate "$PREFIX"  # Create temp folder
    cd "$POL_System_TmpDir"
    POL_Download "https://www.pirate101.com/downloadGame/OtherDownload" # Download installer
    mv OtherDownload InstallPirate101.exe # Setup will give a feature transfer error if not named InstallPirate101.exe 
    POL_Wine_WaitBefore "$TITLE"
    POL_Wine "InstallPirate101.exe" # Install Application
  
    POL_System_TmpDelete
fi
  
# Create Shortcuts
POL_Shortcut "Pirate101.exe" "$TITLE" "" "" "Game;RolePlaying;"
  
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Mercredi 30 Octobre 2019 à 23:49
Dadu042

Information

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

Messages

Repaired the installer, not tested further.

Differences

@@ -1,45 +1,60 @@
 #!/bin/bash
 # Date : (2014-01-29 ??-??)
-# Wine version used : 1.7.11 x86
-# Distribution used to test : Ubuntu 13.10 x86_64
-# PlayOnLinux : 4.2.1
+# Wine version used : 4.0.2
+# Distribution used to test : Ubuntu 19.04 amd64
+# PlayOnLinux : 4.2.12
 # Author : Joseph Hersey
- 
+  
 # CHANGELOG
- 
+# [Joseph Hersey] (2014-01-29)
+#   First script. Used Wine 1.7.11 x86
+# [Dadu042] (2019-10-27)
+#   Repaired the installer
+#   Architecture x86 -> auto
+#   REQ POL v4.3.4+
+#   Wine system -> 4.0.2
+
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
- 
+  
 PREFIX="Pirate101-t"
 TITLE="Pirate 101"
 EDITOR="KingsIsle Entertainment, Inc."
 GAME_URL="https://www.pirate101.com"
 AUTHOR="Joseph Hersey"
- 
+WORKING_WINE_VERSION="4.0.2"
+
 # Initialization
 #POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
 POL_SetupWindow_Init
 POL_SetupWindow_SetID 1935
 POL_Debug_Init
- 
+  
 # Presentation
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
- 
-# Create Prefix
-POL_System_SetArch "x86" # Game crashes if installed with x86_64
+
+POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
+
 POL_Wine_SelectPrefix "$PREFIX"
-POL_Wine_PrefixCreate
- 
-# Installation - Determine if user wants to download or use a local copy.
 
+# Determine Architecture
+POL_System_SetArch "auto"
+# POL_System_SetArch "x86"
+
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+
+POL_Call POL_Install_gecko
+
+# Installation - Determine if user wants to download or use a local copy.
+ 
 POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" # Choose method of installation
  if [ "$INSTALL_METHOD" = "LOCAL" ]
    then
     POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" # Browse for File
- 
+  
     POL_Wine_WaitBefore "$TITLE"
     POL_Wine "$APP_ANSWER" # Install Application
- 
+  
 elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
 then
     POL_System_TmpCreate "$PREFIX"  # Create temp folder
@@ -48,12 +63,12 @@
     mv OtherDownload InstallPirate101.exe # Setup will give a feature transfer error if not named InstallPirate101.exe 
     POL_Wine_WaitBefore "$TITLE"
     POL_Wine "InstallPirate101.exe" # Install Application
- 
+  
     POL_System_TmpDelete
 fi
- 
+  
 # Create Shortcuts
 POL_Shortcut "Pirate101.exe" "$TITLE" "" "" "Game;RolePlaying;"
- 
+  
 POL_SetupWindow_Close
 exit 0
\ No newline at end of file

Nouveau code source

#!/bin/bash
# Date : (2014-01-29 ??-??)
# Wine version used : 4.0.2
# Distribution used to test : Ubuntu 19.04 amd64
# PlayOnLinux : 4.2.12
# Author : Joseph Hersey
  
# CHANGELOG
# [Joseph Hersey] (2014-01-29)
#   First script. Used Wine 1.7.11 x86
# [Dadu042] (2019-10-27)
#   Repaired the installer
#   Architecture x86 -> auto
#   REQ POL v4.3.4+
#   Wine system -> 4.0.2

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
PREFIX="Pirate101-t"
TITLE="Pirate 101"
EDITOR="KingsIsle Entertainment, Inc."
GAME_URL="https://www.pirate101.com"
AUTHOR="Joseph Hersey"
WORKING_WINE_VERSION="4.0.2"

# Initialization
#POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 1935
POL_Debug_Init
  
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"

# Determine Architecture
POL_System_SetArch "auto"
# POL_System_SetArch "x86"

POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

POL_Call POL_Install_gecko

# Installation - Determine if user wants to download or use a local copy.
 
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" # Choose method of installation
 if [ "$INSTALL_METHOD" = "LOCAL" ]
   then
    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" # Browse for File
  
    POL_Wine_WaitBefore "$TITLE"
    POL_Wine "$APP_ANSWER" # Install Application
  
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    POL_System_TmpCreate "$PREFIX"  # Create temp folder
    cd "$POL_System_TmpDir"
    POL_Download "https://www.pirate101.com/downloadGame/OtherDownload" # Download installer
    mv OtherDownload InstallPirate101.exe # Setup will give a feature transfer error if not named InstallPirate101.exe 
    POL_Wine_WaitBefore "$TITLE"
    POL_Wine "InstallPirate101.exe" # Install Application
  
    POL_System_TmpDelete
fi
  
# Create Shortcuts
POL_Shortcut "Pirate101.exe" "$TITLE" "" "" "Game;RolePlaying;"
  
POL_SetupWindow_Close
exit 0

Réponses