funktioniert leider nicht...
noch immer der gleiche Fehler

Code:
function shoot_left()
{
	if(event_type == EVENT_BLOCK)
	{
		ent_remove(me);
	}
}

action aShoot_Left()
{
	my.emask |= (ENABLE_BLOCK);
	my.event = shoot_left;
	while(me)
	{
		c_move(my,nullvector, vector(-9,0,0),GLIDE | IGNORE_MODELS);
		wait(1);
	}
}