DC Universe Online

Informations

Créateur Messages
Robbz

Attention

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

Informations

Plate-formes :
Téléchargements : 30012
Wine: 3.0.3

Retours d'expérience

Description

Free-to-play action combat MMO game. Wikipedia.

PCGamingWiki. Appdb.winehq.org

Captures d'écran

MiniatureMiniatureMiniature

Code source

#!/bin/bash
# Date : (2013-03-15 ??:??)
# Last revision : (2018-02-08 17:39)
# Distribution used to test : Ubuntu 17.04 64bit, Ubuntu 18.04 x64
# Author : Robbz, LinuxScripter
# Licence : GPLv3
 
# CHANGELOG
# [SuperPlumus] (2013-07-24 11-26)
#   Update gettext messages
# [LinuxScripter] (2018-02-08 17:39)
#   Changed wine version ("1.5.28-GuildWars2" -> 3.0.0)
# [LinuxScripter] (2020-10-23 20:00)
#   Wine 3.0.0 -> 3.0.3 (more common). No tested.
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="DC Universe Online"
PREFIX="DCUniverseOnline"
WORKING_WINE_VERSION="3.0.3"
PUBLISHER="Sony Entertainment"
GAME_URL="http://www.dcuniverseonline.com/"
AUTHOR="Robbz and LinuxScripter"
 
# Setup
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
 
POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$PREFIX"
 
# Components
POL_Call POL_Install_dotnet40
POL_Call POL_Install_vcrun2012
POL_Call POL_Install_d3dx9_36
POL_Wine_OverrideDLL "native,builtin" "riched20"
 
# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
 
# Download and instalation
cd "$POL_System_TmpDir"
POL_Download "https://launch.daybreakgames.com/installer/DCUO_setup.exe"
POL_Wine start /unix "$POL_System_TmpDir/DCUO_setup.exe"
POL_Wine_WaitExit "DCUO_setup.exe"
 
# Create Shortcuts
POL_Shortcut "LaunchPad.exe" "$TITLE" "$TITLE.png" "" "Game;"
 
POL_System_TmpDelete
POL_SetupWindow_Close
 
exit 0

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Vendredi 23 Octobre 2020 à 21:25
Dadu042

Information

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

Differences

@@ -9,14 +9,16 @@
 # [SuperPlumus] (2013-07-24 11-26)
 #   Update gettext messages
 # [LinuxScripter] (2018-02-08 17:39)
-#   Changed wine version
+#   Changed wine version ("1.5.28-GuildWars2" -> 3.0.0)
+# [LinuxScripter] (2020-10-23 20:00)
+#   Wine 3.0.0 -> 3.0.3 (more common). No tested.
  
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
  
 TITLE="DC Universe Online"
 PREFIX="DCUniverseOnline"
-WORKING_WINE_VERSION="3.0"
+WORKING_WINE_VERSION="3.0.3"
 PUBLISHER="Sony Entertainment"
 GAME_URL="http://www.dcuniverseonline.com/"
 AUTHOR="Robbz and LinuxScripter"
@@ -48,7 +50,7 @@
 POL_Wine_WaitExit "DCUO_setup.exe"
  
 # Create Shortcuts
-POL_Shortcut "LaunchPad.exe" "$TITLE" "$TITLE.png"
+POL_Shortcut "LaunchPad.exe" "$TITLE" "$TITLE.png" "" "Game;"
  
 POL_System_TmpDelete
 POL_SetupWindow_Close

Nouveau code source

#!/bin/bash
# Date : (2013-03-15 ??:??)
# Last revision : (2018-02-08 17:39)
# Distribution used to test : Ubuntu 17.04 64bit, Ubuntu 18.04 x64
# Author : Robbz, LinuxScripter
# Licence : GPLv3
 
# CHANGELOG
# [SuperPlumus] (2013-07-24 11-26)
#   Update gettext messages
# [LinuxScripter] (2018-02-08 17:39)
#   Changed wine version ("1.5.28-GuildWars2" -> 3.0.0)
# [LinuxScripter] (2020-10-23 20:00)
#   Wine 3.0.0 -> 3.0.3 (more common). No tested.
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="DC Universe Online"
PREFIX="DCUniverseOnline"
WORKING_WINE_VERSION="3.0.3"
PUBLISHER="Sony Entertainment"
GAME_URL="http://www.dcuniverseonline.com/"
AUTHOR="Robbz and LinuxScripter"
 
# Setup
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
 
POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$PREFIX"
 
