1
0

MKitchen 681 B

123456789101112131415161718192021222324252627
  1. # MKitchen
  2. if $ARGS[0] = 'kitchen':
  3. $metkaM = $ARGS[0]
  4. $locM = $CURLOC
  5. '<center><img src="images/BDSM_Club/Kitchen/kitchen.jpg"></center>'
  6. act 'Go to the east hall': gt 'MHall', 'east'
  7. act 'look in the pantry': gt 'MKitchen', 'pantry'
  8. end
  9. if $ARGS[0] = 'laundry':
  10. $metkaM = $ARGS[0]
  11. $locM = $CURLOC
  12. '<center><img src="images/BDSM_Club/Kitchen/laundry.jpg"></center>'
  13. 'The laundry'
  14. act 'Go to the east hall': gt 'MHall', 'east'
  15. end
  16. if $ARGS[0] = 'pantry':
  17. $metkaM = $ARGS[0]
  18. $locM = $CURLOC
  19. '<center><img src="images/BDSM_Club/Kitchen/pantry.jpg"></center>'
  20. act 'Return to the kitchen': gt 'MKitchen', 'kitchen'
  21. end
  22. --- MKitchen ---------------------------------