starenie.qsrc 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # starenie
  2. $loc_clothestypes[1]='gm_outfits'
  3. $loc_clothestypes[2]='gm_dress'
  4. $loc_clothestypes[3]='gm_office'
  5. $loc_clothestypes[4]='gm_school'
  6. $loc_clothestypes[5]='gm_uniform'
  7. $loc_clothestypes[6]='misc_outfits'
  8. $loc_clothestypes[7]='cats_dress'
  9. $loc_clothestypes[8]='cats_outfits'
  10. $loc_clothestypes[9]='flamingos_dress'
  11. $loc_clothestypes[10]='flamingos_outfits'
  12. $loc_clothestypes[11]='coat'
  13. $loc_clothestypes[12]='coco_dress'
  14. $loc_clothestypes[13]='coco_outfits'
  15. $loc_clothestypes[14]='fashionista'
  16. $loc_clothestypes[15]='moncheri'
  17. $loc_clothestypes[16]='beach'
  18. $loc_clothestypes[17]='exhibit'
  19. $loc_clothestypes[18]='fetish'
  20. $loc_clothestypes[19]='fancy_burlesque'
  21. $loc_clothestypes[20]='dolls_outfits'
  22. $loc_clothestypes[21]='dolls_dress'
  23. $loc_clothestypes[22]='bomba_outfits'
  24. $loc_clothestypes[23]='bomba_dress'
  25. $loc_clothestypes[24]='exercise'
  26. $loc_clothestypes[25]='swimwear'
  27. ! disable wearing base school form
  28. schoolW[6] = 0
  29. ! wearing cicle
  30. j = 1
  31. :loopclotype
  32. i = 1
  33. :loopclonum
  34. dynamic "
  35. if <<$loc_clothestypes[j]>>_w[i] = 1:
  36. <<$loc_clothestypes[j]>>_w[i] = 0
  37. <<$loc_clothestypes[j]>>_h[i] -= 1
  38. end
  39. "
  40. i += 1
  41. if i < ARRSIZE('<<$loc_clothestypes[j]>>_w'):jump 'loopclonum'
  42. killvar '$<<$loc_clothestypes[j]>>_w'
  43. j += 1
  44. if j < ARRSIZE('$loc_clothestypes'):jump 'loopclotype'
  45. killvar '$loc_clothestypes'
  46. --- starenie ---------------------------------