I need help making a spawning system where it would pick one of the two buildings then once it does that it picks one of the 5 spawns inside the building. I was thinking of making a volume around both building and then making it randomly choose one and then make it choose a spawn point inside the volume but i have no idea how to start with it.
Here’s how you setup Random Streams:
Make it a float stream, and set your range to 1-2, since you have 2 buildings.
Make a branch system checking what the float is. [Branch: is random stream float 1? True - building 1; False - building 2]
Once it has chosen the building, setup your spawn check. You’ll do this for each building (copy paste my friend).
Set a new random stream float and give it a range of 1-5.
Then, [Branch: is random stream float 1? True - spawn point 1; False - go to next branch] [Branch 2: is random stream float 2? True - spawn point 2; False - go to next branch]… you get the idea.
Let me know if that’s what you were looking for or if you need more details!
Thank you man this is exactly what I was looking for. You’re the best.