I've got another bug about the beginning of the Hondleth's main quest : "Black Addar Stew" where you must kill Yuan-Ti of the House Extaminos.
Rynn's quest's dialog never starts. I'm not modder but I thnik that the problem comes from the variable 
SPRITE_IS_DEADYUANTI.
In RYNN.d, this variable must set at 10 in order that the good dialog starts :
IF ~GlobalLT("SPRITE_IS_DEADYUANTI","GLOBAL",10)
Global("CbRynnsIntroNoSides","LOCALS",0)~ THEN BEGIN 0
  SAY @1
  IF ~~ THEN DO ~SetGlobal("CbRynnsIntroNoSides","LOCALS",1)~ GOTO 1
END
IF ~~ THEN BEGIN 1
  SAY @2
  IF ~IsValidForPartyDialog("JAHEIRA")~ THEN EXTERN ~JAHEIRAJ~
CB_APPEND_JH1a
  IF ~!IsValidForPartyDialog("JAHEIRA")
IsValidForPartyDialog("MINSC")~ THEN EXTERN ~MINSCJ~
CB_APPEND_MC1a
  IF ~!IsValidForPartyDialog("JAHEIRA")
!IsValidForPartyDialog("MINSC")
IsValidForPartyDialog("VALYGAR")~ THEN EXTERN ~VALYGARJ~
CB_APPEND_VAL1a
  IF ~!IsValidForPartyDialog("JAHEIRA")
!IsValidForPartyDialog("MINSC")
!IsValidForPartyDialog("VALYGAR")~ THEN EXIT
END
------------------------------------
IF ~GlobalLT("SPRITE_IS_DEADYUANTI","GLOBAL",10)
Global("CbRynnsIntroNoSides","LOCALS",1)
RandomNum(2,1)~ THEN BEGIN 2
  SAY @3
  IF ~~ THEN EXIT
END
IF ~GlobalLT("SPRITE_IS_DEADYUANTI","GLOBAL",10)
Global("CbRynnsIntroNoSides","LOCALS",1)
RandomNum(2,2)~ THEN BEGIN 3
  SAY @4
  IF ~~ THEN EXIT
END
------------------------------------
IF ~GlobalGT("SPRITE_IS_DEADYUANTI","GLOBAL",9)
Global("CbRynnsQuest","GLOBAL",0)~ THEN BEGIN 4
  SAY @5
  IF ~~ THEN REPLY @6 GOTO 5
  IF ~~ THEN REPLY @7 GOTO 6
  IF ~~ THEN REPLY @8 GOTO 8
END
At my arrival in the town, this variable was set to 26. So I ran to meet Rynn and she told me @1 and @2 :
@1   = ~Doesn't seem like you've taken a side in our struggle.  Kill some serpents, and maybe you'll be worth the Secession's attention.~
@2   = ~So, either you're with House Extaminos, or you're with the Secession.  When you make a choice and start killing off the bloody serpents, let me know.~ (END)
Then I ran to kill some Yuan-ti in the eastern district, in a house where we could find some, and returned to see Rynn, but the variable was set to 0 and so Rynn told me :
@3   = ~If you ever decide to join with the Secession, the serpents put out a bounty of 500 gold for each member.  Watch your back in that case.~ (END)
@4   = ~I will not betray any of my patriots to the House without knowing what side you fight for.  Help the Yuan-ti and I call you enemy.  Choose us and maybe we can talk.~ (END)
Here is a save at my arrival at the town, if you want to try.
 000000030_Hlondeth.rar   433.08K
  697 downloadsEdit : well, I try to set the variable to 10 and it works fine now.
					
					
					
							Edited by Graoumf, 13 April 2008 - 02:40 AM.