MBathrooms.qsrc 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # MBathrooms
  2. if $ARGS[0] = 'bath':
  3. $location_type = 'bathroom'
  4. $loc = 'MBathrooms'
  5. $metka = 'bath'
  6. $menu_loc = 'MBathrooms'
  7. $menu_arg = 'bath'
  8. menu_off = 0
  9. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/bath1.jpg"></center>'
  10. 'A luxrious bathroom, designed to indulge and relax.'
  11. gs 'din_van', 'private'
  12. act 'Return to east wing landing':gt'MLanding', 'east'
  13. end
  14. if $ARGS[0] = 'ensuite':
  15. $location_type = 'bathroom'
  16. $loc = 'MBathrooms'
  17. $metka = 'ensuite'
  18. $menu_loc = 'MBathrooms'
  19. $menu_arg = 'ensuite'
  20. menu_off = 0
  21. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/ensuite1.jpg"></center>'
  22. 'An ensuite bathroom'
  23. gs 'din_van', 'private'
  24. end
  25. if $ARGS[0] = 'restroom':
  26. $location_type = 'bathroom'
  27. $loc = 'MBathrooms'
  28. $metka = 'restroom'
  29. $menu_loc = 'MBathrooms'
  30. $menu_arg = 'restroom'
  31. menu_off = 0
  32. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/rest.jpg"></center>'
  33. 'A beautiful little room for taking care of the essentials and making yourself look good.'
  34. gs 'din_van', 'private'
  35. act 'Return to foyer':gt'MHall', 'foyer'
  36. end
  37. --- MBathrooms ---------------------------------