underwear.qsrc 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. if $pantyworntype = 'none':
  11. panty_none = 1
  12. else
  13. gs 'panties', 'remove'
  14. end
  15. if $braworntype = 'none':
  16. bra_none = 1
  17. else
  18. gs 'bras', 'remove'
  19. end
  20. end
  21. if $ARGS[0] = 'wear':
  22. if panty_none = 0: gs 'panties', 'wear'
  23. if bra_none = 0: gs 'bras', 'wear'
  24. end
  25. if $ARGS[0] = 'dresser':
  26. '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.'
  27. '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.'
  28. *nl
  29. 'The wear panties and bra options here are for the regular underwear, the large buttons for choosing unique items.'
  30. *nl
  31. 'Your dresser contains <<clrbelo>> pairs of regular panties and <<clrbra>> of regular bras.'
  32. *nl
  33. *nl
  34. *nl
  35. *nl
  36. *p '<center><a href="exec:gt ''bras'', ''view_bra_list'', ''clean'', 6"><img src="images/system/icon/bra.png"></a> <a href="exec:gt ''panties'', ''view_panty_list'', ''clean'', 6"><img src="images/system/icon/panties.png"></a></center>'
  37. dynamic $wearpan
  38. dynamic $removepan
  39. act 'Return': gt $loc, $metka
  40. end
  41. --- underwear ---------------------------------