hi,

i want to create some holes on the walls when u shoot but when more than one player is on the server u cant see your own holes just the ones of the other players,it apears for one second an dthen its invisible for you, any idea?

Code:
function set_Schussloch()
{	
	set(my,TRANSLUCENT);
	my.alpha=80;
	set(my,PASSABLE);

	vec_to_angle(my.pan,normal);
	
	c_move(me,vector(0.2,0,0),nullvector,GLIDE);
	
	my.roll = random(360);
	
	my.scale_x=0.2;
	my.scale_y=0.2;
	my.scale_z=0.2;
	
	my.pan += 0.01;
	my.tilt+= 0.01;
	my.roll+= 0.01;
	while(enet_ent_globpointer(my) == ANET_ERROR)
	{
		wait(1);	
	} 
	enet_send_flags(enet_ent_globpointer(my), 1,8,BROADCAST);
	enet_send_angle(enet_ent_globpointer(my),BROADCAST,0);
	enet_send_pos(enet_ent_globpointer(my),BROADCAST,0);
	wait(Schusslochdauer);	
	while(my.alpha>0)
	{
		my.alpha-=0.2;
		wait(1);
	}
	enet_ent_remove(enet_ent_globpointer(my));
}