MLanding.qsrc 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # MLanding
  2. $location_type = 'private'
  3. if $ARGS[0] = 'west':
  4. cls
  5. gs 'stat'
  6. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/wlanding.jpg"></center>'
  7. act 'Go to the east wing landing':gt 'MLanding', 'east'
  8. act 'Go downstairs to the foyer':gt 'MHall', 'foyer'
  9. act 'Visit the master bedroom':gt 'MWestbed', 'master'
  10. act 'Visit guest bedroom A':gt 'MWestbed', 'guest'
  11. act 'Visit the games room':gt 'MGames'
  12. if rand (0,100) < 3:
  13. cls
  14. gs 'stat'
  15. '<center><video autoplay loop src="images/locations/city/suburb/bdsm_club/sex/maid_sex_b1.mp4"></video></center>'
  16. 'A maid is being helped with the vacuum cleaning by a man in casual clothing, you think about reporting him, but he''s a bit busy right now.'
  17. gs 'arousal', 'voyeur', 5
  18. gs 'arousal', 'end'
  19. gs 'stat'
  20. act 'Return': gt 'MLanding', 'west'
  21. end
  22. end
  23. if $ARGS[0] = 'east':
  24. cls
  25. gs 'stat'
  26. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/elanding.jpg"></center>'
  27. act 'Go to the west wing landing':gt 'MLanding', 'west'
  28. act 'Go downstairs to the foyer':gt 'MHall', 'foyer'
  29. act 'Go downstairs to the west wing hallway':gt 'MHall', 'west'
  30. act 'Visit guest bedroom B':gt 'MEastbed', 'guestB'
  31. act 'Visit guest bedroom C':gt 'MEastbed', 'guestC'
  32. act 'Visit guest bedroom D':gt 'MEastbed', 'guestD'
  33. act 'Go to the bathroom': gt 'MBathrooms', 'bath'
  34. act 'Go to the living room': gt 'MLiving'
  35. end
  36. --- MLanding ---------------------------------