# Components
POL_Call POL_Install_dotnet40
POL_Call POL_Install_vcrun2012
POL_Call POL_Install_d3dx9_36
POL_Wine_OverrideDLL "native,builtin" "riched20"
 
# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
 
# Download and instalation
cd "$POL_System_TmpDir"
POL_Download "https://launch.daybreakgames.com/installer/DCUO_setup.exe"
POL_Wine start /unix "$POL_System_TmpDir/DCUO_setup.exe"
POL_Wine_WaitExit "DCUO_setup.exe"
 
# Create Shortcuts
POL_Shortcut "LaunchPad.exe" "$TITLE" "$TITLE.png" "" "Game;"
 
POL_System_TmpDelete
POL_SetupWindow_Close
 
exit 0

Réponses

seanzone Lundi 13 Juillet 2020 à 12:36
seanzone Anonymous

Messages

I tried to install it but stopped downloading while Downloading netfx_Core.mzz. Just froze

Réponses

Dadu042 Jeudi 25 Juillet 2019 à 16:14
Dadu042

Messages

Installation failed (stuck) at 50% downloading (on file: Windows6.0-KB956250, it's Microsoft .NET Framework 3.5 SP1).
The file './playonlinux/logs/DC Univere Online.log'   size is 1.1 MB ! (lots of issues inside).

Wine : 3.0. POL : v4.3.4. OS : Kubuntu 18.04.   Same issue with Wine 4.0.1

 

I know a other software using the 'Launchpad' game launcher (made by Daybreak Game Company). It's PlanetSide 2, and it can not run currently.

Réponses

Anonymous
Mercredi 13 Novembre 2019 à 0:11
Lutris will install the launcher fine, it appears to use mono instead of.net. The game however still will not launch and I've not yet figured it out.. which is why I am here.

Edité par Dadu042

LinuxScripter Mardi 13 Février 2018 à 20:13
LinuxScripter Anonymous

Warning

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

Messages

I've managed to get this game to work and played one mission.
 

Differences

@@ -1,62 +1,56 @@
 #!/bin/bash
-# Date : (2013-03-15 ??-??)
-# Last revision : (2013-07-24 11-26)
-# Distribution used to test : Lubuntu 64
-# Author : Robbz
+# Date : (2013-03-15 ??:??)
+# Last revision : (2018-02-08 17:39)
+# Distribution used to test : Ubuntu 17.04 64bit, Ubuntu 18.04 x64
+# Author : Robbz, LinuxScripter
 # Licence : GPLv3
-# PlayOnLinux:  playonlinux-4.1.9-2
-
+ 
 # CHANGELOG
 # [SuperPlumus] (2013-07-24 11-26)
 #   Update gettext messages
-
+# [LinuxScripter] (2018-02-08 17:39)
+#   Changed wine version
+ 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
-
+ 
 TITLE="DC Universe Online"
 PREFIX="DCUniverseOnline"
-WORKING_WINE_VERSION="1.5.28-GuildWars2"
+WORKING_WINE_VERSION="3.0"
 PUBLISHER="Sony Entertainment"
 GAME_URL="http://www.dcuniverseonline.com/"
-AUTHOR="Robbz"
-
+AUTHOR="Robbz and LinuxScripter"
+ 
 # Setup
 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
-
+ 
 POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "$AUTHOR" "$PREFIX"
-
+ 
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
-
+POL_System_TmpCreate "$PREFIX"
+ 
 # Components
-POL_Call POL_Install_vcrun2008
-POL_Call POL_Install_vcrun2005
-POL_Call POL_Install_d3dx9_43
-POL_Call POL_Install_d3dcompiler_43
-POL_Call POL_Install_dxdiag
-POL_Call POL_Install_dxfullsetup
-POL_Call POL_Install_xact
-POL_Call POL_Install_ie8
+POL_Call POL_Install_dotnet40
+POL_Call POL_Install_vcrun2012
+POL_Call POL_Install_d3dx9_36
 POL_Wine_OverrideDLL "native,builtin" "riched20"
-
+ 
 # Asking about memory size of graphic card
 POL_SetupWindow_VMS $GAME_VMS
-
-# Download
-cd "$WINEPREFIX/drive_c"
+ 
+# Download and instalation
+cd "$POL_System_TmpDir"
 POL_Download "https://launch.daybreakgames.com/installer/DCUO_setup.exe"
-
-POL_SetupWindow_message "$(eval_gettext 'Attention: After installation is complete, the patcher will load. Please close the patcher before logging in to complete the installation. After this, you can run "$TITLE" when setup is done')" "$TITLE"
-
-POL_Wine_WaitBefore "$TITLE"
-POL_Wine start /unix "$WINEPREFIX/drive_c/DCUO_setup.exe"
-POL_Wine_WaitExit "$TITLE"
-
+POL_Wine start /unix "$POL_System_TmpDir/DCUO_setup.exe"
+POL_Wine_WaitExit "DCUO_setup.exe"
+ 
 # Create Shortcuts
 POL_Shortcut "LaunchPad.exe" "$TITLE" "$TITLE.png"
-
+ 
+POL_System_TmpDelete
 POL_SetupWindow_Close
-
+ 
 exit 0
\ No newline at end of file

Nouveau code source

#!/bin/bash
# Date : (2013-03-15 ??:??)
# Last revision : (2018-02-08 17:39)
# Distribution used to test : Ubuntu 17.04 64bit, Ubuntu 18.04 x64
# Author : Robbz, LinuxScripter
# Licence : GPLv3
 
# CHANGELOG
# [SuperPlumus] (2013-07-24 11-26)
#   Update gettext messages
# [LinuxScripter] (2018-02-08 17:39)
#   Changed wine version
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="DC Universe Online"
PREFIX="DCUniverseOnline"
WORKING_WINE_VERSION="3.0"
PUBLISHER="Sony Entertainment"
GAME_URL="http://www.dcuniverseonline.com/"
AUTHOR="Robbz and LinuxScripter"
 
# Setup
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
 
POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$PREFIX"
 
# Components
POL_Call POL_Install_dotnet40
POL_Call POL_Install_vcrun2012
POL_Call POL_Install_d3dx9_36
POL_Wine_OverrideDLL "native,builtin" "riched20"
 
# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
 
# Download and instalation
cd "$POL_System_TmpDir"
POL_Download "https://launch.daybreakgames.com/installer/DCUO_setup.exe"
POL_Wine start /unix "$POL_System_TmpDir/DCUO_setup.exe"
POL_Wine_WaitExit "DCUO_setup.exe"
 
# Create Shortcuts
POL_Shortcut "LaunchPad.exe" "$TITLE" "$TITLE.png"
 
POL_System_TmpDelete
POL_SetupWindow_Close
 
exit 0

Réponses

Anonymous
Jeudi 25 Juillet 2019 à 13:22
it wont work. i8 hate it. I hate it.
LinuxScripter Mercredi 10 Mai 2017 à 20:33
LinuxScripter Anonymous

Warning

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

Messages

Tried to rewrite this script with latest stable wine and removing some obsolete components. It crashes with this:

https://pastebin.com/ruBmRePY

Differences

@@ -1,10 +1,9 @@
 #!/bin/bash
-# Date : (2013-03-15 ??-??)
-# Last revision : (2013-07-24 11-26)
-# Distribution used to test : Lubuntu 64
-# Author : Robbz
+# Date : (2013-03-15 ??:??)
+# Last revision : (2017-05-10 20:06)
+# Distribution used to test : Ubuntu 17.04 64bit
+# Author : Robbz, LinuxScripter
 # Licence : GPLv3
-# PlayOnLinux:  playonlinux-4.1.9-2
 
 # CHANGELOG
 # [SuperPlumus] (2013-07-24 11-26)
@@ -15,10 +14,10 @@
 
 TITLE="DC Universe Online"
 PREFIX="DCUniverseOnline"
-WORKING_WINE_VERSION="1.5.28-GuildWars2"
+WORKING_WINE_VERSION="2.0.1"
 PUBLISHER="Sony Entertainment"
 GAME_URL="http://www.dcuniverseonline.com/"
-AUTHOR="Robbz"
+AUTHOR="Robbz and LinuxScripter"
 
 # Setup
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
@@ -32,13 +31,9 @@
 
 # Components
 POL_Call POL_Install_vcrun2008
-POL_Call POL_Install_vcrun2005
-POL_Call POL_Install_d3dx9_43
-POL_Call POL_Install_d3dcompiler_43
-POL_Call POL_Install_dxdiag
-POL_Call POL_Install_dxfullsetup
+POL_Call POL_Install_vcrun2010
+POL_Call POL_Install_d3dx9_36
 POL_Call POL_Install_xact
-POL_Call POL_Install_ie8
 POL_Wine_OverrideDLL "native,builtin" "riched20"
 
 # Asking about memory size of graphic card

Nouveau code source

#!/bin/bash
# Date : (2013-03-15 ??:??)
# Last revision : (2017-05-10 20:06)
# Distribution used to test : Ubuntu 17.04 64bit
# Author : Robbz, LinuxScripter
# Licence : GPLv3

# CHANGELOG
# [SuperPlumus] (2013-07-24 11-26)
#   Update gettext messages

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

TITLE="DC Universe Online"
PREFIX="DCUniverseOnline"
WORKING_WINE_VERSION="2.0.1"
PUBLISHER="Sony Entertainment"
GAME_URL="http://www.dcuniverseonline.com/"
AUTHOR="Robbz and LinuxScripter"

# Setup
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

POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Components
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_d3dx9_36
POL_Call POL_Install_xact
POL_Wine_OverrideDLL "native,builtin" "riched20"

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# Download
cd "$WINEPREFIX/drive_c"
POL_Download "https://launch.daybreakgames.com/installer/DCUO_setup.exe"

POL_SetupWindow_message "$(eval_gettext 'Attention: After installation is complete, the patcher will load. Please close the patcher before logging in to complete the installation. After this, you can run "$TITLE" when setup is done')" "$TITLE"

POL_Wine_WaitBefore "$TITLE"
POL_Wine start /unix "$WINEPREFIX/drive_c/DCUO_setup.exe"
POL_Wine_WaitExit "$TITLE"

# Create Shortcuts
POL_Shortcut "LaunchPad.exe" "$TITLE" "$TITLE.png"

POL_SetupWindow_Close

exit 0

Réponses

mrgamgeezy Mardi 16 Aoüt 2016 à 3:21
mrgamgeezy Anonymous

Messages

I ran this program on Playonmac previously, but when i came back to it I've had little success. It still runs on crossover, and though my trial expired I at least know I can run it on my 2011 iMac (El Capitan). The links on this page (including PlayOnMac's interface "Install a Program" option) have not worked for me, giving me the "error 1 registering DLL /Users/username/Library/PlayOnMac//wineprefix/DCUniverseOnline/drive_c/windows/system32/xaudio*" and so I've only successfully been able to install the DCUO_setup.exe file from the DCUO website.

