home *** CD-ROM | disk | FTP | other *** search
/ A Virtual Reality Guide to Texas / CD.iso / texdata / arcextra / tbits.dir / 00046.ls < prev    next >
Encoding:
Text File  |  1998-06-23  |  533 b   |  26 lines

  1. on decpict
  2.   global numPicts, curpict, basepict
  3.   if numPicts > 1 then
  4.     if curpict = 1 then
  5.       set curpict to numPicts
  6.     else
  7.       set curpict to curpict - 1
  8.     end if
  9.     put curpict
  10.     set the castNum of sprite 46 to basepict + curpict - 1
  11.   end if
  12. end
  13.  
  14. on incpict
  15.   global numPicts, curpict, basepict
  16.   if numPicts > 1 then
  17.     if curpict = numPicts then
  18.       set curpict to 1
  19.     else
  20.       set curpict to curpict + 1
  21.     end if
  22.     put curpict
  23.     set the castNum of sprite 46 to basepict + curpict - 1
  24.   end if
  25. end
  26.