home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / SphereShift.dxr / Internal_25.ls < prev    next >
Encoding:
Text File  |  2002-01-25  |  429 b   |  16 lines

  1. global victory, ScoreTotal
  2.  
  3. on exitFrame me
  4.   if victory = #yes then
  5.     puppetSound(7, "winso")
  6.     member("youwin").text = "you win!!!"
  7.     member("points").text = "total score:" && string(ScoreTotal) && "pts"
  8.   else
  9.     if victory = #no then
  10.       puppetSound(7, "loseso")
  11.       member("youwin").text = "give it another try!"
  12.       member("points").text = "total score:" && string(ScoreTotal) && "pts"
  13.     end if
  14.   end if
  15. end
  16.