Brief rundown of what I'm trying, basically in a quest I'm making after my quest and "Blood Ties" is complete dialogue options open with Brailee Ewers who asks if she can move in to my vault to be with her daughter (An NPC i've created for the quest) After the dialogue I add a travel package to Brailee, and add a new package for when she gets to the vault. All this works fine, a day or so later she turns up at the vault. Now what I'm trying to do is have Joannie (her daughter) comment to the player that her mum has moved in. Just seems to make sense that she'd mention it!
This is what I've tried!
Make a quest script for the main quest page which is
"scn Vault1QuestScript
BEGIN GameMode
short BraileeMovedIn
set BraileeMovedIn to 0
END"
Then in the On End box of the travel to the vault package I added this
"short BraileeMovedIn
BraileeEwersRef.addscriptpackage 1VaultWander
Set v1vault1quest.BraileeMovedIn to 1"
And in a dialogue Greeting option for Joannie I added a condition for GetQuestVariable questname, BraileeMovedIn == 1 (run on subject)
As the quest variable option showed up I thought I'd done it right but in game all I get from Joannie is the greeting option for before Brailee moves in.
Am I close to being right or completely wrong