home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Classicos / DesktopInvaders.swf / scripts / frame_8 / DoAction_6.as < prev    next >
Encoding:
Text File  |  2006-06-13  |  387 b   |  14 lines

  1. county = "0";
  2. count = "1";
  3. while(totbul >= count)
  4. {
  5.    x = shipx - "1" + count;
  6.    y = shipy + "1";
  7.    duplicateMovieClip("/bullet","bullet" add count,count + "148" + 16384);
  8.    setProperty("/bullet" add count, _X, x * "4" + bulloffx);
  9.    setProperty("/bullet" add count, _Y, y * "4" + bulloffy);
  10.    set("bullx" add count,x);
  11.    set("bully" add count,y);
  12.    count += "1";
  13. }
  14.