MKitchen 750 B

12345678910111213141516171819202122232425262728
  1. # MKitchen
  2. $location_type = 'private'
  3. if $ARGS[0] = 'kitchen':
  4. $metkaM = $ARGS[0]
  5. $locM = $CURLOC
  6. '<center><img 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. $metkaM = $ARGS[0]
  12. $locM = $CURLOC
  13. '<center><img src="images/locations/city/suburb/bdsm_club/laundry.jpg"></center>'
  14. 'The laundry'
  15. act 'Go to the east hall': gt 'MHall', 'east'
  16. end
  17. if $ARGS[0] = 'pantry':
  18. $metkaM = $ARGS[0]
  19. $locM = $CURLOC
  20. '<center><img src="images/locations/city/suburb/bdsm_club/pantry.jpg"></center>'
  21. act 'Return to the kitchen': gt 'MKitchen', 'kitchen'
  22. end
  23. --- MKitchen ---------------------------------