I'm at cooking, so I can't write a roman, but here a idea:

I made something like this some weeks ago (spawming PowerUps in a cycle)
Code:
int anzahl = 5; //numbers of Ents
	VECTOR vec_platzierung;
	var drehung = 360 / anzahl;
	vec_set(vec_platzierung, vector(300,0,0)); // place around 0,0,0 with distance of 300 Quants
	for(i=0;i<anzahl;i++)
	{
		vec_rotate(vec_platzierung, vector(drehung,0,0)); // turn the place around
		you = ent_create(...);
	}



edit: txesmi was quicker and did it like a (math) boss ^^

Last edited by JoGa; 04/12/12 16:10.