underwear.qsrc 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # underwear
  2. !!gs 'underwear', 'dispose'
  3. !!gs 'underwear', 'remove'
  4. !!gs 'underwear', 'wear'
  5. if $ARGS[0] = 'dispose':
  6. gs 'panties', 'dispose'
  7. gs 'bras', 'dispose'
  8. end
  9. if $ARGS[0] = 'remove':
  10. !!check for swimwear to prevent duplicate stripping stopping Sveta putting underwear on when she puts her clothes on
  11. if $clothingworntype ! 'danilovich_swimsuit' and $clothingworntype ! 'scandalicious_swimsuit' and $clothingworntype ! 'scandalicious_bikinis' and $clothingworntype ! 'allure_swimsuit' and $clothingworntype ! 'allure_bikinis' and ($pantyworntype ! 'none' or $braworntype ! 'none'):
  12. if $pantyworntype = 'none':
  13. panty_none = 1
  14. else
  15. gs 'panties', 'remove'
  16. end
  17. if $braworntype = 'none':
  18. bra_none = 1
  19. else
  20. gs 'bras', 'remove'
  21. end
  22. end
  23. end
  24. if $ARGS[0] = 'wear':
  25. if panty_none = 0: gs 'panties', 'wear'
  26. if bra_none = 0: gs 'bras', 'wear'
  27. end
  28. if $ARGS[0] = 'dresser':
  29. 'In your dresser, you can sort through all your underwear. Much of it is just regular underwear, but you can also own some distinct items.'
  30. 'The distinct items are sorted into bras and panties and by the shop in which they were purchased. They must be picked here, and automatic options will default to regular underwear.'
  31. *nl
  32. 'The wear panties and bra options here are for the regular underwear, the large buttons for choosing unique items.'
  33. *nl
  34. 'Your dresser contains <<clrbelo>> pairs of regular panties and <<clrbra>> regular bras.'
  35. *nl
  36. *nl
  37. *nl
  38. *nl
  39. *p '<center><a href="exec:gt ''bras'', ''view_bra_list'', ''clean'', 6"><img src="images/system/icons/bra.png"></a> <a href="exec:gt ''panties'', ''view_panty_list'', ''clean'', 6"><img src="images/system/icons/panties.png"></a></center>'
  40. dynamic $wearpan
  41. dynamic $removepan
  42. act 'Return': gt $loc, $loc_arg
  43. end
  44. --- underwear ---------------------------------