starenie.qsrc 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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]='gm_coats'
  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]='scandalicious_dress'
  18. $loc_clothestypes[17]='scandalicious_outfits'
  19. $loc_clothestypes[18]='scandalicious_bikinis'
  20. $loc_clothestypes[19]='scandalicious_swimsuit'
  21. $loc_clothestypes[20]='exhibit'
  22. $loc_clothestypes[21]='eroto_dress'
  23. $loc_clothestypes[22]='fancy_burlesque'
  24. $loc_clothestypes[23]='dolls_outfits'
  25. $loc_clothestypes[24]='dolls_dress'
  26. $loc_clothestypes[25]='bomba_outfits'
  27. $loc_clothestypes[26]='bomba_dress'
  28. $loc_clothestypes[27]='danilovich'
  29. $loc_clothestypes[28]='swimwear'
  30. $loc_clothestypes[29]='cats_coats'
  31. $loc_clothestypes[30]='moncheri_coats'
  32. $loc_clothestypes[31]='dolls_coats'
  33. $loc_clothestypes[32]='bomba_coats'
  34. $loc_clothestypes[33]='danilovich_coats'
  35. $loc_clothestypes[34]='danilovich_swimsuit'
  36. $loc_clothestypes[35]='allure_bikinis'
  37. $loc_clothestypes[36]='allure_swimsuit'
  38. $loc_clothestypes[37]='market_outfits'
  39. $loc_clothestypes[38]='eroto_outfits'
  40. $loc_clothestypes[39]='eroto_strip'
  41. ! disable wearing base school form
  42. schoolW[6] = 0
  43. ! wearing cicle
  44. j = 1
  45. :loopclotype
  46. i = 1
  47. :loopclonum
  48. dynamic "
  49. if <<$loc_clothestypes[j]>>_w[i] = 1:
  50. <<$loc_clothestypes[j]>>_w[i] = 0
  51. <<$loc_clothestypes[j]>>_h[i] -= 1
  52. end
  53. "
  54. i += 1
  55. if i < ARRSIZE('<<$loc_clothestypes[j]>>_w'):jump 'loopclonum'
  56. killvar '$<<$loc_clothestypes[j]>>_w'
  57. j += 1
  58. if j < ARRSIZE('$loc_clothestypes'):jump 'loopclotype'
  59. killvar '$loc_clothestypes'
  60. --- starenie ---------------------------------