12345678910111213141516171819202122232425262728 |
- # MKitchen
- $location_type = 'private'
- if $ARGS[0] = 'kitchen':
- $metkaM = $ARGS[0]
- $locM = $CURLOC
- '<center><img src="images/locations/city/suburb/bdsm_club/kitchen.jpg"></center>'
- act 'Go to the east hall': gt 'MHall', 'east'
- act 'look in the pantry': gt 'MKitchen', 'pantry'
- end
- if $ARGS[0] = 'laundry':
- $metkaM = $ARGS[0]
- $locM = $CURLOC
- '<center><img src="images/locations/city/suburb/bdsm_club/laundry.jpg"></center>'
- 'The laundry'
- act 'Go to the east hall': gt 'MHall', 'east'
- end
- if $ARGS[0] = 'pantry':
- $metkaM = $ARGS[0]
- $locM = $CURLOC
- '<center><img src="images/locations/city/suburb/bdsm_club/pantry.jpg"></center>'
- act 'Return to the kitchen': gt 'MKitchen', 'kitchen'
- end
- --- MKitchen ---------------------------------
|