DC Universe Online

Informations

Creator Meddelanden
Robbz

Warning

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

Informations

Platforms:
Downloads: 30010
Wine: 3.0.3

Feedbacks

Description

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

PCGamingWiki. Appdb.winehq.org

Screenshots

MiniatureMiniatureMiniature

Source code

#!/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:

Contribute
Member Meddelanden
Dadu042 Friday 23 October 2020 at 21:25
Dadu042

Information

This update has been approved by the team.

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

New source code

#!/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

Svar

seanzone Monday 13 July 2020 at 12:36
seanzone Anonymous

Meddelanden

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

Svar

Dadu042 Thursday 25 July 2019 at 16:14
Dadu042

Meddelanden

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.

Svar

Anonymous
Wednesday 13 November 2019 at 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.

Ändrat av Dadu042

LinuxScripter Tuesday 13 February 2018 at 20:13
LinuxScripter Anonymous

Warning

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

Meddelanden

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

New source code

#!/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

Svar

Anonymous
Thursday 25 July 2019 at 13:22
it wont work. i8 hate it. I hate it.
LinuxScripter Wednesday 10 May 2017 at 20:33
LinuxScripter Anonymous

Warning

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

Meddelanden

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

New source code

#!/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

Svar

mrgamgeezy Tuesday 16 August 2016 at 3:21
mrgamgeezy Anonymous

Meddelanden

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.

Svar

incognito9 Tuesday 7 June 2016 at 22:41
incognito9 Anonymous

Meddelanden

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

 

Svar

Anonymous
Saturday 31 December 2016 at 0:24
thank you for sharing this after my hard drive died i could not remember how i got this installed
Manta9527 Monday 16 May 2016 at 5:17
Manta9527 Anonymous

Meddelanden

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

Svar

Anonymous
Tuesday 7 June 2016 at 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 Saturday 19 December 2015 at 13:34
Joa Anonymous

Meddelanden

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

Svar

arienreth Monday 16 November 2015 at 22:30
arienreth Anonymous

Warning

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

Meddelanden

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"

New source code

#!/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

Svar

Anonymous
Monday 16 November 2015 at 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 Wednesday 28 October 2015 at 1:24
undrline Anonymous

Warning

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

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"
 

New source code

#!/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

Svar

Anonymous
Wednesday 28 October 2015 at 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 Saturday 11 July 2015 at 1:40
rinaribw Anonymous

Meddelanden

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?

Svar

Niven81 Saturday 21 February 2015 at 21:23
Niven81 Anonymous

Meddelanden

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.

Svar

SkylerFur Saturday 9 August 2014 at 18:28
SkylerFur Anonymous

Meddelanden

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

Svar

Anonymous
Saturday 9 August 2014 at 18:29
It should be noted I'm on antragos
Anonymous
Sunday 10 August 2014 at 0:48
ntlm_auth: You can install winbind package.
Friday 30 January 2015 at 19:02
and lib32-alsa-plugins
Aital Thursday 7 August 2014 at 2:33
Aital Anonymous

Meddelanden

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.

 

 

Svar

Anonymous
Thursday 7 August 2014 at 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
Wednesday 13 August 2014 at 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
Wednesday 13 August 2014 at 10:44
I forgot, I also have alt tabbing issues. It crashes the game basically if I give another program focus.
undrline Friday 18 July 2014 at 3:19
undrline Anonymous

Meddelanden

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.

Svar

Anonymous
Thursday 7 August 2014 at 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
Friday 30 January 2015 at 18:25
in mine i cant see the launcher just showme a black window