Jump to content

BG1NPC V 6 bugs


Domi

Recommended Posts

In X#Montaron.d at line 498, you have a SetGlobal to shut off this discussion. Trouble is, it sets the local for Xan (who is the last to speak), not Montaron. Either an ActionOverride() or the action further up in the sequence would fix this.

 

An area check might also be in line before even beginning the discussion, since in my game Montaron died while we fought Mulahey, and I only got the talk after resurrecting him at the temple of Helm in Nashkel.

 

Technical bugs aside, I sort of think Xan should talk with fewer contractions. At least in that talk. Haven't read any more yet. :cry:

Link to comment

Ah, there it is. X#Monta.baf.

 

IF

InParty(Myself) CombatCounter(0) !See([ENEMY])

InParty("XAN")

!Dead("XAN")

Dead("Mulahey")

THEN

RESPONSE #100

SetGlobal("MOXA1","LOCALS",1)

StartDialogueNoSet("XAN")

END

 

Shouldn't it also have a check for the LOCALS being at 0? :cry:

Link to comment

it's a known issue actually, and will be fixed for next version :D Would you be able to report bugs in the bug thread? It is much more convenient for fixing :cry:

 

As for contractions, I agree - he should not contract too much, I will check the dialogue to see where the speech can be further expanded.

Link to comment

Didn't know this thread existed. Anyways, another bug.

 

Garrick is wearing chain mail and wielding a crossbow. I have the Change Unarmoured Male Human Rogue Appearance component installed, but when he does the firing animation, the hood disappears and he has the regular unarmoured cleric/fighter/thief avatar. Will look up the files momentarily.

Link to comment

Ok, fixed tp2 code for the avatar components. I haven't checked it installs as mine is messed up but it *should* work. :rolleyes:

 

BEGIN ~Change Unarmoured Male Human Rogue Appearance~

COPY_EXISTING ~CHMT2A1.BAM~ ~override/CHMB1A1.BAM~
COPY_EXISTING ~CHMT2A2.BAM~ ~override/CHMB1A2.BAM~
COPY_EXISTING ~CHMT2A3.BAM~ ~override/CHMB1A3.BAM~
COPY_EXISTING ~CHMT2A4.BAM~ ~override/CHMB1A4.BAM~
COPY_EXISTING ~CHMT2A5.BAM~ ~override/CHMB1A5.BAM~
COPY_EXISTING ~CHMT2A6.BAM~ ~override/CHMB1A6.BAM~
COPY_EXISTING ~CHMT2A7.BAM~ ~override/CHMB1A7.BAM~
COPY_EXISTING ~CHMT2A8.BAM~ ~override/CHMB1A8.BAM~
COPY_EXISTING ~CHMT2A9.BAM~ ~override/CHMB1A9.BAM~
COPY_EXISTING ~CHMT2CA.BAM~ ~override/CHMB1CA.BAM~
COPY_EXISTING ~CHMT2G1.BAM~ ~override/CHMB1G1.BAM~
COPY_EXISTING ~CHMT2G11.BAM~ ~override/CHMB1G11.BAM~
COPY_EXISTING ~CHMT2G12.BAM~ ~override/CHMB1G12.BAM~
COPY_EXISTING ~CHMT2G13.BAM~ ~override/CHMB1G13.BAM~
COPY_EXISTING ~CHMT2G14.BAM~ ~override/CHMB1G14.BAM~
COPY_EXISTING ~CHMT2G15.BAM~ ~override/CHMB1G15.BAM~
COPY_EXISTING ~CHMT2G16.BAM~ ~override/CHMB1G16.BAM~
COPY_EXISTING ~CHMT2G17.BAM~ ~override/CHMB1G17.BAM~
COPY_EXISTING ~CHMT2G18.BAM~ ~override/CHMB1G18.BAM~
COPY_EXISTING ~CHMT2G19.BAM~ ~override/CHMB1G19.BAM~
COPY_EXISTING ~CHMT2SA.BAM~ ~override/CHMB1SA.BAM~
COPY_EXISTING ~CHMT2SS.BAM~ ~override/CHMB1SS.BAM~
COPY_EXISTING ~CHMT2SX.BAM~ ~override/CHMB1SX.BAM~

EXTEND_TOP ~baldur.bcs~ ~BG1NPC/scripts/Roguem.baf~

BEGIN ~Change Unarmoured Female Human Rogue Appearance~

COPY_EXISTING ~CHFT2A1.BAM~ ~override/CHFB1A1.BAM~
COPY_EXISTING ~CHFT2A2.BAM~ ~override/CHFB1A2.BAM~
COPY_EXISTING ~CHFT2A3.BAM~ ~override/CHFB1A3.BAM~
COPY_EXISTING ~CHFT2A4.BAM~ ~override/CHFB1A4.BAM~
COPY_EXISTING ~CHFT2A5.BAM~ ~override/CHFB1A5.BAM~
COPY_EXISTING ~CHFT2A6.BAM~ ~override/CHFB1A6.BAM~
COPY_EXISTING ~CHFT2A7.BAM~ ~override/CHFB1A7.BAM~
COPY_EXISTING ~CHFT2A8.BAM~ ~override/CHFB1A8.BAM~
COPY_EXISTING ~CHFT2A9.BAM~ ~override/CHFB1A9.BAM~
COPY_EXISTING ~CHFT2CA.BAM~ ~override/CHFB1CA.BAM~
COPY_EXISTING ~CHFT2G1.BAM~ ~override/CHFB1G1.BAM~
COPY_EXISTING ~CHFT2G11.BAM~ ~override/CHFB1G11.BAM~
COPY_EXISTING ~CHFT2G12.BAM~ ~override/CHFB1G12.BAM~
COPY_EXISTING ~CHFT2G13.BAM~ ~override/CHFB1G13.BAM~
COPY_EXISTING ~CHFT2G14.BAM~ ~override/CHFB1G14.BAM~
COPY_EXISTING ~CHFT2G15.BAM~ ~override/CHFB1G15.BAM~
COPY_EXISTING ~CHFT2G16.BAM~ ~override/CHFB1G16.BAM~
COPY_EXISTING ~CHFT2G17.BAM~ ~override/CHFB1G17.BAM~
COPY_EXISTING ~CHFT2G18.BAM~ ~override/CHFB1G18.BAM~
COPY_EXISTING ~CHFT2G19.BAM~ ~override/CHFBIG19.BAM~
COPY_EXISTING ~CHFT2SA.BAM~ ~override/CHFB1SA.BAM~
COPY_EXISTING ~CHFT2SS.BAM~ ~override/CHFB1SS.BAM~
COPY_EXISTING ~CHFT2SX.BAM~ ~override/CHFB1SX.BAM~

EXTEND_TOP ~baldur.bcs~ ~BG1NPC/scripts/Roguef.baf~

Link to comment

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...