To Truffleclock:
onClipEvent(enterFrame){
for(i=0;i>1;i++){
trace("Fuck off, Nobody likes you")
}
}
to dynamically duplicate enemy's you would set up a variable to tell how many kills the guy has. name this "kills"
then set up how many the most kills there is, name that: "maxKills"
then on the frame have this:
i=0
_root.onEnterFrame=function(){
chance=int(Math.random()*maxKills)
if(kills>chance){
i++
_root.attachMovie("enemy","enemy"+i,i)
_root["enemy"+i]._x=int(Math.random()*Stag
e.width)
_root["enemy"+i]._y=int(Math.random()*Stag
e.height)
}
}
then just give your enemy the linkage name of "enemy" or change it to duplicateMovieClip()