#7245 [NEERA] - Conversation Loop between Neera and Minsc
Basenate
Member Posts: 1
Open the attached save and Minsc will blame Neera for turning Boo pink. Go through the end of the dialogue and it'll begin again after a few seconds.
Couple of lines from the conversation:
Minsc - "No. Nooo! You, Neera! You did this!"
Neera - "What did I do now? Oh... oh my."
etc...
It won't stop unless either Minsc or Neera is removed from the party. Once they're added back, the loop continues again.
Changing areas doesn't seem to help.
Any chance for a workaround? I don't want to remove either from the party.
Couple of lines from the conversation:
Minsc - "No. Nooo! You, Neera! You did this!"
Neera - "What did I do now? Oh... oh my."
etc...
It won't stop unless either Minsc or Neera is removed from the party. Once they're added back, the loop continues again.
Changing areas doesn't seem to help.
Any chance for a workaround? I don't want to remove either from the party.
Post edited by Illydth on
0
Comments
Sidenote: I have the sneaking suspicion that this loop also "blocks" banters from other party members. For instance, I have Haer'Dalis and Aerie walking next to eachother for more than a week and they haven't said a word...
And Jan Jansen of course!
I temporarily swapped out Minsc for Valygar to do a run-through of the planar sphere, I'll see if that helps.
I'll keep an eye on the variables and if I run into the again I'll post a save here.
IF WEIGHT #11
~ IfValidForPartyDialogue("NEERA")
IfValidForPartyDialogue("MINSC")
CombatCounter(0)
See("NEERA")
!AreaType(DUNGEON)
Global("OHN_minsc","GLOBAL",1)
~ THEN BEGIN 127 // from:
SAY #88566 /* ~No. Nooo! You, Neera! You did this!~ */
IF ~~ THEN DO ~SetGlobal("OHN_minsc","GLOBAL",1) // <- this causes the dialog loop
// should be set to 2 so that the banter progresses to next phase
~ EXTERN ~BNEERA~ 57
END
Next phase:
IF WEIGHT #16
~ IfValidForPartyDialogue("NEERA")
IfValidForPartyDialogue("MINSC")
CombatCounter(0)
See("NEERA")
!AreaType(DUNGEON)
Global("OHN_minsc","GLOBAL",2)
~ THEN BEGIN 133 // from:
SAY #88576 /* ~Neera? Boo and I would like to say sorry.~ */
IF ~~ THEN DO ~SetGlobal("OHN_minsc","GLOBAL",1) // <- and this one should be set to 3 perhaps, to avoid the loop again
~ EXTERN ~BNEERA~ 61
END