Quick explanation: I have a text variable RESPONSES1 = [Response1; Response2; Response3; Response4 ...] and RESPONSES2 = [String1, String2, Response3, String4 ...] which is basically being read from a txt file. As you probably noticed, there might be some phrases (Response3) in the second list that are already present in the first list.
Is it possible to make VA say: "{TXT:RESPONSES1} {TXT:RESPONSES2}" but somehow make sure it doesn't select the same option twice? (i.e. it never says "Welcome back welcome back') Is there even a way to check the phrase VA has selected without it saying it?
I know I can do it in a plugin by comparing two variables and re-selecting one of them if they're the same. but I really like the simplicity of just reading it from a file (since I need this file anyway);