Yeah I understand that, but say I want the stream to decide the same location for multiple actors. How would I do that? If I use the same stream over and over again it will plop all actors in the same spot, since it pulls the same number.
But say I got an array of actors and I use a loop to generate a random int to say which actor to pull from array. In that loop, it will just reuse the same int once it is decided by the stream, I attempted to solve this with an increment int on the stream and then use that for the next number but it just increments down the array for some reason?