Quote:

Great 4 debugging traces or scans ( some may not know yet ):
Code:

c_trace ()... / c_scan ()...
if (HIT_TARGET) draw_point3d (target.x, vector (50, 50, 255), 100, 3);

Displays a red point, one frame long, at "target"s - vector - position.
, how to make this in a while for a group? I have it now for one ent permanently but can't seem to do it for a whole group:

Code:
c_scan...
if (HIT_TARGET) 
{
VECTOR target_vec;
vec_set(target_vec, target.x);
while (1) { draw_point3d (target_vec, vector (50, 50, 255), 100, 3); wait(1); }
}



@alibaba, thats a smart idea. My only question with this is if particle creation is allowed in event functions? I remember reading in the manual that I can't do things like ent_create etc. in events, so I thought that included things like effect (...).