1
0

MBallroom.qsrc 586 B

12345678910111213141516171819202122232425
  1. # MBallroom
  2. if $ARGS[0] = 'ballroom':
  3. $location_type = 'private'
  4. cls
  5. gs 'stat'
  6. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/ballroom.jpg"></center>'
  7. 'Ballroom'
  8. act 'Go to west wing hall': gt 'MHall', 'west'
  9. act 'Go to the atrium': gt 'MBallroom', 'atrium'
  10. end
  11. if $ARGS[0] = 'atrium':
  12. $location_type = 'private'
  13. cls
  14. gs 'stat'
  15. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/atrium.jpg"></center>'
  16. 'Atrium'
  17. act 'Go to the Ballroom': gt 'MBallroom', 'ballroom'
  18. end
  19. --- MBallroom ---------------------------------