Not sure but you could test by using test players and doing something like respawning them from the event to see who is effected. What I would do for a situation like this is have a QuestProgressed Trigger that you trigger with the agent who did it, then run a OnQuestProgressed(maybeA : ?agent) function that does whatever you want with just the activating agent.
I believe you’re asking whether calling ExitStrength.Signal() resumes ALL tasks that were previously suspended by calling ExitStrength.Await() or just some of them.
The answer is that all tasks are resumed.
So, yes, if two players are waiting for the ExitStrength signal (i.e. you called UpdateStrengthUI twice) and the signal is emitted afterwards, then both of their UI’s will be exited. (Given that both calls are referencing the signal from the same class instance)
Thank you so much! I ended up testing it with some of my friends and that ended up being the result as well.
What I did as a work around, is that since I already have a Custom Player class for persistence, I added the events into there, and that seemed to have done the job perfectly!