home *** CD-ROM | disk | FTP | other *** search
/ תקליטור אוסף נבחרי 95 / Top_95.iso / TOP95 / FUN / SHOOT / SHOOT.DXR / 00028.ls < prev    next >
Encoding:
Text File  |  1997-09-23  |  392 b   |  28 lines

  1. on enterFrame
  2.   set r to random(30)
  3.   if not soundBusy(2) then
  4.     if r = 1 then
  5.       go("fire1")
  6.     end if
  7.     if r = 2 then
  8.       go("fire2")
  9.     end if
  10.     if r = 3 then
  11.       go("fire3")
  12.     end if
  13.     if r = 4 then
  14.       go("fire4")
  15.     end if
  16.     if r = 5 then
  17.       go("fire5")
  18.     end if
  19.     if r = 6 then
  20.       go("fire6")
  21.     end if
  22.   end if
  23. end
  24.  
  25. on exitFrame
  26.   go(the frame)
  27. end
  28.