Fade NPC: Fade's interjection in Odren's dialogue (GORODR1.DLG) at Watcher's Keep doesn't work in SoA because interjection is in ToB dialogue file E3FAD25J.DLG (all other WK interjections too). Only option is dump Fade before talking to Odren.
Looks like that ToB modders have made big mistake and assumed that people play Watcher's Keep only in ToB.
Spellhold Gauntlet: Typo at Spellhold Maze area script AR1512.BCS, though it doesn't matter much.
At AR1512.BCS changed:
!AreaCheckObject("AR1512","ppbodhi")
to:
!AreaCheckObject("AR1512","ppbodhi4")
Made fix for future installs.
Neh'taniel NPC: Problem with Bodhi's dialogue SHAGRL01.DLG at Maze in speelhold. Neh'taniels interjection is missing checks that he's in party. Probably fixed already by Lollorian.
At PPBODHI4.DLG added to State trigger 7:
IfValidForPartyDialogue("SK#Neht")
InMyArea("SK#Neht")
!StateCheck("SK#Neht",CD_STATE_NOTVALID)
Avi Maya NPC Project: Typo in interjection at PLAYER1.DLG.
At PLAYER1.DLG Response trigger 4:
Global("AviRelationshipActive","GLOBAL",2)
to:
Global("AviRelationsActive","GLOBAL",2)
Made fix for future installs.
IA: Elder Umber Hulk (UMBHUL01.CRE) using UMBERHULK_IWD animation changes to Tundra Yeti during attack animation at Maze Level 3 (AR1514.ARE).
BP: Minor problem with Ettin challenge at Sahuagin City. King Ixilthetocal teleports me to fight Ettin. Ettin attacks and before i managed to kill it i am teleported back to King Ixilthetocal.
BP creates Mage Construct (CONST01.CRE) with same script name SAHOTY01 as Ettin (SAHOTY01.CRE). Several SAHOTY01 has been killed so teleport script is fired at AR2300.BCS.
Workaround is same as 10th suggested for Sea Troll and Roger the Fence problem: setting global "SPRITE_IS_DEADSAHOTY01" to 0. Didn't bother to try it though, i can kill that Ettin later.
Made fix for future installs.
Sahuagin City: Area script AR2300.BCS has infite loop problem (probably), lower blocks don't fire. This is in vanilla BG2 so it's not problem created by some mod.
At AR2300.BCS changed:
IF
Dead("sahkng01")
Global("villynatyjob","GLOBAL",0)
THEN
RESPONSE #100
SetGlobal("Hostilecity","GLOBAL",1)
END
to:
IF
Dead("sahkng01")
Global("villynatyjob","GLOBAL",0)
!Global("Hostilecity","GLOBAL",1)
THEN
RESPONSE #100
SetGlobal("Hostilecity","GLOBAL",1)
END
Made fix for future installs.
Frennedan NPC: Problem with interjection in Imrae's dialogue (UDIMRAE.DLG) at Ust Natha (AR2200).
In UDIMRAE.DLG changed response trigger 1 from:
InParty("frendan")
!Dead("frendan")
to:
!InParty("frendan")
and response trigger 2 from:
!InParty("frendan")
to:
InParty("frendan")
!Dead("frendan")
Com Encounters: Minor problem with Solaufein spawning after getting Fake Dragon Eggs from Phaere. Mod puts couple Drow Warriors to entrance of Temple of Lolth. Proximity triggers fires and Solaufein spawns and starts talking while party is still at Female Fighter's Society. Not game breaknig but still annoying problem. Fixed locally by moving them from proximity trigger.
At AR2200.BCS changed:
IF
Global("UcmMoreDrow","GLOBAL",0)
THEN
RESPONSE #100
CreateCreature("uddrow34",[3870.2592],14) // Laniz
CreateCreature("uddrow34",[2851.2593],14) // Laniz
CreateCreature("uddrow33",[2936.2571],6) // Drow Warrior
CreateCreature("uddrow33",[3099.1659],6) // Drow Warrior
CreateCreature("uddrow33",[1764.2666],14) // Drow Warrior
CreateCreature("uddrow35",[1490.2665],6) // Priestess of Lolth
CreateCreature("uddrow35",[1335.3200],0) // Priestess of Lolth
CreateCreature("uddrow33",[4099.2434],6) // Drow Warrior
CreateCreature("uddrow33",[4152.2508],0) // Drow Warrior
SetGlobal("UcmMoreDrow","GLOBAL",1)
END
to:
IF
Global("UcmMoreDrow","GLOBAL",0)
THEN
RESPONSE #100
CreateCreature("uddrow34",[3870.2592],14) // Laniz
CreateCreature("uddrow34",[2851.2593],14) // Laniz
CreateCreature("uddrow33",[2936.2571],6) // Drow Warrior
CreateCreature("uddrow33",[3099.1659],6) // Drow Warrior
CreateCreature("uddrow33",[1764.2666],14) // Drow Warrior
CreateCreature("uddrow35",[1490.2665],6) // Priestess of Lolth
CreateCreature("uddrow35",[1335.3200],0) // Priestess of Lolth
CreateCreature("uddrow33",[3909.2557],6) // Drow Warrior
CreateCreature("uddrow33",[3952.2618],0) // Drow Warrior
SetGlobal("UcmMoreDrow","GLOBAL",1)
END
Made fix for future installs.