underwear.qsrc 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. panty_none = 0
  25. bra_none = 0
  26. end
  27. if $ARGS[0] = 'dresser':
  28. '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.'
  29. '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.'
  30. *nl
  31. 'The wear panties and bra options here are for the regular underwear, the large buttons for choosing unique items.'
  32. *nl
  33. 'Your dresser contains <<clrbelo>> pairs of regular panties and <<clrbra>> of regular bras.'
  34. *nl
  35. *nl
  36. *nl
  37. *nl
  38. *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>'
  39. dynamic $wearpan
  40. dynamic $removepan
  41. act 'Return': gt $loc, $metka
  42. end
  43. --- underwear ---------------------------------