Champions Online

Informations

Créateur Messages
Thimoteus Anonymous

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 6798
Wine: 4.0.4

Retours d'expérience

Description

Champions Online is a free-to-play (with optional subscription) superhero-themed massively multiplayer online role-playing game by former City of Heroes/Villains developer Cryptic Studios based on the Champions license. Wikipedia. Appdb.winehq.org

Code source

#!/bin/bash
# Date : (2015-04-21)
# Distribution used to test : Arch Linux 64-bit
# Author : Thimoteus
# Licence : GPLv3
# PlayOnLinux: 4.2.8
 
#
# CHANGELOG
# [Thimoteus] (2015-04-21)
#   First script.
# [Dadu042] (2020-01-03)
#  Wine 1.7.40 -> 3.0.3
# [Dadu042] (2021-08-10)
#  Wine 3.0.3 -> 4.0.4
#  Winxp (not supported any more) -> Win 7


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
PREFIX="ChampionsOnline"
WINEVERSION="4.0.4"
TITLE="Champions Online"
EDITOR="Perfect World Entertainment Inc."
GAME_URL="http://www.arcgames.com/en/games/champions-online"
AUTHOR="Thimoteus"
DOWNLOAD_URL="http://download.perfectworld.com/co/champions_online_setup.exe"
 
#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_Debug_Init
 
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
 
# Configuration
Set_OS "win7"
 
# Installation
POL_System_TmpCreate "$PREFIX"
cd $POL_System_TmpDir
POL_Download "$DOWNLOAD_URL" "c8bd9c356f9f4aca091b235ced50da7d"
 
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE"
 
POL_Wine "champions_online_setup.exe"
POL_Wine_WaitExit "$TITLE"
 
# Create Shortcut
POL_Shortcut "Champions Online.exe" "$TITLE" "" "" "Game;"
 
# Cleanup
POL_System_TmpDelete
 
POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE"
 
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Mardi 10 Aoüt 2021 à 20:47
Dadu042

Information

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

Messages

Babhdail, please test this script then report.

Differences

@@ -11,12 +11,16 @@
 #   First script.
 # [Dadu042] (2020-01-03)
 #  Wine 1.7.40 -> 3.0.3
+# [Dadu042] (2021-08-10)
+#  Wine 3.0.3 -> 4.0.4
+#  Winxp (not supported any more) -> Win 7
+
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
  
 PREFIX="ChampionsOnline"
-WINEVERSION="3.0.3"
+WINEVERSION="4.0.4"
 TITLE="Champions Online"
 EDITOR="Perfect World Entertainment Inc."
 GAME_URL="http://www.arcgames.com/en/games/champions-online"
@@ -37,7 +41,7 @@
 POL_Wine_PrefixCreate "$WINEVERSION"
  
 # Configuration
-Set_OS "winxp"
+Set_OS "win7"
  
 # Installation
 POL_System_TmpCreate "$PREFIX"
@@ -58,4 +62,4 @@
 POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE"
  
 POL_SetupWindow_Close
-exit 0
+exit 0
\ No newline at end of file

Nouveau code source

#!/bin/bash
# Date : (2015-04-21)
# Distribution used to test : Arch Linux 64-bit
# Author : Thimoteus
# Licence : GPLv3
# PlayOnLinux: 4.2.8
 
#
# CHANGELOG
# [Thimoteus] (2015-04-21)
#   First script.
# [Dadu042] (2020-01-03)
#  Wine 1.7.40 -> 3.0.3
# [Dadu042] (2021-08-10)
#  Wine 3.0.3 -> 4.0.4
#  Winxp (not supported any more) -> Win 7


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
PREFIX="ChampionsOnline"
WINEVERSION="4.0.4"
TITLE="Champions Online"
EDITOR="Perfect World Entertainment Inc."
GAME_URL="http://www.arcgames.com/en/games/champions-online"
AUTHOR="Thimoteus"
DOWNLOAD_URL="http://download.perfectworld.com/co/champions_online_setup.exe"
 
#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_Debug_Init
 
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
 
# Configuration
Set_OS "win7"
 
# Installation
POL_System_TmpCreate "$PREFIX"
cd $POL_System_TmpDir
POL_Download "$DOWNLOAD_URL" "c8bd9c356f9f4aca091b235ced50da7d"
 
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE"
 
POL_Wine "champions_online_setup.exe"
POL_Wine_WaitExit "$TITLE"
 
# Create Shortcut
POL_Shortcut "Champions Online.exe" "$TITLE" "" "" "Game;"
 
# Cleanup
POL_System_TmpDelete
 
POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE"
 
POL_SetupWindow_Close
exit 0

Réponses

Anonymous
Jeudi 12 Aoüt 2021 à 17:52
Thank you. That seems to have solved the issue. I really need to learn to understand playonlinux better so that I can contribute instead of just report issues.
Babhdail Lundi 9 Aoüt 2021 à 22:11
Babhdail Anonymous

Messages

I attempted to install this on 8/9/2021. During installation I got a message that Windows XP is no longer supported.

Réponses

Dadu042 Vendredi 3 Janvier 2020 à 20:25
Dadu042

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -5,12 +5,18 @@
 # Licence : GPLv3
 # PlayOnLinux: 4.2.8
  
