home *** CD-ROM | disk | FTP | other *** search
/ GameStar Special 2004 August / GSSH0804.iso / Geschicklichkeit / Enigma / Enigma-081.exe / data / levels / meditation2.lua < prev    next >
Text File  |  2003-05-28  |  743b  |  23 lines

  1. levelw = 20
  2. levelh = 13
  3.  
  4. create_world(levelw, levelh)
  5. enigma.ConserveLevel=FALSE
  6.  
  7. fill_floor("fl-water", 0,0, level_width,level_height)
  8. fill_floor("fl-gray",   2,2, level_width-4,level_height-4)
  9. fill_floor("fl-sand",  3,3, level_width-6,level_height-6)
  10. fill_floor("fl-gray",   7,4, level_width-14,level_height-8)
  11. fill_floor("fl-water", 8,5, level_width-16,level_height-10)
  12.  
  13. hollow(3,3)
  14. hollow(level_width-4,level_height-4)
  15. hollow(level_width-4, 3)
  16. hollow(3,level_height-4)
  17.  
  18. set_actor("ac-whiteball-small", 6.7,5.7, {player=0, mouseforce=1})
  19. set_actor("ac-whiteball-small",13.3,5.7, {player=0, mouseforce=1})
  20. set_actor("ac-whiteball-small", 6.7,7.3, {player=0, mouseforce=1})
  21. set_actor("ac-whiteball-small",13.3,7.3, {player=0, mouseforce=1})
  22.  
  23.