1234567891011121314151617181920212223242526272829303132333435 |
- # bdsm_ballroom
- if $ARGS[0] = 'ballroom':
- $location_type = 'private'
- $loc = 'bdsm_ballroom'
- $loc_arg = 'ballroom'
- $menu_loc = 'bdsm_ballroom'
- $menu_arg = 'ballroom'
- menu_off = 0
- cls
- gs 'stat'
- '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/ballroom.jpg"></center>'
- 'Ballroom'
- act 'Go to the Foyer': gt 'bdsm_hallway', 'foyer'
- act 'Go to the Atrium': gt 'bdsm_ballroom', 'atrium'
- end
- if $ARGS[0] = 'atrium':
- $location_type = 'private'
- $loc = 'bdsm_ballroom'
- $loc_arg = 'atrium'
- $menu_loc = 'bdsm_ballroom'
- $menu_arg = 'atrium'
- menu_off = 0
- cls
- gs 'stat'
- '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/atrium.jpg"></center>'
- 'Atrium'
- act 'Go to the Ballroom': gt 'bdsm_ballroom', 'ballroom'
- end
- --- bdsm_ballroom ---------------------------------
|