I'm trying to make out a projectile, a bullet but I can not. The bullet appears but does not move.

Quote:
if(mouse_left){
ent_create ("bala.mdl", vector(prota.x - 5,prota.y + 7, prota.z + 14), disparar);
}

action disparar (){
my.scale_x = 0.1;
my.scale_y = 0.1;
my.scale_z = 0.1;

my.pan = your.pan; // face same direction as player
c_move(my,vector(40*time_step,0,0),NULL,IGNORE_YOU);
}