The issue is, once everything is downloaded (launchpad works fine) the system just pulls up a black screen. There's no video or sound at all. I've tried deleting the Launchpad-user.ini file (which just generates a new copy when I launch the game) and tried installing d3dx9_36, vcrun2008, vcrun2010 and xact. Nothing seems to work. I'd really rather not have to pay for Crossover or use Bootcamp. 

tl;dr - I know for a fact my machine can run DCUO but when I get it all installed, I get a black screen. I've already deleted Launchpad-user.ini and validated my files.

Réponses

incognito9 Mardi 7 Juin 2016 à 22:41
incognito9 Anonymous

Messages

The set-up script looks old. If you use a recent wine-staging release you don't need to specify a 32-bit wineprefix, and you don't need to install IE8 either. The only winetricks you have you have to install are

d3dx9_36
vcrun2008
vcrun2010
xact

 

Réponses

Anonymous
Samedi 31 Décembre 2016 à 0:24
thank you for sharing this after my hard drive died i could not remember how i got this installed
Manta9527 Lundi 16 Mai 2016 à 5:17
Manta9527 Anonymous

Messages

Has anyone been able to figure out how to stop this game from crashing?

Réponses

Anonymous
Mardi 7 Juin 2016 à 22:34
I was seeing a lot of crashes because of too many open files. Apparently the Unreal 3 engine that DCUO uses likes to open a huge number of files, and increasing my system limit to 500,000 helped stability by quite a bit
Joa Samedi 19 Décembre 2015 à 13:34
Joa Anonymous

