MLanding 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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/bdsm_club/hallways/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. horny += 5
  17. gs 'stat'
  18. '<center><img src="images/bdsm_club/hallways/maid_sex_b1.gif"></center>'
  19. '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.'
  20. act 'Return': gt 'MLanding', 'west'
  21. end
  22. end
  23. if $ARGS[0] = 'east':
  24. $metkaM = $ARGS[0]
  25. $locM = $CURLOC
  26. cls
  27. gs 'stat'
  28. '<center><img src="images/bdsm_club/hallways/elanding.jpg"></center>'
  29. act 'Go to the west wing landing':gt 'MLanding', 'west'
  30. act 'Go downstairs to the foyer':gt 'MHall', 'foyer'
  31. act 'Go downstairs to the west wing hallway':gt 'MHall', 'west'
  32. act 'Visit guest bedroom B':gt 'MEastbed', 'guestB'
  33. act 'Visit guest bedroom C':gt 'MEastbed', 'guestC'
  34. act 'Visit guest bedroom D':gt 'MEastbed', 'guestD'
  35. act 'Go to the bathroom': gt 'MBathrooms', 'bath'
  36. act 'Go to the living room': gt 'MLiving'
  37. end
  38. --- MLanding ---------------------------------