home *** CD-ROM | disk | FTP | other *** search
/ New Grand Theft Auto 2003 Classic Collection / PHOTOSHOP.iso / contents / sample.dxr / 00024_movieScript.ls < prev    next >
Encoding:
Text File  |  2002-04-19  |  359 b   |  17 lines

  1. on prepareMovie
  2.   the searchPath = []
  3.   append(the searchPath, "..\Sounds")
  4.   append(the searchPath, ".\Images")
  5.   if the soundEnabled and not sound(3).isBusy() then
  6.     puppetSound(3, "bgSound" & random(1))
  7.   end if
  8. end
  9.  
  10. on idle
  11.   if the soundEnabled and not sound(3).isBusy() then
  12.     puppetSound(3, "bgSound" & random(1))
  13.   else
  14.     nothing()
  15.   end if
  16. end
  17.