I don't think it's really possible to do very easily as it would mean adding addtional information to each npc entry. Though, if tmc or lenny or something else that is currently editing the OHR sees this and decides to add 1 or 2 extra "Appears when..." tag entries to each npc, would that be enough?
here's a script that might be helpful for this sort of thing.
Assume npcs have tags 5 6 or 7 as the tags required to be on for them to appear.
Code: Select all
plotscript,tagCheck,begin
set tag (5,off)
set tag (6,off)
set tag (7,off)
if (checktag(10)==ON,and,checktag(11)==ON,and,checktag(12)==ON)then(set tag (5,on))
if (checktag(13)==ON, or ,checktag(14)==ON, or ,checktag(15)==ON)then(set tag (6,on))
if (checktag(16)==off,and,checktag(17)==off,and,checktag(18)==off)then(set tag (7,on))
end
but at the very least, maybe this quoted reply will shed more light on the subject