When Jaheira is summoned away, can I recruit a stand-in?
Son_of_Imoen
Member Posts: 1,806
I finished rescuing 'Montaron' from the Harper Hold and right after Xzar gets finished Meronia summons Jaheira and Jaheira leaves, making my 6-people party a 5-people party for now.
Now I was planning to do De'Arnises Hold and my question is, if I take Nalia (who is awaiting our party at her Keep) in the 6th slot, will it prevent Jaheira from reappearing or can I just continue with 6 slots filled: will I be offered the choice to reform my party when Jaheira returns?
Now I was planning to do De'Arnises Hold and my question is, if I take Nalia (who is awaiting our party at her Keep) in the 6th slot, will it prevent Jaheira from reappearing or can I just continue with 6 slots filled: will I be offered the choice to reform my party when Jaheira returns?
1
Comments
PartyRested()
GlobalTimerExpired("JaheiraReturn","GLOBAL")this is Seven Hours
Global("JaheiraReturns","GLOBAL",0)
- you can replace her in between, just consider what happens when you next rest your party. Personally, I always use the interim to *try out* some seldom used NPC to see if maybe this is a candidate for the longer term.
IF
PartyRested() // obvious
GlobalTimerExpired("JaheiraReturn","GLOBAL") // minimim seven in-game hours after she left
Global("JaheiraReturns","GLOBAL",0) // she has not returned yet
THEN
RESPONSE #100
SetGlobal("JaheiraReturns","GLOBAL",1) //prevents that the event loops a second time
MoveGlobalObject("Jaheira",Player1) // Jaheira appears next to the protagonist
END
For her only appearing only outside the IF block above would need an additional condition, i.e.
IF
PartyRested()
GlobalTimerExpired("JaheiraReturn","GLOBAL")
Global("JaheiraReturns","GLOBAL",0)
AreaType(OUTDOOR)
THEN...