home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / LeadingLady.dxr / Internal_24.ls < prev    next >
Encoding:
Text File  |  2002-01-25  |  310 b   |  20 lines

  1. global gwords, county, asshole
  2.  
  3. on sex
  4.   asshole[county].add(sprite(the clickOn))
  5. end
  6.  
  7. on keyDown
  8.   if keyPressed(TAB) then
  9.     county = county + 1
  10.   end if
  11. end
  12.  
  13. on hatar
  14.   set the mouseDownScript to "sex"
  15.   asshole = [:]
  16.   repeat with i = 1 to gwords.count
  17.     asshole.addProp(gwords[i], [])
  18.   end repeat
  19. end
  20.