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));
}