Jump to content


Photo

CTD/ Blue Screen of Death - Nashkel Mines


  • Please log in to reply
3 replies to this topic

#1 BaddAzzYellaBro

BaddAzzYellaBro
  • Member
  • 25 posts

Posted 09 May 2010 - 02:40 PM

In the Nashkel mines, I get the blue screen of death whenever I fight Gorken Bloodaxe (Duegar). I've tried diffrent weapons to see what might be causing this problem. I have a Weidu Mega Mod installation. Anyone ever have this problem? Tried searching the forums but I get a database error.

#2 Miloch

Miloch

    Barbarian

  • Modder
  • 6573 posts

Posted 09 May 2010 - 04:03 PM

It's from Dark Horizons, but I don't see any issues with it offhand. Export your madurf01.cre from Near Infinity or DLTCEP and attach it here I guess. Also post the contents of baldur.err from after the crash, if it gives any info.

Infinity Engine Contributions
Aurora * BG1 NPC * BG1 Fixpack * Haiass * Infinity Animations * Level 1 NPCs * P5Tweaks
PnP Free Action * Thrown Hammers * Unique Containers * BG:EE * BGII:EE * IWD:EE
================================================================
Player & Modder Resources
BAM Batcher * Creature Lister * Creature Checker * Creature Fixer * Tutu/BGT Area Map & List * Tutu Mod List
================================================================
"Infinity turns out to be the opposite of what people say it is. It is not 'that which has nothing beyond itself' that is infinite, but 'that which always has something beyond itself'." -Aristotle


#3 BaddAzzYellaBro

BaddAzzYellaBro
  • Member
  • 25 posts

Posted 14 May 2010 - 06:46 PM

It's from Dark Horizons, but I don't see any issues with it offhand. Export your madurf01.cre from Near Infinity or DLTCEP and attach it here I guess. Also post the contents of baldur.err from after the crash, if it gives any info.



Here you go. Hope it helps.Attached File  MADURF01.CRE   1.21K   363 downloads

#4 Miloch

Miloch

    Barbarian

  • Modder
  • 6573 posts

Posted 16 May 2010 - 12:16 AM

Here you go.

I can't see any real problems with the CRE. It has a nonstandard order of offsets according to DLTCEP, but so do a lot of CREs, and it otherwise reads it ok. There is a small issue with one of its scripts (cmdurg.bcs):
IF

  Global("CmDwarfHostile","GLOBAL",1)

THEN

  RESPONSE #100

    Enemy()

END
This has the potential to loop over and over, since if that variable is set to 1, the dwarf will keep trying to turn hostile (even when it is already). Can probably be fixed with something like:
IF

  Global("CmDwarfHostile","GLOBAL",1)

  !Allegiance(Myself,ENEMY)

THEN

  RESPONSE #100

    Enemy()

END
Not sure if this would cause a crash by itself though. The other DH duergar get the same script. Does it crash right away or only after you've started fighting it? Someone might want to report this on the Dark Horizons forum if it hasn't been.

Infinity Engine Contributions
Aurora * BG1 NPC * BG1 Fixpack * Haiass * Infinity Animations * Level 1 NPCs * P5Tweaks
PnP Free Action * Thrown Hammers * Unique Containers * BG:EE * BGII:EE * IWD:EE
================================================================
Player & Modder Resources
BAM Batcher * Creature Lister * Creature Checker * Creature Fixer * Tutu/BGT Area Map & List * Tutu Mod List
================================================================
"Infinity turns out to be the opposite of what people say it is. It is not 'that which has nothing beyond itself' that is infinite, but 'that which always has something beyond itself'." -Aristotle