bdsm_dressing.qsrc 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # bdsm_dressing
  2. $loc_arg = $ARGS[0]
  3. $loc = 'bdsm_dressing'
  4. $locM_arg = $ARGS[0]
  5. $locM = 'bdsm_dressing'
  6. $location_type = 'private'
  7. $loc = 'bdsm_dressing'
  8. $loc_arg = ''
  9. $menu_loc = 'bdsm_dressing'
  10. $menu_arg = ''
  11. !! Role cleared here and set when re-entering to allow for sub and dom usage
  12. $bdsmclub['role'] = ''
  13. menu_off = 0
  14. cls
  15. gs 'stat'
  16. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/dressingroom.jpg"></center>'
  17. 'A huge dressing room. Mostly used by submissives to dress as staff and because of this, it is a safe space and games are not allowed.'
  18. 'It contains several <a href="exec:gt ''wardrobe'', ''start''">wardrobes</a> (where you can choose outfits and organize your clothing).'
  19. 'There are whole cabinets filled with designer clothing belonging to various club members and plenty of <a href="exec:gt ''mirror'',''start''">mirrors</a> you can use.'
  20. *nl
  21. 'It is here where you must set your role for your visit, you can also change it here but must be wearing the correct clothing for your role or you will only be able to leave.'
  22. 'Submissives must wear either maid or submissive sex shop clothing or be naked.'
  23. 'Dominants must wear clothing of minimum "expensive" quality.'
  24. if ($clothingworntype = 'gm_maid' or PCloStyle2 = 1) or PCloStyle3 = 2 or $clothingworntype = 'nude':
  25. act 'Enter the club''s foyer (submissive role)':
  26. $bdsmclub['role'] = 'sub'
  27. gt 'bdsm_hallway', 'foyer'
  28. end
  29. end
  30. if PCloQuality >= 5 and bdsmclub['payday'] + 30 > daystart and bdsmclub['domtraining'] = 2:
  31. act 'Enter the club''s foyer (dominant role)':
  32. $bdsmclub['role'] = 'dom'
  33. gt 'bdsm_hallway', 'foyer'
  34. end
  35. end
  36. if bdsmclub['payday'] + 30 <= daystart:
  37. *nl
  38. 'You do not have a paid subscription so you cannot enter the club as a dominant, you can go direct to the office and pay from here.'
  39. act 'Go to office and pay subscription': gt 'bdsm_mansion', 'office'
  40. end
  41. act 'Go to the Foyer (no role set)': gt 'bdsm_hallway', 'foyer'
  42. act 'Leave the club':gt 'city_suburbs', 'start'
  43. --- bdsm_dressing ---------------------------------