Messages

Sadly on installing the installation process reports an error: 

Error 1 registering DLL /Users/JoaJoa/Library/PlayOnMac//wineprefix/DCUniverseOnline/drive_c/windows/system32/xaudio*

and then quits (report has been sent).

Anyone else got that?

OS X El Capitan 10.11.2

Réponses

arienreth Lundi 16 Novembre 2015 à 22:30
arienreth Anonymous

Warning

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

Messages

Hi there, just registered to give a small contribution.

Had the issue for quite some that, that the launcher would allways fail connection, searched quite a bit for a solution, and finally fixed it.

It seems there is some issue with the awesomium process, found a lead on a entry to Hawken Beta on WineHQ after searching for this error:

ERROR:network_change_notifier_win.cc(159)] WSALookupServiceBegin failed with: 8

Did many many searches like that one not ending up with anything, but in a comment about the launcher for that game not being able to connect and failling to start, a commenter says it worked with the awesomium patched wine, in other words the guild wars 2 wine patched on POL. Tried 1.5.28-GuildWars2 since it was the version closest to the one used on this install script, and alas, finally, patching up the game! smiley

Hope it helps and that it resolves the issue.

Differences

@@ -15,7 +15,7 @@
 
 TITLE="DC Universe Online"
 PREFIX="DCUniverseOnline"
