make a global (or local) variable first, lets call it "whichspawn"
Condition:
system - every 2 seconds
action
whichspawn = int(random (1,5))
system/
create object yourobject at location whichspawn.X, whichspawn.Y
something along these lines. I hope I could help.
Regards;
-Wind.
Hi Windwalker,
Thanks for your help. According to your suggestion, I solved out my issue. However, the actually code is a little bit different:
Condition:
system - every 2 seconds
action
whichspawn = int(random (1,5))
system/
create object myObject at location myObject(whichspawn).X, myObject(whichspawn).Y
Hope that will help other people as well.
Cheers,