home *** CD-ROM | disk | FTP | other *** search
/ Oz - The Magical Adventure / Adventure.iso / pc / dkdata / juice.dxr / orchard_45_setGameOrchard.ls < prev    next >
Encoding:
Text File  |  2000-06-01  |  588 b   |  26 lines

  1. on setGameOrchard
  2.   global gGameSol, gFrameCounter, gNumberOfMovesLeft, gMasterMoves, gDifficultyLevel, gGameState, gCursorHidden, gDropRate, gGameRate
  3.   gMasterMoves = 3
  4.   gNumberOfMovesLeft = gMasterMoves
  5.   gFrameCounter = 0
  6.   puppetSprite(37, 1)
  7.   sprite(37).cursor = 200
  8.   repeat with i = 42 to 47
  9.     sprite(i).cursor = 200
  10.   end repeat
  11.   gCursorHidden = 1
  12.   cursor(200)
  13.   case gDifficultyLevel of
  14.     1:
  15.       gDropRate = 6
  16.       gGameRate = 35
  17.     2:
  18.       gDropRate = 8
  19.       gGameRate = 25
  20.     3:
  21.       gDropRate = 12
  22.       gGameRate = 18
  23.   end case
  24.   gGameState = "0,0,0,0"
  25. end
  26.