Notinparty check
CaloNord
Member Posts: 1,809
Hey, a simple and quick question I'm sure has been answered a million times,
The NPC dialogue code has an in party check, eg. InParty("MINSC"), is there a not in party check? Eg. NotInParty("DYNAH")?
( Thats not it is it? )
Cheers.
The NPC dialogue code has an in party check, eg. InParty("MINSC"), is there a not in party check? Eg. NotInParty("DYNAH")?
( Thats not it is it? )
Cheers.
0
Comments
IsValidForPartyDialog("DYNAH")
!IsValidForPartyDialog("DYNAH")
You could also use !InParty("DYNAH") if you just want to check if she's not in party full-stop.
Been working on banters and it will only make sense to have this one trigger if Dynaheir isn't in the party, given it pertains to how she was kidnapped by gnolls. So that will be very helpful!
Thanks very much!