MBallroom 588 B

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