MBallroom 526 B

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