As in, a Random Pool object that gives out its numbers in order?
As in, a Random Pool object that gives out its numbers in order?
Ohey, I figured out a way! So nevermind.
If anyone's interested, I can explain how I did it (or I can find out that it's a real common trick that everyone already does).
You can define the random seed yourself which will then produce numbers in a sequential order based on that seed.
Example:
Start of Frame: Randomize(23839)
Every 1 second: Set Alterable Value A("Active") to Random(1000) and it will generate the exact same sequence everytime.
Interesting Danny,
I think what UltraHammer is looking for is a pool - type data structure.
A cheap way might be the ini++ object. anyway good luck.
UltraHammer, could you explain how you did it?