MKitchen.qsrc 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # MKitchen
  2. $location_type = 'private'
  3. if $ARGS[0] = 'kitchen':
  4. $locclass = 'kitr'
  5. $loc = 'MKitchen'
  6. $loc_arg = 'kitchen'
  7. $menu_loc = 'MKitchen'
  8. $menu_arg = 'kitchen'
  9. menu_off = 0
  10. gs 'stat'
  11. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/kitchen.jpg"></center>'
  12. act 'Go to the east hall': gt 'MHall', 'east'
  13. act 'look in the pantry': gt 'MKitchen', 'pantry'
  14. end
  15. if $ARGS[0] = 'laundry':
  16. $loc = 'MKitchen'
  17. $loc_arg = 'laundry'
  18. $menu_loc = 'MKitchen'
  19. $menu_arg = 'laundry'
  20. menu_off = 0
  21. gs 'stat'
  22. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/laundry.jpg"></center>'
  23. 'The laundry'
  24. act 'Go to the east hall': gt 'MHall', 'east'
  25. end
  26. if $ARGS[0] = 'pantry':
  27. $loc = 'MKitchen'
  28. $loc_arg = 'pantry'
  29. $menu_loc = 'MKitchen'
  30. $menu_arg = 'pantry'
  31. menu_off = 0
  32. gs 'stat'
  33. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/pantry.jpg"></center>'
  34. act 'Return to the kitchen': gt 'MKitchen', 'kitchen'
  35. end
  36. --- MKitchen ---------------------------------