MKitchen.qsrc 712 B

123456789101112131415161718192021222324
  1. # MKitchen
  2. $location_type = 'private'
  3. if $ARGS[0] = 'kitchen':
  4. $locclass = 'kitr'
  5. gs 'stat'
  6. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/kitchen.jpg"></center>'
  7. act 'Go to the east hall': gt 'MHall', 'east'
  8. act 'look in the pantry': gt 'MKitchen', 'pantry'
  9. end
  10. if $ARGS[0] = 'laundry':
  11. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/laundry.jpg"></center>'
  12. 'The laundry'
  13. act 'Go to the east hall': gt 'MHall', 'east'
  14. end
  15. if $ARGS[0] = 'pantry':
  16. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/pantry.jpg"></center>'
  17. act 'Return to the kitchen': gt 'MKitchen', 'kitchen'
  18. end
  19. --- MKitchen ---------------------------------