underwear 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. # underwear
  2. !!gs 'underwear', 'dispose'
  3. !!gs 'underwear', 'remove'
  4. !!gs 'underwear', 'wear'
  5. !!gs 'underwear', 'linen'
  6. !!gs 'underwear', 'fresh'
  7. if $ARGS[0] = 'dispose':
  8. gs 'panties', 'dispose'
  9. gs 'bras', 'dispose'
  10. end
  11. if $ARGS[0] = 'remove':
  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. if $ARGS[0] = 'wear':
  24. if panty_none = 0: gs 'panties', 'wear'
  25. if bra_none = 0: gs 'bras', 'wear'
  26. end
  27. if $ARGS[0] = 'linen':
  28. if $pantyworntype = 'none':
  29. panty_none = 1
  30. else
  31. gs 'panties', 'linen'
  32. end
  33. if $braworntype = 'none':
  34. bra_none = 1
  35. else
  36. gs 'bras', 'linen'
  37. end
  38. end
  39. if $ARGS[0] = 'fresh':
  40. if panty_none = 0: gs 'panties', 'fresh'
  41. if bra_none = 0: gs 'bras', 'fresh'
  42. end
  43. if $ARGS[0] = 'dresser':
  44. '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.'
  45. '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.'
  46. *nl
  47. 'The wear panties and bra options here are for the regular underwear, the large buttons for choosing unique items.'
  48. *nl
  49. 'Your dresser contains <<clrbelo>> pairs of regular panties and <<clrbra>> of regular bras.'
  50. *nl
  51. *nl
  52. *nl
  53. *nl
  54. *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>'
  55. dynamic $wearpan
  56. dynamic $removepan
  57. act 'Return': gt $loc, $metka
  58. end
  59. if $ARGS[0] = 'cleaning':
  60. i = 1
  61. :loopboutiquepanties
  62. if boutique_pantiesC[i] = 1: dynamic 'boutique_pantiesC[<<i>>] -= 1'
  63. i += 1
  64. if i <= ARRSIZE('boutique_panties'):jump 'loopboutiquepanties'
  65. i = 1
  66. :loopexhibitionistpanties
  67. if exhibitionist_pantiesC[i] = 1: dynamic 'exhibitionist_pantiesC[<<i>>] -= 1'
  68. i += 1
  69. if i <= ARRSIZE('exhibitionist_panties'):jump 'loopexhibitionistpanties'
  70. i = 1
  71. :loopfashionistapanties
  72. if fashionista_pantiesC[i] = 1: dynamic 'fashionista_pantiesC[<<i>>] -= 1'
  73. i += 1
  74. if i <= ARRSIZE('fashionista_panties'):jump 'loopfashionistapanties'
  75. i = 1
  76. :loopkatspanties
  77. if kats_pantiesC[i] = 1: dynamic 'kats_pantiesC[<<i>>] -= 1'
  78. i += 1
  79. if i <= ARRSIZE('kats_panties'):jump 'loopkatspanties'
  80. i = 1
  81. :loopsexshoppanties
  82. if sexshop_pantiesC[i] = 1: dynamic 'sexshop_pantiesC[<<i>>] -= 1'
  83. i += 1
  84. if i <= ARRSIZE('sexshop_panties'):jump 'loopsexshoppanties'
  85. i = 1
  86. :loopboutiquebras
  87. if boutique_brasC[i] = 1: dynamic 'boutique_brasC[<<i>>] -= 1'
  88. i += 1
  89. if i <= ARRSIZE('boutique_bras'):jump 'loopboutiquebras'
  90. i = 1
  91. :loopexhibitionistbras
  92. if exhibitionist_brasC[i] = 1: dynamic 'exhibitionist_brasC[<<i>>] -= 1'
  93. i += 1
  94. if i <= ARRSIZE('exhibitionist_bras'):jump 'loopexhibitionistbras'
  95. i = 1
  96. :loopfashionistabras
  97. if fashionista_brasC[i] = 1: dynamic 'fashionista_brasC[<<i>>] -= 1'
  98. i += 1
  99. if i <= ARRSIZE('fashionista_bras'):jump 'loopfashionistabras'
  100. i = 1
  101. :loopkatsbras
  102. if kats_brasC[i] = 1: dynamic 'kats_brasC[<<i>>] -= 1'
  103. i += 1
  104. if i <= ARRSIZE('kats_bras'):jump 'loopkatsbras'
  105. i = 1
  106. :loopsexshopbras
  107. if sexshop_brasC[i] = 1: dynamic 'sexshop_brasC[<<i>>] -= 1'
  108. i += 1
  109. if i <= ARRSIZE('sexshop_bras'):jump 'loopsexshopbras'
  110. clrbelo += dirtbelo
  111. dirtbelo = 0
  112. washingbelo = 0
  113. clrbra += dirtbra
  114. dirtbra = 0
  115. washingbra = 0
  116. end
  117. --- underwear ---------------------------------