The ship can shoot 12 different bullets, they all are the same, just look differently. I want to use a random number 1-12 and attach a different MC to my ship when he shoots for each number representing a different bullet.
How would I do this without making 12 classes, because whenever I change
var missile = _root.attachMovie( "Missile" , "Missile" + _root.getNextHighestDepth(), _root.getNextHighestDepth() );
and change the “Missile” part to another movie clip name, it doesn’t work.
Thanks in advanced.
Loading