-WORKING_WINE_VERSION="1.5.24"
+WORKING_WINE_VERSION="1.5.28-GuildWars2"
 PUBLISHER="Sony Entertainment"
 GAME_URL="http://www.dcuniverseonline.com/"
 AUTHOR="Robbz"

Nouveau code source

#!/bin/bash
# Date : (2013-03-15 ??-??)
# Last revision : (2013-07-24 11-26)
# Distribution used to test : Lubuntu 64
# Author : Robbz
# Licence : GPLv3
# PlayOnLinux:  playonlinux-4.1.9-2

# CHANGELOG
# [SuperPlumus] (2013-07-24 11-26)
#   Update gettext messages

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

TITLE="DC Universe Online"
PREFIX="DCUniverseOnline"
WORKING_WINE_VERSION="1.5.28-GuildWars2"
PUBLISHER="Sony Entertainment"
GAME_URL="http://www.dcuniverseonline.com/"
AUTHOR="Robbz"

# Setup
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

POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Components
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_d3dx9_43
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_dxdiag
POL_Call POL_Install_dxfullsetup
POL_Call POL_Install_xact
POL_Call POL_Install_ie8
POL_Wine_OverrideDLL "native,builtin" "riched20"

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# Download
cd "$WINEPREFIX/drive_c"
POL_Download "https://launch.daybreakgames.com/installer/DCUO_setup.exe"

POL_SetupWindow_message "$(eval_gettext 'Attention: After installation is complete, the patcher will load. Please close the patcher before logging in to complete the installation. After this, you can run "$TITLE" when setup is done')" "$TITLE"

POL_Wine_WaitBefore "$TITLE"
POL_Wine start /unix "$WINEPREFIX/drive_c/DCUO_setup.exe"
POL_Wine_WaitExit "$TITLE"

# Create Shortcuts
POL_Shortcut "LaunchPad.exe" "$TITLE" "$TITLE.png"

POL_SetupWindow_Close

exit 0

Réponses

Anonymous
Lundi 16 Novembre 2015 à 22:33
Final FIY, never did any scripting for POL so i am unsure that line is the only one necessary to change the wine installation, though in a quick search i fail to find another candidate line.
undrline Mercredi 28 Octobre 2015 à 1:24
undrline Anonymous

Warning

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

Differences

@@ -46,7 +46,7 @@
 
 # Download
 cd "$WINEPREFIX/drive_c"
-POL_Download "http://launch.soe.com/installer/DCUO_setup.exe"
+POL_Download "https://launch.daybreakgames.com/installer/DCUO_setup.exe"
 
 POL_SetupWindow_message "$(eval_gettext 'Attention: After installation is complete, the patcher will load. Please close the patcher before logging in to complete the installation. After this, you can run "$TITLE" when setup is done')" "$TITLE"
 

Nouveau code source

#!/bin/bash
# Date : (2013-03-15 ??-??)
# Last revision : (2013-07-24 11-26)
# Distribution used to test : Lubuntu 64
# Author : Robbz
# Licence : GPLv3
# PlayOnLinux:  playonlinux-4.1.9-2

# CHANGELOG
# [SuperPlumus] (2013-07-24 11-26)
#   Update gettext messages

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

TITLE="DC Universe Online"
PREFIX="DCUniverseOnline"
WORKING_WINE_VERSION="1.5.24"
PUBLISHER="Sony Entertainment"
GAME_URL="http://www.dcuniverseonline.com/"
AUTHOR="Robbz"

# Setup
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

POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Components
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_d3dx9_43
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_dxdiag
POL_Call POL_Install_dxfullsetup
POL_Call POL_Install_xact
POL_Call POL_Install_ie8
POL_Wine_OverrideDLL "native,builtin" "riched20"

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# Download
cd "$WINEPREFIX/drive_c"
POL_Download "https://launch.daybreakgames.com/installer/DCUO_setup.exe"

POL_SetupWindow_message "$(eval_gettext 'Attention: After installation is complete, the patcher will load. Please close the patcher before logging in to complete the installation. After this, you can run "$TITLE" when setup is done')" "$TITLE"

