starenie.qsrc 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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[41]='moncheri_gown'
  43. $loc_clothestypes[42]='salacious_outfits'
  44. $loc_clothestypes[43]='materinstvo_dress'
  45. ! disable wearing base school form
  46. schoolW[6] = 0
  47. ! wearing cicle
  48. j = 1
  49. :loopclotype
  50. i = 1
  51. :loopclonum
  52. dynamic "
  53. if <<$loc_clothestypes[j]>>_w[i] = 1:
  54. <<$loc_clothestypes[j]>>_w[i] = 0
  55. <<$loc_clothestypes[j]>>_h[i] -= 1
  56. end
  57. "
  58. i += 1
  59. if i < ARRSIZE('<<$loc_clothestypes[j]>>_w'):jump 'loopclonum'
  60. killvar '$<<$loc_clothestypes[j]>>_w'
  61. j += 1
  62. if j < ARRSIZE('$loc_clothestypes'):jump 'loopclotype'
  63. killvar '$loc_clothestypes'
  64. --- starenie ---------------------------------