Author Topic: BSOD - AttributeError : PlayOpeningMovies  (Read 662 times)

Offline Shadowknight1

  • Posts: 1684
  • Cookies: 71
  • Star Trek Into Darkness
BSOD - AttributeError : PlayOpeningMovies
« on: May 11, 2013, 04:52:34 PM »
I have NO idea why this started happening.  I removed some old, moldy mods that were either not in use or didn't want, but to my knowledge, they have nothing to do with what I'm getting a problem with.  Can anyone help me out here?

http://img825.imageshack.us/img825/9467/bsodv.jpg

To Boldly Go...Again.

Offline JimmyB76

  • Posts: 6423
  • Cookies: 421
Re: BSOD - AttributeError : PlayOpeningMovies
« Reply #1 on: May 11, 2013, 06:23:43 PM »
check the Previous "Black Screen of Death" Fixes Forum...
the error had been mentioned before, not sure if it will be of assistance to your current situation tho...
that error, tho, is GravityFX related...

Offline Shadowknight1

  • Posts: 1684
  • Cookies: 71
  • Star Trek Into Darkness
Re: BSOD - AttributeError : PlayOpeningMovies
« Reply #2 on: May 11, 2013, 06:50:10 PM »
It has been mentioned before, but the solution was to create a folder that I already have.

To Boldly Go...Again.

Offline Shadowknight1

  • Posts: 1684
  • Cookies: 71
  • Star Trek Into Darkness
Re: BSOD - AttributeError : PlayOpeningMovies
« Reply #3 on: May 13, 2013, 07:29:26 PM »
I tried reinstalling GravityFX and no joy...come on guys. :cry:

To Boldly Go...Again.

Offline tiqhud

  • BCFiles File Poster
  • Posts: 1763
  • Cookies: 1067
  • San Francisco Shipyards (HPer) file manuiplater
Re: BSOD - AttributeError : PlayOpeningMovies
« Reply #4 on: May 14, 2013, 10:35:05 AM »
have you opened , your zzzShipReplacement.py, [in NotePad} and looked at it's contents.
TiqHud
you sir, are unable to strike, the port or starboard parts of hull , of a bovine storage facility.
Canon , what people argue exists, that doesn't really  exist.
It is all the little details, that cause headaches.
"Never judge wealth with Money"
'Intelligence has Nothing to do with Politics'
it is Late, Do you know where your Towel is?

Offline Shadowknight1

  • Posts: 1684
  • Cookies: 71
  • Star Trek Into Darkness
Re: BSOD - AttributeError : PlayOpeningMovies
« Reply #5 on: May 14, 2013, 09:49:41 PM »
Contents of that PY

from bcdebug import debug
# Defiant <erik@kobmaru.de>

import App
import Foundation
import StaticDefs


def GetBridge(self):
   debug(__name__ + ", GetBridge")
   sBridgeInt = App.g_kConfigMapping.GetIntValue("Unified MainMenu Mod Configuration", "QB start bridge")
   if sBridgeInt == 0:
      # not set yet
      return 'SovereignBridge'
   else:
      return Foundation.bridgeList[sBridgeInt].bridgeString

Foundation.ShipDef.GetBridge = GetBridge

sShipint = App.g_kConfigMapping.GetIntValue("Unified MainMenu Mod Configuration", "QB start ship")
if sShipint == 0:
   # not set yet
   Foundation.MutatorDef.Stock.startShipDef = Foundation.ShipDef.Sovereign
else:
   pNewStartShip = Foundation.shipList[sShipint]
   Foundation.MutatorDef.Stock.startShipDef = pNewStartShip


To Boldly Go...Again.

Offline hobbs

  • Posts: 1373
  • Cookies: 77
Re: BSOD - AttributeError : PlayOpeningMovies
« Reply #6 on: May 15, 2013, 07:36:25 AM »
same as i have on my install

if this is the issue then id suggest you make sure you have the bridges and the ship of the sovereign named in the file.

not much help i know sorry
"We are dreamers, shapers, singers and makers..." Michael Ansara, "Elric" Babylon 5 "The Geometry of Shadows,"


Offline KrrKs

  • Posts: 461
  • Cookies: 25
Re: BSOD - AttributeError : PlayOpeningMovies
« Reply #7 on: May 15, 2013, 08:36:31 AM »
What Mods (also in which folders, if you can still remember) exactly where you getting rid of before that happened, Shadow?