POL_Wine_WaitBefore "$TITLE"
POL_Wine start /unix "$WINEPREFIX/drive_c/DCUO_setup.exe"
POL_Wine_WaitExit "$TITLE"

# Create Shortcuts
POL_Shortcut "LaunchPad.exe" "$TITLE" "$TITLE.png"

POL_SetupWindow_Close

exit 0

Réponses

Anonymous
Mercredi 28 Octobre 2015 à 1:25
Changed download location to reflect daybreakgames: https://launch.daybreakgames.com/installer/DCUO_setup.exe

I'm still having an issue when I start the launcher that it can't connect to daybreakgames, though.
rinaribw Samedi 11 Juillet 2015 à 1:40
rinaribw Anonymous

Messages

I dont know why. It could be something I've forgotten but i downloaded playonmac and it did all the required downloads for DCUO to run (like XQuartz and stuff) and once it ran, it got onto the install screen and fully installed. I then go to click play and it acknowledges it but then cuts to black. It's not loading, it definately stays like this. Do i need to debug it or will it not work?

Réponses

Niven81 Samedi 21 Février 2015 à 21:23
Niven81 Anonymous

Messages

Install and patcher worked fine. When I attempted to play the game believed a controller was being used when none or installed or plugged into the PC. When I attempted to fix this through the launcher config option it attempted and failed to install Microsoft.net.

As of now I am unable to play the game.

Réponses

SkylerFur Samedi 9 Aoüt 2014 à 18:28
SkylerFur Anonymous

Messages

For some reason it is unable to access  /usr/lib32/alsa-lib/libasound_module_pcm_pulse.so

Also  it complains about err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution

Réponses

Anonymous
Samedi 9 Aoüt 2014 à 18:29
It should be noted I'm on antragos
Anonymous
Dimanche 10 Aoüt 2014 à 0:48
ntlm_auth: You can install winbind package.
Vendredi 30 Janvier 2015 à 19:02
and lib32-alsa-plugins
Aital Jeudi 7 Aoüt 2014 à 2:33
Aital Anonymous

Messages

Mine is working pretty well. The only issues I've had so far are:

1. When I first started playing it would start in full screen(not the issues per say) and if I alt tabbed out it would always crash.

2. After changing res to windowed it now starts the game not in full screen but in a small window that only shows the corner of the actual screen it is representing. I found I can fix this first by right clicking the menu bar on the program window and selecting resize. It either automatically shrinks the image to the window or when I click anywhere it changes. I then enter the game and change the window size with in the in game menu.

3. When I enter and load places like the starting villian base(not the starting combat zone.) like bohemian base it crashes when I enter and I have to restart the game. Not sure what causes this.

 

 

Réponses

Anonymous
Jeudi 7 Aoüt 2014 à 2:58
I was wrong: 4. After removing full screen if attempting to back into full screen mode the users display is messed up and I must logg out and back in. It creates a black window where you can rotate around the actual desktop and game screen. Luckily the button still functioned.
Anonymous
Mercredi 13 Aoüt 2014 à 10:38
http://www.playonlinux.com/en/topic-12272.html <- This got rid of everything but random crashes. Maybe it will help fedora or other users.
Anonymous
Mercredi 13 Aoüt 2014 à 10:44
I forgot, I also have alt tabbing issues. It crashes the game basically if I give another program focus.
undrline Vendredi 18 Juillet 2014 à 3:19
undrline Anonymous

Messages

Installation completes and the game's "Launcher" comes up for you to log in.  No patcher seems to appear, despite the warning.  Close the "Launcher" just in case, and reopen via PoL application window.  On successful login it tries to complete installation, then gives an error: "Your graphics card is not capable enough for this game (VendorID=0x8086, DeviceID=0x2582, Name=X11 Windowing System)"  This is clearly referencing the virtual environment since X11 Windowing System is not my graphics card.  Searching online, others have experienced this issue on Linux, but have found no solution.  It doesn't seem to appear for everyone.  I've tried it on Ubuntu and Xubuntu Precise. I've researched my graphics card, which is capable.  The game's forums were of no help.

Réponses

Anonymous
Jeudi 7 Aoüt 2014 à 4:06
I am having a similiar problem in that My version is saying that I "do not have enough space (992 mb)"
I have plenty of space on my hardrive, what seems to be the problem?
Anonymous
Vendredi 30 Janvier 2015 à 18:25
in mine i cant see the launcher just showme a black window