home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 165 / XENIATGM165.ISO / cddata / main.dxr / 00020_showm.ls < prev    next >
Encoding:
Text File  |  2003-05-29  |  309 b   |  21 lines

  1. global showm, tb
  2.  
  3. on new me
  4.   tb = the ticks
  5.   sprite(95).visible = 0
  6. end
  7.  
  8. on prepareFrame
  9.   if showm = 1 then
  10.     sprite(95).visible = 1
  11.     tb = the ticks
  12.     showm = 2
  13.   end if
  14.   if showm = 2 then
  15.     if (the ticks - tb) > (3 * 50) then
  16.       sprite(95).visible = 0
  17.       showm = 0
  18.     end if
  19.   end if
  20. end
  21.