MHall 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # MHall
  2. CLOSE ALL
  3. if $ARGS[0] = 'foyer':
  4. $metkaM = $ARGS[0]
  5. $locM = $CURLOC
  6. cls
  7. gs 'stat'
  8. '<center><img src="images/BDSM_Club/Hallways/foyer.jpg"></center>'
  9. 'You stand in the grand foyer, your eye is draw towards and up the dual staircases. To your left is the Dinning room, to your right the dressing room.'
  10. 'Descreetly to the sides of the staircases are two rest rooms.'
  11. act 'Leave the club':
  12. if $clothingworntype ! 'nude':
  13. gt 'BDSM_Club', 'start'
  14. else
  15. msg'<b><font color = red>You need to get dressed.</font></b>'
  16. gt'MHall','foyer'
  17. end
  18. end
  19. if $BDSMrole = 's':
  20. act 'Go to Dressing room': gt 'MDressing'
  21. if ($clothingworntype ! 'uniform' or PCloStyle2 ! 1) and $clothingworntype ! 'nude':exit
  22. end
  23. act 'Go upstairs to the west wing landing':gt 'MLanding', 'west'
  24. act 'Go upstairs to the east wing landing':gt 'MLanding', 'east'
  25. act 'Go to the Dining room':gt 'MDining'
  26. act 'Go to the west wing hallway':gt 'MHall', 'west'
  27. act 'Go to the east wing hallway':gt 'MHall', 'east'
  28. act 'Go to the rest room': gt 'MBathrooms', 'restroom'
  29. end
  30. if $ARGS[0] = 'west':
  31. $metkaM = $ARGS[0]
  32. $locM = $CURLOC
  33. cls
  34. gs 'stat'
  35. '<center><img src="images/BDSM_Club/Hallways/hall.jpg"></center>'
  36. 'You are standing in the west wing hallway, the reception and office are located here. If you need to speak to management, you need to go to the reception.'
  37. 'The dressing room is to your right and at the end of the hallway is the ball room leading to the atrium.'
  38. act 'Go to the foyer':gt 'MHall', 'foyer'
  39. act 'Go to reception':gt 'BDSM_Club', 'reception'
  40. act 'Go to the libary':gt 'MLibrary'
  41. act 'Go to the Ball room':gt 'MBallroom', 'ballroom'
  42. end
  43. if $ARGS[0] = 'east':
  44. $metkaM = $ARGS[0]
  45. $locM = $CURLOC
  46. cls
  47. gs 'stat'
  48. '<center><img src="images/BDSM_Club/Hallways/hall.jpg"></center>'
  49. 'You are standing in the east wing hallway, you can feel the warm air from the conservatory to your right and the dinning room is to your left.'
  50. 'Further down the hallway are the kitchen, pantry and laundry room. At the end of the hall is are stairs leading up to the guest bedrooms and down to the basement.'
  51. act 'Go to the foyer':gt 'MHall', 'foyer'
  52. act 'Go to the conservatory': gt 'MConservatory'
  53. act 'Go to the dining room':gt 'MDining'
  54. act 'Go to the kitchen':gt 'MKitchen', 'kitchen'
  55. act 'Go to the laundry':gt 'MKitchen', 'laundry'
  56. act 'Go upstairs to the west wing landing':gt 'MLanding', 'west'
  57. act 'Go down to the basement':gt 'MBasement'
  58. if rand (0,100) < 3:
  59. cls
  60. horny += 5
  61. gs 'stat'
  62. '<center><img src="images/BDSM_Club/Hallways/maid_miss2.jpg"></center>'
  63. 'A sexy domme in her underwear is leading a sub upstairs by her leash.'
  64. act 'Return': gt 'MHall', 'east'
  65. elseif rand (0,100) < 3:
  66. cls
  67. horny += 5
  68. gs 'stat'
  69. '<center><img src="images/BDSM_Club/Hallways/maid_b5.gif"></center>'
  70. 'A submissive woman is give her dominant a blowjob while another sub watches from the stairs.'
  71. act 'Return': gt 'MHall', 'east'
  72. elseif rand (0,100) < 3:
  73. cls
  74. horny += 5
  75. gs 'stat'
  76. '<center><img src="images/BDSM_Club/Hallways/maid_b3.gif"></center>'
  77. 'One of the maids is giving her dominant a blowjob by the small staircase.'
  78. act 'Continue':
  79. cls
  80. horny += 5
  81. gs 'stat'
  82. '<center><img src="images/BDSM_Club/Hallways/maid_b4.gif"></center>'
  83. 'It looks like she has learnt to overcome her gag-reflex.'
  84. act 'Return': gt 'MHall', 'east'
  85. end
  86. end
  87. end
  88. --- MHall ---------------------------------