El Foro

Call of Duty: World at War script

Autor Respuestas
rwb7041 Monday 2 March 2009 at 15:11
rwb7041Anonymous

Hey everyone, I am kinda new to playonlinux and am still trying to learn how it all works. Here's my system:

Distribution: XUbuntu 8.10, Intrepid Ibex
Wine Version: not exactly sure
Desktop: Xfce

OK, so here was my script to install CODWW:


#!/bin/bash
if [ "$PLAYONLINUX" = "" ]
then
exit 0
fi

source "$PLAYONLINUX/lib/sources"

#Create a prefix directory for CODWW
polprefixcreate "$HOME/.PlayOnLinux/wineprefix/CODWW"
# get the $CDROM variable
Ask_For_cdrom
# run the setup file for CODWW
wine $CDROM/setup.exe
# run the setup for DirectX
wine $CDROM/DirectX/DXSETUP.exe


(Note that CODWW requires DirectX and has its own installer for it and it sounds like that particular installer must be used in order for the game to work, but I may be wrong)

So I try to install this from the CD to see if the game will work. Right now I am running the system on VirtualBox with 768 MB of RAM and 128 MB of video memory. I will post the output from this script when it finishes. Anyone know if logs are created for running scripts and if so where?

Editado por: rwb7041

rwb7041 Monday 2 March 2009 at 15:59
rwb7041Anonymous

OK, ran the script and the install failed. Here's the log:


rwb7041@rwb7041-xubuntu:~$ playonlinux
/usr/share/playonlinux/lib/check_depend: line 64: glxinfo: command not found
PlayOnLinux v3.3.1

Checking python :                     [ Ok ]
Running exec
Note: wineprefixcreate is deprecated and shouldn't be needed anymore.
WINEPREFIX creation and updates now happen automatically when needed.

ALSA lib seq_hw.c:457snd_seq_hw_open) open /dev/snd/seq failed: No such file or directory
fixme:iphlpapi:NotifyAddrChange (Handle 0x7da999f8, overlapped 0x7da999dc): stub
fixme:shellllCanUnloadNow stub
wine: configuration in '/home/rwb7041/.wine' has been updated.
Setting Program Files' var
Note: wineprefixcreate is deprecated and shouldn't be needed anymore.
WINEPREFIX creation and updates now happen automatically when needed.

ALSA lib seq_hw.c:457snd_seq_hw_open) open /dev/snd/seq failed: No such file or directory
fixme:iphlpapi:NotifyAddrChange (Handle 0x7db849f8, overlapped 0x7db849dc): stub
fixme:shellllCanUnloadNow stub
wine: configuration in '/home/rwb7041/.wine' has been updated.
CDROM mount point : /media/cdrom0
ALSA lib seq_hw.c:457snd_seq_hw_open) open /dev/snd/seq failed: No such file or directory
fixme:advapi:LookupAccountNameW (null) L"rwb7041" (nil) 0x328ad0 (nil) 0x328ad4 0x328ac8 - stub
fixme:advapi:LookupAccountNameW (null) L"rwb7041" 0x139158 0x328ad0 0x139bd8 0x328ad4 0x328ac8 - stub
fixme:reg:GetNativeSystemInfo (0x31d1d8) using GetSystemInfo()
fixme:x11drv:X11DRV_SetWindowRgn not supported on other thread window 0x1003a
fixme:x11drv:X11DRV_SetWindowRgn not supported on other thread window 0x1003a
fixme:x11drv:X11DRV_SetWindowRgn not supported on other thread window 0x1003a
fixme:richedit:RichEditWndProc_common WM_STYLECHANGING: stub
fixme:richedit:RichEditWndProc_common WM_STYLECHANGED: stub
fixme:richedit:RichEditWndProc_common WM_STYLECHANGING: stub
fixme:richedit:RichEditWndProc_common WM_STYLECHANGED: stub
fixme:richedit:RichEditWndProc_common WM_STYLECHANGING: stub
fixme:richedit:RichEditWndProc_common WM_STYLECHANGED: stub
fixme:richedit:RichEditWndProc_common WM_STYLECHANGING: stub
fixme:richedit:RichEditWndProc_common WM_STYLECHANGED: stub
fixme:x11drv:X11DRV_SetWindowRgn not supported on other thread window 0x1003a
fixme:x11drv:X11DRV_SetWindowRgn not supported on other thread window 0x1003a
fixme:x11drv:X11DRV_SetWindowRgn not supported on other thread window 0x1003a
err:msi:copy_package_to_temp failed to copy package L"D:\\CoDWaW.msi"
fixme:advapi:LookupAccountNameW (null) L"rwb7041" (nil) 0x7d8d8c60 (nil) 0x7d8d8c64 0x7d8d8c58 - stub
fixme:advapi:LookupAccountNameW (null) L"rwb7041" 0x1166890 0x7d8d8c60 0x11661d8 0x7d8d8c64 0x7d8d8c58 - stub
err:msi:ITERATE_Actions Execution halted, action L"ISSetupFilesExtract" returned 1627
err:msi:remove_tracked_tempfiles failed to delete L"C:\\windows\\temp\\msia116.tmp"
err:ole:dispatch_rpc no apartment found for ipid {ffffffff-ffff-ffff-1c00-000008000000}
err:rpc:I_RpcReceive we got fault packet with status 0x80010108
err:ole:dispatch_rpc no apartment found for ipid {ffffffff-ffff-ffff-1c00-000008000000}
err:rpc:I_RpcReceive we got fault packet with status 0x80010108
err:ole:dispatch_rpc no apartment found for ipid {ffffffff-ffff-ffff-1c00-000008000000}
err:rpc:I_RpcReceive we got fault packet with status 0x80010108
err:ole:dispatch_rpc no apartment found for ipid {ffffffff-ffff-ffff-1c00-000008000000}
err:rpc:I_RpcReceive we got fault packet with status 0x80010108
err:ole:dispatch_rpc no apartment found for ipid {ffffffff-ffff-ffff-1c00-000008000000}
err:rpc:I_RpcReceive we got fault packet with status 0x80010108
fixme:actctxarse_depend_manifests Could not find dependent assembly L"Microsoft.Windows.Common-Controls"
ALSA lib seq_hw.c:457snd_seq_hw_open) open /dev/snd/seq failed: No such file or directory


(not sure why the site is reading parts of the log as smileys, but whatever)

I am not someone who understands all this, but any ideas of what I did wrong or what I can improve on?

Thanks in advance!

Editado por: rwb7041