MBallroom.qsrc 794 B

1234567891011121314151617181920212223242526272829303132333435
  1. # MBallroom
  2. if $ARGS[0] = 'ballroom':
  3. $location_type = 'private'
  4. $loc = 'MBallroom'
  5. $loc_arg = 'ballroom'
  6. $menu_loc = 'MBallroom'
  7. $menu_arg = 'ballroom'
  8. menu_off = 0
  9. cls
  10. gs 'stat'
  11. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/ballroom.jpg"></center>'
  12. 'Ballroom'
  13. act 'Go to west wing hall': gt 'MHall', 'west'
  14. act 'Go to the atrium': gt 'MBallroom', 'atrium'
  15. end
  16. if $ARGS[0] = 'atrium':
  17. $location_type = 'private'
  18. $loc = 'MBallroom'
  19. $loc_arg = 'atrium'
  20. $menu_loc = 'MBallroom'
  21. $menu_arg = 'atrium'
  22. menu_off = 0
  23. cls
  24. gs 'stat'
  25. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/atrium.jpg"></center>'
  26. 'Atrium'
  27. act 'Go to the Ballroom': gt 'MBallroom', 'ballroom'
  28. end
  29. --- MBallroom ---------------------------------