# MHall
CLOSE ALL
if $ARGS[0] = 'foyer':
$metkaM = $ARGS[0]
$locM = $CURLOC
cls
gs 'stat'
'
'
'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.'
'Descreetly to the sides of the staircases are two rest rooms.'
act 'Leave the club':
if $clothingworntype ! 'nude':
gt 'BDSM_Club', 'start'
else
msg'You need to get dressed.'
gt'MHall','foyer'
end
end
if $BDSMrole = 's':
act 'Go to Dressing room': gt 'MDressing'
if ($clothingworntype ! 'uniform' or PCloStyle2 ! 1) and $clothingworntype ! 'nude':exit
end
act 'Go upstairs to the west wing landing':gt 'MLanding', 'west'
act 'Go upstairs to the east wing landing':gt 'MLanding', 'east'
act 'Go to the Dining room':gt 'MDining'
act 'Go to the west wing hallway':gt 'MHall', 'west'
act 'Go to the east wing hallway':gt 'MHall', 'east'
act 'Go to the rest room': gt 'MBathrooms', 'restroom'
end
if $ARGS[0] = 'west':
$metkaM = $ARGS[0]
$locM = $CURLOC
cls
gs 'stat'
''
'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.'
'The dressing room is to your right and at the end of the hallway is the ball room leading to the atrium.'
act 'Go to the foyer':gt 'MHall', 'foyer'
act 'Go to reception':gt 'BDSM_Club', 'reception'
act 'Go to the libary':gt 'MLibrary'
act 'Go to the Ball room':gt 'MBallroom', 'ballroom'
end
if $ARGS[0] = 'east':
$metkaM = $ARGS[0]
$locM = $CURLOC
cls
gs 'stat'
''
'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.'
'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.'
act 'Go to the foyer':gt 'MHall', 'foyer'
act 'Go to the conservatory': gt 'MConservatory'
act 'Go to the dining room':gt 'MDining'
act 'Go to the kitchen':gt 'MKitchen', 'kitchen'
act 'Go to the laundry':gt 'MKitchen', 'laundry'
act 'Go upstairs to the west wing landing':gt 'MLanding', 'west'
act 'Go down to the basement':gt 'MBasement'
if rand (0,100) < 3:
cls
horny += 5
gs 'stat'
''
'A sexy domme in her underwear is leading a sub upstairs by her leash.'
act 'Return': gt 'MHall', 'east'
elseif rand (0,100) < 3:
cls
horny += 5
gs 'stat'
''
'A submissive woman is give her dominant a blowjob while another sub watches from the stairs.'
act 'Return': gt 'MHall', 'east'
elseif rand (0,100) < 3:
cls
horny += 5
gs 'stat'
''
'One of the maids is giving her dominant a blowjob by the small staircase.'
act 'Continue':
cls
horny += 5
gs 'stat'
''
'It looks like she has learnt to overcome her gag-reflex.'
act 'Return': gt 'MHall', 'east'
end
end
end
--- MHall ---------------------------------