bdsm_kitchen.qsrc 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # bdsm_kitchen
  2. $location_type = 'private'
  3. if $ARGS[0] = 'kitchen':
  4. $locclass = 'kitr'
  5. $loc = 'bdsm_kitchen'
  6. $loc_arg = 'kitchen'
  7. $menu_loc = 'bdsm_kitchen'
  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 Foyer': gt 'bdsm_hallway', 'foyer'
  13. act 'Go to the laundry room': gt 'bdsm_kitchen', 'laundry'
  14. act 'Look in the pantry': gt 'bdsm_kitchen', 'pantry'
  15. end
  16. if $ARGS[0] = 'laundry':
  17. $loc = 'bdsm_kitchen'
  18. $loc_arg = 'laundry'
  19. $menu_loc = 'bdsm_kitchen'
  20. $menu_arg = 'laundry'
  21. menu_off = 0
  22. gs 'stat'
  23. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/laundry.jpg"></center>'
  24. 'The laundry'
  25. act 'Return to the Kitchen': gt 'bdsm_kitchen', 'kitchen'
  26. end
  27. if $ARGS[0] = 'pantry':
  28. $loc = 'bdsm_kitchen'
  29. $loc_arg = 'pantry'
  30. $menu_loc = 'bdsm_kitchen'
  31. $menu_arg = 'pantry'
  32. menu_off = 0
  33. gs 'stat'
  34. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/pantry.jpg"></center>'
  35. act 'Return to the kitchen': gt 'bdsm_kitchen', 'kitchen'
  36. end
  37. --- bdsm_kitchen ---------------------------------