1
0

outfit.qsrc 641 B

123456789101112131415161718192021222324252627282930313233343536
  1. # outfit
  2. if $ARGS[0] = 'set_tags':
  3. if PCloStyle2 = 6 and PShoStyle2 = 2:
  4. PCloSport = 1
  5. else
  6. PCloSport = 0
  7. end
  8. gs 'prostitution_functions', 'work_clothes'
  9. !{
  10. if PPanFun = 3 and (PBraFun = 3 or $braworntype = 'none') and $clothingworntype = 'nude':
  11. PCloSwimwear = 1
  12. else
  13. PCloSwimwear = 0
  14. end
  15. }
  16. end
  17. if $ARGS[0] = 'exposure_calc':
  18. CoverTop = (PCloCoverTop + PBraCover) - 4
  19. if CoverTop < 0: CoverTop = 0
  20. CoverBack = (PCloCoverBack + PPanCoverBack) - 4
  21. if CoverBack < 0: CoverBack = 0
  22. CoverFront = (PCloCoverFront + PPanCoverFront) - 4
  23. if CoverFront < 0: CoverFront = 0
  24. end
  25. --- outfit ----------------------------