home *** CD-ROM | disk | FTP | other *** search
/ Oz - The Magical Adventure / Adventure.iso / pc / dkdata / rockbal.dxr / 00058_lower claw.ls < prev    next >
Encoding:
Text File  |  2000-06-01  |  447 b   |  16 lines

  1. on exitFrame
  2.   global gFrameCounter, gMasterMoves, gDifficultyLevel
  3.   if (gMasterMoves < 3) and (gDifficultyLevel > 1) then
  4.     gFrameCounter = gFrameCounter + 1
  5.     if gFrameCounter > 25 then
  6.       gMasterMoves = min(gMasterMoves + 1, 3)
  7.       go("replace_carts")
  8.     else
  9.       set the locV of sprite 52 to the locV of sprite 52 + 1
  10.       set the locV of sprite 51 to the locV of sprite 51 + 2
  11.       go(the frame)
  12.     end if
  13.   else
  14.   end if
  15. end
  16.