123456789101112131415161718192021222324252627282930313233343536373839404142 |
- # bdsm_kitchen
- $location_type = 'private'
- if $ARGS[0] = 'kitchen':
- $locclass = 'kitr'
- $loc = 'bdsm_kitchen'
- $loc_arg = 'kitchen'
- $menu_loc = 'bdsm_kitchen'
- $menu_arg = 'kitchen'
- menu_off = 0
- gs 'stat'
- '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/kitchen.jpg"></center>'
- act 'Go to the Foyer': gt 'bdsm_hallway', 'foyer'
- act 'Go to the laundry room': gt 'bdsm_kitchen', 'laundry'
- act 'Look in the pantry': gt 'bdsm_kitchen', 'pantry'
- end
- if $ARGS[0] = 'laundry':
- $loc = 'bdsm_kitchen'
- $loc_arg = 'laundry'
- $menu_loc = 'bdsm_kitchen'
- $menu_arg = 'laundry'
- menu_off = 0
- gs 'stat'
- '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/laundry.jpg"></center>'
- 'The laundry'
- act 'Return to the Kitchen': gt 'bdsm_kitchen', 'kitchen'
- end
- if $ARGS[0] = 'pantry':
- $loc = 'bdsm_kitchen'
- $loc_arg = 'pantry'
- $menu_loc = 'bdsm_kitchen'
- $menu_arg = 'pantry'
- menu_off = 0
- gs 'stat'
- '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/pantry.jpg"></center>'
- act 'Return to the kitchen': gt 'bdsm_kitchen', 'kitchen'
- end
- --- bdsm_kitchen ---------------------------------
|