home *** CD-ROM | disk | FTP | other *** search
/ Sunday That One Day / STOD_VFS_INVIS.ISO / pc / bedroom.dxr / 00777_SetVisibles.ls < prev    next >
Encoding:
Text File  |  1995-09-15  |  724 b   |  27 lines

  1. on SetVisibles
  2.   global AlexClothes
  3.   puppetSprite(35, 1)
  4.   puppetSprite(36, 1)
  5.   puppetSprite(37, 1)
  6.   puppetSprite(38, 1)
  7.   if AlexClothes = "Sunday" then
  8.     set the visible of sprite 35 to 0
  9.     set the visible of sprite 36 to 1
  10.     set the visible of sprite 37 to 1
  11.     set the visible of sprite 38 to 1
  12.   end if
  13.   if AlexClothes = "Soccer" then
  14.     set the visible of sprite 36 to 0
  15.     set the visible of sprite 38 to 0
  16.     set the visible of sprite 35 to 1
  17.     set the visible of sprite 37 to 1
  18.   end if
  19.   if AlexClothes = "Play" then
  20.     set the visible of sprite 37 to 0
  21.     set the visible of sprite 35 to 1
  22.     set the visible of sprite 36 to 1
  23.     set the visible of sprite 38 to 1
  24.   end if
  25.   updateStage()
  26. end
  27.