home *** CD-ROM | disk | FTP | other *** search
/ Enter 2003: The Beautiful Scenery / enter-parhaat-2003.iso / files / frendz.exe / frendz.dcr / Scripts_32_b_InitIntermission.ls < prev    next >
Encoding:
Text File  |  2002-12-31  |  615 b   |  18 lines

  1. global gLevel, gBoxButton, gMessageBox, gPoints, gLastLevel, gDifficulity
  2.  
  3. on prepareFrame me
  4.   if gDifficulity = gLastLevel then
  5.     put gDifficulity && "Level - Frendz are worth" && gPoints && "points." into member "t_FriendzPoints"
  6.   else
  7.     put "Movin' up to the" && gDifficulity && "Level -" & RETURN & "Frendz are now" && gPoints && "points." into member "t_FriendzPoints"
  8.   end if
  9.   gLastLevel = gDifficulity
  10.   gMessageBox.mb_text(EMPTY)
  11.   gBoxButton = "Skip"
  12.   member("t_Score1").text = "0"
  13.   member("t_Score2").text = "0"
  14.   member("t_Level").text = string(gLevel)
  15.   setintermission()
  16.   intermission()
  17. end
  18.