How would i solve this problem the correct/easy way
I wan't to create an object every 1 sec at some chosen/random locations (1-20).
If there already is an object at that location a new one should not spawn at that location instead pick any other of the open locations.
This is what i started with:
Every 1 sec :
Set variable "position" - choose(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19)
Create object "objectname" at 100+(32*"position"), 10
I'm probably overthinking this one.
Anyone got any good solution?