- 
+#
+# CHANGELOG
+# [Thimoteus] (2015-04-21)
+#   First script.
+# [Dadu042] (2020-01-03)
+#  Wine 1.7.40 -> 3.0.3
+
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
  
 PREFIX="ChampionsOnline"
-WINEVERSION="1.7.40"
+WINEVERSION="3.0.3"
 TITLE="Champions Online"
 EDITOR="Perfect World Entertainment Inc."
 GAME_URL="http://www.arcgames.com/en/games/champions-online"
@@ -44,7 +50,7 @@
 POL_Wine_WaitExit "$TITLE"
  
 # Create Shortcut
-POL_Shortcut "Champions Online.exe" "$TITLE"
+POL_Shortcut "Champions Online.exe" "$TITLE" "" "" "Game;"
  
 # Cleanup
 POL_System_TmpDelete

Nouveau code source

#!/bin/bash
# Date : (2015-04-21)
# Distribution used to test : Arch Linux 64-bit
# Author : Thimoteus
# Licence : GPLv3
# PlayOnLinux: 4.2.8
 
#
# CHANGELOG
# [Thimoteus] (2015-04-21)
#   First script.
# [Dadu042] (2020-01-03)
#  Wine 1.7.40 -> 3.0.3

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
PREFIX="ChampionsOnline"
WINEVERSION="3.0.3"
TITLE="Champions Online"
EDITOR="Perfect World Entertainment Inc."
GAME_URL="http://www.arcgames.com/en/games/champions-online"
AUTHOR="Thimoteus"
DOWNLOAD_URL="http://download.perfectworld.com/co/champions_online_setup.exe"
 
#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_Debug_Init
 
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
 
# Configuration
Set_OS "winxp"
 
# Installation
POL_System_TmpCreate "$PREFIX"
cd $POL_System_TmpDir
POL_Download "$DOWNLOAD_URL" "c8bd9c356f9f4aca091b235ced50da7d"
 
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE"
 
POL_Wine "champions_online_setup.exe"
POL_Wine_WaitExit "$TITLE"
 
# Create Shortcut
POL_Shortcut "Champions Online.exe" "$TITLE" "" "" "Game;"
 
# Cleanup
POL_System_TmpDelete
 
POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE"
 
POL_SetupWindow_Close
exit 0

Réponses

Thimoteus Dimanche 19 Juillet 2015 à 15:14
Thimoteus Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -0,0 +1,55 @@
+#!/bin/bash
+# Date : (2015-04-21)
+# Distribution used to test : Arch Linux 64-bit
+# Author : Thimoteus
+# Licence : GPLv3
+# PlayOnLinux: 4.2.8
+ 
+ 
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+ 
+PREFIX="ChampionsOnline"
+WINEVERSION="1.7.40"
+TITLE="Champions Online"
+EDITOR="Perfect World Entertainment Inc."
+GAME_URL="http://www.arcgames.com/en/games/champions-online"
+AUTHOR="Thimoteus"
+DOWNLOAD_URL="http://download.perfectworld.com/co/champions_online_setup.exe"
+ 
+#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_Debug_Init
+ 
+# Presentation
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+ 
+# Create Prefix
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINEVERSION"
+ 
+# Configuration
+Set_OS "winxp"
+ 
+# Installation
+POL_System_TmpCreate "$PREFIX"
+cd $POL_System_TmpDir
+POL_Download "$DOWNLOAD_URL" "c8bd9c356f9f4aca091b235ced50da7d"
+ 
+POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE"
+ 
+POL_Wine "champions_online_setup.exe"
+POL_Wine_WaitExit "$TITLE"
+ 
+# Create Shortcut
+POL_Shortcut "Champions Online.exe" "$TITLE"
+ 
+# Cleanup
+POL_System_TmpDelete
+ 
+POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE"
+ 
+POL_SetupWindow_Close
+exit 0

Nouveau code source

#!/bin/bash
# Date : (2015-04-21)
# Distribution used to test : Arch Linux 64-bit
# Author : Thimoteus
# Licence : GPLv3
# PlayOnLinux: 4.2.8
 
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
PREFIX="ChampionsOnline"
WINEVERSION="1.7.40"
TITLE="Champions Online"
EDITOR="Perfect World Entertainment Inc."
GAME_URL="http://www.arcgames.com/en/games/champions-online"
AUTHOR="Thimoteus"
DOWNLOAD_URL="http://download.perfectworld.com/co/champions_online_setup.exe"
 
#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_Debug_Init
 
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
 
# Configuration
Set_OS "winxp"
 
# Installation
POL_System_TmpCreate "$PREFIX"
cd $POL_System_TmpDir
POL_Download "$DOWNLOAD_URL" "c8bd9c356f9f4aca091b235ced50da7d"
 
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE"
 
POL_Wine "champions_online_setup.exe"
POL_Wine_WaitExit "$TITLE"
 
# Create Shortcut
POL_Shortcut "Champions Online.exe" "$TITLE"
 
# Cleanup
POL_System_TmpDelete
 
POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE"
 
POL_SetupWindow_Close
exit 0

Réponses

Jeudi 23 Juillet 2015 à 17:55
this Champions Online url no longer works:
Jeudi 23 Juillet 2015 à 17:55
http://download.perfectworld.com/co/champions_online_setup.exe
Jeudi 23 Juillet 2015 à 18:06
Nevermind, the URL is working as long as you don't copy/paste it into the address bar.