MLanding 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # MLanding
  2. $location_type = 'private'
  3. if $ARGS[0] = 'west':
  4. $metkaM = $ARGS[0]
  5. $locM = $CURLOC
  6. cls
  7. gs 'stat'
  8. '<center><img src="images/locations/city/suburb/bdsm_club/wlanding.jpg"></center>'
  9. act 'Go to the east wing landing':gt 'MLanding', 'east'
  10. act 'Go downstairs to the foyer':gt 'MHall', 'foyer'
  11. act 'Visit the master bedroom':gt 'MWestbed', 'master'
  12. act 'Visit guest bedroom A':gt 'MWestbed', 'guest'
  13. act 'Visit the games room':gt 'MGames'
  14. if rand (0,100) < 3:
  15. cls
  16. gs 'stat'
  17. '<center><img src="images/locations/city/suburb/bdsm_club/sex/maid_sex_b1.gif"></center>'
  18. '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.'
  19. gs 'arousal', 'voyeur', 5
  20. gs 'arousal', 'end'
  21. gs 'stat'
  22. act 'Return': gt 'MLanding', 'west'
  23. end
  24. end
  25. if $ARGS[0] = 'east':
  26. $metkaM = $ARGS[0]
  27. $locM = $CURLOC
  28. cls
  29. gs 'stat'
  30. '<center><img src="images/locations/city/suburb/bdsm_club/elanding.jpg"></center>'
  31. act 'Go to the west wing landing':gt 'MLanding', 'west'
  32. act 'Go downstairs to the foyer':gt 'MHall', 'foyer'
  33. act 'Go downstairs to the west wing hallway':gt 'MHall', 'west'
  34. act 'Visit guest bedroom B':gt 'MEastbed', 'guestB'
  35. act 'Visit guest bedroom C':gt 'MEastbed', 'guestC'
  36. act 'Visit guest bedroom D':gt 'MEastbed', 'guestD'
  37. act 'Go to the bathroom': gt 'MBathrooms', 'bath'
  38. act 'Go to the living room': gt 'MLiving'
  39. end
  40. --- MLanding ---------------------------------