MKitchen.qsrc 681 B

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