Offline Shadowknight1

  • Posts: 1684
  • Cookies: 71
  • Star Trek Into Darkness
Re: BSOD - AttributeError : PlayOpeningMovies
« Reply #8 on: May 15, 2013, 06:50:32 PM »
What Mods (also in which folders, if you can still remember) exactly where you getting rid of before that happened, Shadow?

I removed several Star Wars fighters, the Aegian, the ACMP Akiras, and two Ambassador scripts that had no models.

This was using BCUT.

To Boldly Go...Again.

Offline JimmyB76

  • Posts: 6423
  • Cookies: 421
Re: BSOD - AttributeError : PlayOpeningMovies
« Reply #9 on: May 15, 2013, 07:46:52 PM »
can you post the entire console log?  should be a text file in the Logs folder...

Offline Shadowknight1

  • Posts: 1684
  • Cookies: 71
  • Star Trek Into Darkness
Re: BSOD - AttributeError : PlayOpeningMovies
« Reply #10 on: May 15, 2013, 09:33:26 PM »
I'm not sure what exactly to look for Jimmy.  Feel like a complete n00b.  Thanks BC. :(

To Boldly Go...Again.

Offline KrrKs

  • Posts: 461
  • Cookies: 25
Re: BSOD - AttributeError : PlayOpeningMovies
« Reply #11 on: May 16, 2013, 08:58:19 AM »
Could you try to add the following into zzShipReplacement ( and delete the .pyc file):

Quote
import App
import Foundation
import StaticDefs


def GetBridge(self):
   #debug(__name__ + ", GetBridge")
   sBridgeInt = App.g_kConfigMapping.GetIntValue("Unified MainMenu Mod Configuration", "QB start bridge")
   if(sBridgeInt == 0 or sBridgeInt >= len(Foundation.bridgeList)):
      # not set yet
      return 'SovereignBridge'
   else:
      return Foundation.bridgeList[sBridgeInt].bridgeString

Foundation.ShipDef.GetBridge = GetBridge

sShipint = App.g_kConfigMapping.GetIntValue("Unified MainMenu Mod Configuration", "QB start ship")
if (sShipint == 0 or sShipint >= len(Foundation.shipList)):
   # not set yet
   Foundation.MutatorDef.Stock.startShipDef = Foundation.ShipDef.Sovereign
else:
   pNewStartShip = Foundation.shipList[sShipint]
   Foundation.MutatorDef.Stock.startShipDef = pNewStartShip

I actually forgot that you can delete shipsafter a while, when Defiant sent me the changes for KM.
So the ship int this file is pointing to no longer exists in you install.

Offline hobbs

  • Posts: 1373
  • Cookies: 77
Re: BSOD - AttributeError : PlayOpeningMovies
« Reply #12 on: May 16, 2013, 11:25:14 AM »
I'm not sure what exactly to look for Jimmy.  Feel like a complete n00b.  Thanks BC. :(

the logs should be in

scripts/custom/logs

and the logs are dated so it would be the latest one
hope that helps :D

also go here :)
http://bc-central.net/forums/index.php/topic,57.msg154827.html#msg154827
"We are dreamers, shapers, singers and makers..." Michael Ansara, "Elric" Babylon 5 "The Geometry of Shadows,"


Offline Shadowknight1

  • Posts: 1684
  • Cookies: 71
  • Star Trek Into Darkness
Re: BSOD - AttributeError : PlayOpeningMovies
« Reply #13 on: May 16, 2013, 06:39:11 PM »
Could you try to add the following into zzShipReplacement ( and delete the .pyc file):

I actually forgot that you can delete shipsafter a while, when Defiant sent me the changes for KM.
So the ship int this file is pointing to no longer exists in you install.
BRILLIANT!  HAVE A COOKIE! :yay: :yay: :yay: :yay: :yay:

To Boldly Go...Again.

Offline tiqhud

  • BCFiles File Poster
  • Posts: 1763
  • Cookies: 1067
  • San Francisco Shipyards (HPer) file manuiplater
Re: BSOD - AttributeError : PlayOpeningMovies
« Reply #14 on: May 17, 2013, 11:14:12 AM »
So your back-up and going GOOD
TiqHud
you sir, are unable to strike, the port or starboard parts of hull , of a bovine storage facility.
Canon , what people argue exists, that doesn't really  exist.
It is all the little details, that cause headaches.
"Never judge wealth with Money"
'Intelligence has Nothing to do with Politics'
it is Late, Do you know where your Towel is?