starenie.qsrc 940 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # starenie
  2. $loc_clothestypes[1]='cheap'
  3. $loc_clothestypes[2]='average'
  4. $loc_clothestypes[3]='expensive'
  5. $loc_clothestypes[4]='formal'
  6. $loc_clothestypes[5]='office'
  7. $loc_clothestypes[6]='school'
  8. $loc_clothestypes[7]='exercise'
  9. $loc_clothestypes[8]='fetish'
  10. $loc_clothestypes[9]='exhibit'
  11. $loc_clothestypes[10]='uniform'
  12. $loc_clothestypes[11]='coat'
  13. $loc_clothestypes[12]='swimwear'
  14. $loc_clothestypes[13]='burlesque'
  15. $loc_clothestypes[14]='alternative'
  16. ! disable wearing base school form
  17. schoolW[6] = 0
  18. ! wearing cicle
  19. j = 1
  20. :loopclotype
  21. i = 1
  22. :loopclonum
  23. dynamic "
  24. if <<$loc_clothestypes[j]>>W[i] = 1:
  25. <<$loc_clothestypes[j]>>W[i] = 0
  26. <<$loc_clothestypes[j]>>H[i] -= 1
  27. end
  28. "
  29. i += 1
  30. if i < ARRSIZE('<<$loc_clothestypes[j]>>W'):jump 'loopclonum'
  31. killvar '$<<$loc_clothestypes[j]>>W'
  32. j += 1
  33. if j < ARRSIZE('$loc_clothestypes'):jump 'loopclotype'
  34. killvar '$loc_clothestypes'
  35. --- starenie ---------------------------------