starenie.qsrc 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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_maid'
  7. $loc_clothestypes[6]='gm_server'
  8. $loc_clothestypes[7]='misc_outfits'
  9. $loc_clothestypes[8]='cats_dress'
  10. $loc_clothestypes[9]='cats_outfits'
  11. $loc_clothestypes[10]='flamingos_dress'
  12. $loc_clothestypes[11]='flamingos_outfits'
  13. $loc_clothestypes[12]='gm_coats'
  14. $loc_clothestypes[13]='coco_dress'
  15. $loc_clothestypes[14]='coco_outfits'
  16. $loc_clothestypes[15]='fashionista'
  17. $loc_clothestypes[16]='moncheri_dress'
  18. $loc_clothestypes[17]='scandalicious_dress'
  19. $loc_clothestypes[18]='scandalicious_outfits'
  20. $loc_clothestypes[19]='scandalicious_bikinis'
  21. $loc_clothestypes[20]='scandalicious_swimsuit'
  22. $loc_clothestypes[21]='salacious_dress'
  23. $loc_clothestypes[22]='eroto_dress'
  24. $loc_clothestypes[23]='fancy_burlesque'
  25. $loc_clothestypes[24]='dolls_outfits'
  26. $loc_clothestypes[25]='dolls_dress'
  27. $loc_clothestypes[26]='bomba_outfits'
  28. $loc_clothestypes[27]='bomba_dress'
  29. $loc_clothestypes[28]='danilovich'
  30. $loc_clothestypes[29]='swimwear'
  31. $loc_clothestypes[30]='cats_coats'
  32. $loc_clothestypes[31]='moncheri_coats'
  33. $loc_clothestypes[32]='dolls_coats'
  34. $loc_clothestypes[33]='bomba_coats'
  35. $loc_clothestypes[34]='danilovich_coats'
  36. $loc_clothestypes[35]='danilovich_swimsuit'
  37. $loc_clothestypes[36]='allure_bikinis'
  38. $loc_clothestypes[37]='allure_swimsuit'
  39. $loc_clothestypes[38]='market_outfits'
  40. $loc_clothestypes[39]='eroto_outfits'
  41. $loc_clothestypes[40]='eroto_strip'
  42. $loc_clothestypes[21]='moncheri_gown'
  43. $loc_clothestypes[21]='salacious_outfits'
  44. ! disable wearing base school form
  45. schoolW[6] = 0
  46. ! wearing cicle
  47. j = 1
  48. :loopclotype
  49. i = 1
  50. :loopclonum
  51. dynamic "
  52. if <<$loc_clothestypes[j]>>_w[i] = 1:
  53. <<$loc_clothestypes[j]>>_w[i] = 0
  54. <<$loc_clothestypes[j]>>_h[i] -= 1
  55. end
  56. "
  57. i += 1
  58. if i < ARRSIZE('<<$loc_clothestypes[j]>>_w'):jump 'loopclonum'
  59. killvar '$<<$loc_clothestypes[j]>>_w'
  60. j += 1
  61. if j < ARRSIZE('$loc_clothestypes'):jump 'loopclotype'
  62. killvar '$loc_clothestypes'
  63. --- starenie ---------------------------------