12345678910111213141516171819202122232425 |
- # MBallroom
- if $ARGS[0] = 'ballroom':
- $location_type = 'private'
- cls
- gs 'stat'
- '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/ballroom.jpg"></center>'
- 'Ballroom'
- act 'Go to west wing hall': gt 'MHall', 'west'
- act 'Go to the atrium': gt 'MBallroom', 'atrium'
- end
- if $ARGS[0] = 'atrium':
- $location_type = 'private'
- cls
- gs 'stat'
- '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/atrium.jpg"></center>'
- 'Atrium'
- act 'Go to the Ballroom': gt 'MBallroom', 'ballroom'
- end
- --- MBallroom ---------------------------------
|