home *** CD-ROM | disk | FTP | other *** search
/ Jommeke / Jommeke.iso / movies / maze.dir / 00016_Script_16 < prev    next >
Text File  |  2000-02-23  |  703b  |  32 lines

  1. on movemonster
  2.   global mazech,monsterch
  3.   
  4.   --save the old co ords
  5.   
  6.   put the loch of sprite monsterch into mx
  7.   put the locv of sprite monsterch into my
  8.   
  9.   --  make random numbers in range -4 to 4
  10.   put random(9) into xx
  11.   put xx-5 into xx
  12.   put random(9) into yy
  13.   put yy-5 into yy
  14.   
  15.   --work out the new position
  16.   put mx+xx into mx2
  17.   put my+yy into my2
  18.   
  19.   --  set in the position
  20.   set the loch of sprite monsterch to mx2
  21.   set the locv of sprite monsterch to my2
  22.   updatestage
  23.   
  24.   if sprite (monsterch) intersects sprite (mazech) then
  25.     set the loch of sprite monsterch to mx
  26.     set the locv of sprite monsterch to my
  27.     updatestage
  28.   end if
  29.   
  30.   
  31. end
  32.