I just wanted to ask how to create an object correct with anet.
I tryed:

Code:
action weapon_generator()
{
	set(my,PASSABLE); 
	set(my,INVISIBLE);
	
	wait(1);
	while (my)
	{
		wait(-10);
		ent_create ("deagle.mdl", vector(-600 + random(1200),-600 + random(1200),my.z), deagle); 
		
		wait(1);
	}
}



But that doesn't happen at the same time with all clients...
What do I have to do?