aTunarianscout6600081.lua 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/aTunarianscout6600081.lua
  3. Script Author : Rylec
  4. Script Date : 2021.03.18 05:03:32
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. local model = MakeRandomInt(1,2)
  10. if model == 1 then
  11. SetModelType(NPC, "132") -- human female
  12. SpawnSet(NPC, "soga_model_type", "132")
  13. SpawnSet(NPC, "chest_type", "5529")
  14. SpawnSet(NPC, "legs_type", "5530")
  15. HumanCosmetics(NPC)
  16. elseif model == 2 then
  17. SetModelType(NPC, "134") -- human male
  18. SpawnSet(NPC, "soga_model_type", "134")
  19. SpawnSet(NPC, "chest_type", "5533")
  20. SpawnSet(NPC, "legs_type", "5534")
  21. HumanCosmetics(NPC)
  22. end
  23. SetEquipment(NPC, 2, 0)
  24. end
  25. function hailed(NPC, Spawn)
  26. FaceTarget(NPC, Spawn)
  27. end
  28. function respawn(NPC)
  29. spawn(NPC)
  30. end
  31. function HumanCosmetics(NPC)
  32. local hair = MakeRandomInt(1121,1140) -- f: 1116 (f|), 1123 (f|m), 1125 (f|m), 1126 (f|m), 1127 (|m), 1129 (f|), 1130 (f|m), 1133 (f|m), 1134 (f|m), 1135 (f|), 1136 (f|), 1140 (f|)
  33. SpawnSet(NPC, "hair_type", hair)
  34. SpawnSet(NPC, "soga_hair_type", hair)
  35. local beard = MakeRandomInt(1164,1191) -- 1168, 1171, 1184, 1185, 1187, 1188
  36. local beard_chance = MakeRandomInt(1,100)
  37. if beard_chance < 51 then
  38. SpawnSet(NPC, "facial_hair_type", "0")
  39. SpawnSet(NPC, "soga_facial_hair_type", "0")
  40. else
  41. SpawnSet(NPC, "facial_hair_type", beard)
  42. SpawnSet(NPC, "soga_facial_hair_type", beard)
  43. end
  44. local overall_look = MakeRandomInt(20,20)
  45. if overall_look == 1 then -- Chestnut yellow stribes
  46. SpawnSet(NPC, "skin_color", "234 195 198")
  47. SpawnSet(NPC, "soga_skin_color", "234 195 198")
  48. SpawnSet(NPC, "eye_color", "102 74 34")
  49. SpawnSet(NPC, "soga_eye_color", "102 74 34")
  50. SpawnSet(NPC, "hair_type_color", "5 2 2")
  51. SpawnSet(NPC, "soga_hair_type_color", "5 2 2")
  52. SpawnSet(NPC, "hair_face_color", "5 2 2")
  53. SpawnSet(NPC, "soga_hair_face_color", "5 2 2")
  54. SpawnSet(NPC, "hair_type_highlight_color", "228 172 24")
  55. SpawnSet(NPC, "soga_hair_type_highlight_color", "228 172 24")
  56. SpawnSet(NPC, "hair_face_highlight_color", "228 172 24")
  57. SpawnSet(NPC, "soga_hair_face_highlight_color", "228 172 24")
  58. SpawnSet(NPC, "hair_color1", "38 22 21")
  59. SpawnSet(NPC, "soga_hair_color1", "38 22 21")
  60. SpawnSet(NPC, "hair_color2", "120 50 0")
  61. SpawnSet(NPC, "soga_hair_color2", "120 50 0")
  62. SpawnSet(NPC, "hair_highlight", "200 165 96")
  63. SpawnSet(NPC, "soga_hair_highlight", "200 165 96")
  64. elseif overall_look == 2 then -- Black light with white stribes
  65. SpawnSet(NPC, "skin_color", "211 199 150")
  66. SpawnSet(NPC, "soga_skin_color", "211 199 150")
  67. SpawnSet(NPC, "eye_color", "57 120 128")
  68. SpawnSet(NPC, "soga_eye_color", "57 120 128")
  69. SpawnSet(NPC, "hair_type_color", "15 1 21")
  70. SpawnSet(NPC, "soga_hair_type_color", "15 1 21")
  71. SpawnSet(NPC, "hair_face_color", "15 1 21")
  72. SpawnSet(NPC, "soga_hair_face_color", "15 1 21")
  73. SpawnSet(NPC, "hair_type_highlight_color", "244 246 246")
  74. SpawnSet(NPC, "soga_hair_type_highlight_color", "244 246 246")
  75. SpawnSet(NPC, "hair_face_highlight_color", "244 246 246")
  76. SpawnSet(NPC, "soga_hair_face_highlight_color", "244 246 246")
  77. SpawnSet(NPC, "hair_color1", "29 21 28")
  78. SpawnSet(NPC, "soga_hair_color1", "29 21 28")
  79. SpawnSet(NPC, "hair_color2", "39 32 39")
  80. SpawnSet(NPC, "soga_hair_color2", "39 32 39")
  81. SpawnSet(NPC, "hair_highlight", "161 165 168")
  82. SpawnSet(NPC, "soga_hair_highlight", "161 165 168")
  83. elseif overall_look == 3 then -- Black light brown skin
  84. SpawnSet(NPC, "skin_color", "84 89 89")
  85. SpawnSet(NPC, "soga_skin_color", "84 89 89")
  86. SpawnSet(NPC, "eye_color", "40 81 93")
  87. SpawnSet(NPC, "soga_eye_color", "40 81 93")
  88. SpawnSet(NPC, "hair_type_color", "15 1 21")
  89. SpawnSet(NPC, "soga_hair_type_color", "15 1 21")
  90. SpawnSet(NPC, "hair_face_color", "15 1 21")
  91. SpawnSet(NPC, "soga_hair_face_color", "15 1 21")
  92. SpawnSet(NPC, "hair_type_highlight_color", "8 3 4")
  93. SpawnSet(NPC, "soga_hair_type_highlight_color", "8 3 4")
  94. SpawnSet(NPC, "hair_face_highlight_color", "8 3 4")
  95. SpawnSet(NPC, "soga_hair_face_highlight_color", "8 3 4")
  96. SpawnSet(NPC, "hair_color1", "29 21 28")
  97. SpawnSet(NPC, "soga_hair_color1", "29 21 28")
  98. SpawnSet(NPC, "hair_color2", "39 32 39")
  99. SpawnSet(NPC, "soga_hair_color2", "39 32 39")
  100. SpawnSet(NPC, "hair_highlight", "38 22 21")
  101. SpawnSet(NPC, "soga_hair_highlight", "38 22 21")
  102. elseif overall_look == 4 then -- Brown orange stribes
  103. SpawnSet(NPC, "skin_color", "245 249 245")
  104. SpawnSet(NPC, "soga_skin_color", "245 249 245")
  105. SpawnSet(NPC, "eye_color", "43 70 43")
  106. SpawnSet(NPC, "soga_eye_color", "43 70 43")
  107. SpawnSet(NPC, "hair_type_color", "37 22 5")
  108. SpawnSet(NPC, "soga_hair_type_color", "37 22 5")
  109. SpawnSet(NPC, "hair_face_color", "37 22 5")
  110. SpawnSet(NPC, "soga_hair_face_color", "37 22 5")
  111. SpawnSet(NPC, "hair_type_highlight_color", "121 38 35")
  112. SpawnSet(NPC, "soga_hair_type_highlight_color", "121 38 35")
  113. SpawnSet(NPC, "hair_face_highlight_color", "121 38 35")
  114. SpawnSet(NPC, "soga_hair_face_highlight_color", "121 38 35")
  115. SpawnSet(NPC, "hair_color1", "79 28 15")
  116. SpawnSet(NPC, "soga_hair_color1", "79 28 15")
  117. SpawnSet(NPC, "hair_color2", "111 64 0")
  118. SpawnSet(NPC, "soga_hair_color2", "111 64 0")
  119. SpawnSet(NPC, "hair_highlight", "91 21 51")
  120. SpawnSet(NPC, "soga_hair_highlight", "91 21 51")
  121. elseif overall_look == 5 then -- Chocolat light
  122. SpawnSet(NPC, "skin_color", "177 159 108")
  123. SpawnSet(NPC, "soga_skin_color", "177 159 108")
  124. SpawnSet(NPC, "eye_color", "163 201 212")
  125. SpawnSet(NPC, "soga_eye_color", "163 201 212")
  126. SpawnSet(NPC, "hair_type_color", "40 20 7")
  127. SpawnSet(NPC, "soga_hair_type_color", "40 20 7")
  128. SpawnSet(NPC, "hair_face_color", "40 20 7")
  129. SpawnSet(NPC, "soga_hair_face_color", "40 20 7")
  130. SpawnSet(NPC, "hair_type_highlight_color", "47 42 59")
  131. SpawnSet(NPC, "soga_hair_type_highlight_color", "47 42 59")
  132. SpawnSet(NPC, "hair_face_highlight_color", "47 42 59")
  133. SpawnSet(NPC, "soga_hair_face_highlight_color", "47 42 59")
  134. SpawnSet(NPC, "hair_color1", "79 28 15")
  135. SpawnSet(NPC, "soga_hair_color1", "79 28 15")
  136. SpawnSet(NPC, "hair_color2", "111 64 0")
  137. SpawnSet(NPC, "soga_hair_color2", "111 64 0")
  138. SpawnSet(NPC, "hair_highlight", "43 36 70")
  139. SpawnSet(NPC, "soga_hair_highlight", "43 36 70")
  140. elseif overall_look == 6 then -- Chestnut and brown skin
  141. SpawnSet(NPC, "skin_color", "46 35 12")
  142. SpawnSet(NPC, "soga_skin_color", "46 35 12")
  143. SpawnSet(NPC, "eye_color", "105 85 44")
  144. SpawnSet(NPC, "soga_eye_color", "105 85 44")
  145. SpawnSet(NPC, "hair_type_color", "40 20 7")
  146. SpawnSet(NPC, "soga_hair_type_color", "40 20 7")
  147. SpawnSet(NPC, "hair_face_color", "40 20 7")
  148. SpawnSet(NPC, "soga_hair_face_color", "40 20 7")
  149. SpawnSet(NPC, "hair_type_highlight_color", "47 42 59")
  150. SpawnSet(NPC, "soga_hair_type_highlight_color", "47 42 59")
  151. SpawnSet(NPC, "hair_face_highlight_color", "47 42 59")
  152. SpawnSet(NPC, "soga_hair_face_highlight_color", "47 42 59")
  153. SpawnSet(NPC, "hair_color1", "0 0 0")
  154. SpawnSet(NPC, "soga_hair_color1", "0 0 0")
  155. SpawnSet(NPC, "hair_color2", "0 0 0")
  156. SpawnSet(NPC, "soga_hair_color2", "0 0 0")
  157. SpawnSet(NPC, "hair_highlight", "0 0 0")
  158. SpawnSet(NPC, "soga_hair_highlight", "0 0 0")
  159. elseif overall_look == 7 then -- Grey dark
  160. SpawnSet(NPC, "skin_color", "243 251 251")
  161. SpawnSet(NPC, "soga_skin_color", "243 251 251")
  162. SpawnSet(NPC, "eye_color", "173 142 88")
  163. SpawnSet(NPC, "soga_eye_color", "173 142 88")
  164. SpawnSet(NPC, "hair_type_color", "49 47 61")
  165. SpawnSet(NPC, "soga_hair_type_color", "49 47 61")
  166. SpawnSet(NPC, "hair_face_color", "49 47 61")
  167. SpawnSet(NPC, "soga_hair_face_color", "49 47 61")
  168. SpawnSet(NPC, "hair_type_highlight_color", "42 29 2")
  169. SpawnSet(NPC, "soga_hair_type_highlight_color", "42 29 2")
  170. SpawnSet(NPC, "hair_face_highlight_color", "42 29 2")
  171. SpawnSet(NPC, "soga_hair_face_highlight_color", "42 29 2")
  172. SpawnSet(NPC, "hair_color1", "43 36 70")
  173. SpawnSet(NPC, "soga_hair_color1", "43 36 70")
  174. SpawnSet(NPC, "hair_color2", "64 76 74")
  175. SpawnSet(NPC, "soga_hair_color2", "64 76 74")
  176. SpawnSet(NPC, "hair_highlight", "79 28 15")
  177. SpawnSet(NPC, "soga_hair_highlight", "79 28 15")
  178. elseif overall_look == 8 then -- Grey dark
  179. SpawnSet(NPC, "skin_color", "186 191 170")
  180. SpawnSet(NPC, "soga_skin_color", "186 191 170")
  181. SpawnSet(NPC, "eye_color", "38 77 88")
  182. SpawnSet(NPC, "soga_eye_color", "38 77 88")
  183. SpawnSet(NPC, "hair_type_color", "59 58 73")
  184. SpawnSet(NPC, "soga_hair_type_color", "59 58 73")
  185. SpawnSet(NPC, "hair_face_color", "59 58 73")
  186. SpawnSet(NPC, "soga_hair_face_color", "59 58 73")
  187. SpawnSet(NPC, "hair_type_highlight_color", "119 147 147")
  188. SpawnSet(NPC, "soga_hair_type_highlight_color", "119 147 147")
  189. SpawnSet(NPC, "hair_face_highlight_color", "119 147 147")
  190. SpawnSet(NPC, "soga_hair_face_highlight_color", "119 147 147")
  191. SpawnSet(NPC, "hair_color1", "43 36 70")
  192. SpawnSet(NPC, "soga_hair_color1", "43 36 70")
  193. SpawnSet(NPC, "hair_color2", "64 76 74")
  194. SpawnSet(NPC, "soga_hair_color2", "64 76 74")
  195. SpawnSet(NPC, "hair_highlight", "114 112 142")
  196. SpawnSet(NPC, "soga_hair_highlight", "114 112 142")
  197. elseif overall_look == 9 then -- Orange
  198. SpawnSet(NPC, "skin_color", "136 118 120")
  199. SpawnSet(NPC, "soga_skin_color", "136 118 120")
  200. SpawnSet(NPC, "eye_color", "84 139 114")
  201. SpawnSet(NPC, "soga_eye_color", "84 139 114")
  202. SpawnSet(NPC, "hair_type_color", "84 0 0")
  203. SpawnSet(NPC, "soga_hair_type_color", "84 0 0")
  204. SpawnSet(NPC, "hair_face_color", "84 0 0")
  205. SpawnSet(NPC, "soga_hair_face_color", "84 0 0")
  206. SpawnSet(NPC, "hair_type_highlight_color", "35 24 1")
  207. SpawnSet(NPC, "soga_hair_type_highlight_color", "35 24 1")
  208. SpawnSet(NPC, "hair_face_highlight_color", "35 24 1")
  209. SpawnSet(NPC, "soga_hair_face_highlight_color", "35 24 1")
  210. SpawnSet(NPC, "hair_color1", "109 14 49")
  211. SpawnSet(NPC, "soga_hair_color1", "109 14 49")
  212. SpawnSet(NPC, "hair_color2", "185 97 0")
  213. SpawnSet(NPC, "soga_hair_color2", "185 97 0")
  214. SpawnSet(NPC, "hair_highlight", "79 28 15")
  215. SpawnSet(NPC, "soga_hair_highlight", "79 28 15")
  216. elseif overall_look == 10 then -- Orange light
  217. SpawnSet(NPC, "skin_color", "105 112 109")
  218. SpawnSet(NPC, "soga_skin_color", "105 112 109")
  219. SpawnSet(NPC, "eye_color", "41 82 95")
  220. SpawnSet(NPC, "soga_eye_color", "41 82 95")
  221. SpawnSet(NPC, "hair_type_color", "100 70 10")
  222. SpawnSet(NPC, "soga_hair_type_color", "100 70 10")
  223. SpawnSet(NPC, "hair_face_color", "100 70 10")
  224. SpawnSet(NPC, "soga_hair_face_color", "100 70 10")
  225. SpawnSet(NPC, "hair_type_highlight_color", "232 183 30")
  226. SpawnSet(NPC, "soga_hair_type_highlight_color", "232 183 30")
  227. SpawnSet(NPC, "hair_face_highlight_color", "232 183 30")
  228. SpawnSet(NPC, "soga_hair_face_highlight_color", "232 183 30")
  229. SpawnSet(NPC, "hair_color1", "56 33 26")
  230. SpawnSet(NPC, "soga_hair_color1", "56 33 26")
  231. SpawnSet(NPC, "hair_color2", "94 59 11")
  232. SpawnSet(NPC, "soga_hair_color2", "94 59 11")
  233. SpawnSet(NPC, "hair_highlight", "246 219 114")
  234. SpawnSet(NPC, "soga_hair_highlight", "246 219 114")
  235. elseif overall_look == 11 then -- Orange light
  236. SpawnSet(NPC, "skin_color", "228 177 149")
  237. SpawnSet(NPC, "soga_skin_color", "228 177 149")
  238. SpawnSet(NPC, "eye_color", "144 188 195")
  239. SpawnSet(NPC, "soga_eye_color", "144 188 195")
  240. SpawnSet(NPC, "hair_type_color", "121 38 35")
  241. SpawnSet(NPC, "soga_hair_type_color", "121 38 35")
  242. SpawnSet(NPC, "hair_face_color", "121 38 35")
  243. SpawnSet(NPC, "soga_hair_face_color", "121 38 35")
  244. SpawnSet(NPC, "hair_type_highlight_color", "47 33 3")
  245. SpawnSet(NPC, "soga_hair_type_highlight_color", "47 33 3")
  246. SpawnSet(NPC, "hair_face_highlight_color", "47 33 3")
  247. SpawnSet(NPC, "soga_hair_face_highlight_color", "47 33 3")
  248. SpawnSet(NPC, "hair_color1", "91 21 51")
  249. SpawnSet(NPC, "soga_hair_color1", "91 21 51")
  250. SpawnSet(NPC, "hair_color2", "159 88 0")
  251. SpawnSet(NPC, "soga_hair_color2", "159 88 0")
  252. SpawnSet(NPC, "hair_highlight", "79 28 15")
  253. SpawnSet(NPC, "soga_hair_highlight", "79 28 15")
  254. elseif overall_look == 12 then -- Orange light
  255. SpawnSet(NPC, "skin_color", "234 183 184")
  256. SpawnSet(NPC, "soga_skin_color", "234 183 184")
  257. SpawnSet(NPC, "eye_color", "54 109 126")
  258. SpawnSet(NPC, "soga_eye_color", "54 109 126")
  259. SpawnSet(NPC, "hair_type_color", "150 51 27")
  260. SpawnSet(NPC, "soga_hair_type_color", "150 51 27")
  261. SpawnSet(NPC, "hair_face_color", "150 51 27")
  262. SpawnSet(NPC, "soga_hair_face_color", "150 51 27")
  263. SpawnSet(NPC, "hair_type_highlight_color", "45 14 18")
  264. SpawnSet(NPC, "soga_hair_type_highlight_color", "45 14 18")
  265. SpawnSet(NPC, "hair_face_highlight_color", "45 14 18")
  266. SpawnSet(NPC, "soga_hair_face_highlight_color", "45 14 18")
  267. SpawnSet(NPC, "hair_color1", "89 21 21")
  268. SpawnSet(NPC, "soga_hair_color1", "89 21 21")
  269. SpawnSet(NPC, "hair_color2", "171 87 0")
  270. SpawnSet(NPC, "soga_hair_color2", "171 87 0")
  271. SpawnSet(NPC, "hair_highlight", "54 45 28")
  272. SpawnSet(NPC, "soga_hair_highlight", "54 45 28")
  273. elseif overall_look == 13 then -- White bright
  274. SpawnSet(NPC, "skin_color", "243 250 242")
  275. SpawnSet(NPC, "soga_skin_color", "243 250 242")
  276. SpawnSet(NPC, "eye_color", "152 183 163")
  277. SpawnSet(NPC, "soga_eye_color", "152 183 163")
  278. SpawnSet(NPC, "hair_type_color", "152 173 173")
  279. SpawnSet(NPC, "soga_hair_type_color", "152 173 173")
  280. SpawnSet(NPC, "hair_face_color", "152 173 173")
  281. SpawnSet(NPC, "soga_hair_face_color", "152 173 173")
  282. SpawnSet(NPC, "hair_type_highlight_color", "174 69 28")
  283. SpawnSet(NPC, "soga_hair_type_highlight_color", "174 69 28")
  284. SpawnSet(NPC, "hair_face_highlight_color", "174 69 28")
  285. SpawnSet(NPC, "soga_hair_face_highlight_color", "174 69 28")
  286. SpawnSet(NPC, "hair_color1", "114 112 142")
  287. SpawnSet(NPC, "soga_hair_color1", "114 112 142")
  288. SpawnSet(NPC, "hair_color2", "152 138 129")
  289. SpawnSet(NPC, "soga_hair_color2", "152 138 129")
  290. SpawnSet(NPC, "hair_highlight", "89 21 21")
  291. SpawnSet(NPC, "soga_hair_highlight", "89 21 21")
  292. elseif overall_look == 14 then -- Yellow bright white high lights
  293. SpawnSet(NPC, "skin_color", "244 250 239")
  294. SpawnSet(NPC, "soga_skin_color", "244 250 239")
  295. SpawnSet(NPC, "eye_color", "158 198 210")
  296. SpawnSet(NPC, "soga_eye_color", "158 198 210")
  297. SpawnSet(NPC, "hair_type_color", "184 128 10")
  298. SpawnSet(NPC, "soga_hair_type_color", "184 128 10")
  299. SpawnSet(NPC, "hair_face_color", "184 128 10")
  300. SpawnSet(NPC, "soga_hair_face_color", "184 128 10")
  301. SpawnSet(NPC, "hair_type_highlight_color", "244 246 246")
  302. SpawnSet(NPC, "soga_hair_type_highlight_color", "244 246 246")
  303. SpawnSet(NPC, "hair_face_highlight_color", "244 246 246")
  304. SpawnSet(NPC, "soga_hair_face_highlight_color", "244 246 246")
  305. SpawnSet(NPC, "hair_color1", "209 131 22")
  306. SpawnSet(NPC, "soga_hair_color1", "209 131 22")
  307. SpawnSet(NPC, "hair_color2", "199 150 48")
  308. SpawnSet(NPC, "soga_hair_color2", "199 150 48")
  309. SpawnSet(NPC, "hair_highlight", "161 165 168")
  310. SpawnSet(NPC, "soga_hair_highlight", "161 165 168")
  311. elseif overall_look == 15 then -- Yellow bright
  312. SpawnSet(NPC, "skin_color", "206 162 137")
  313. SpawnSet(NPC, "soga_skin_color", "206 162 137")
  314. SpawnSet(NPC, "eye_color", "47 100 102")
  315. SpawnSet(NPC, "soga_eye_color", "47 100 102")
  316. SpawnSet(NPC, "hair_type_color", "194 164 6")
  317. SpawnSet(NPC, "soga_hair_type_color", "194 164 6")
  318. SpawnSet(NPC, "hair_face_color", "194 164 6")
  319. SpawnSet(NPC, "soga_hair_face_color", "194 164 6")
  320. SpawnSet(NPC, "hair_type_highlight_color", "188 168 37")
  321. SpawnSet(NPC, "soga_hair_type_highlight_color", "188 168 37")
  322. SpawnSet(NPC, "hair_face_highlight_color", "188 168 37")
  323. SpawnSet(NPC, "soga_hair_face_highlight_color", "188 168 37")
  324. SpawnSet(NPC, "hair_color1", "38 22 21")
  325. SpawnSet(NPC, "soga_hair_color1", "38 22 21")
  326. SpawnSet(NPC, "hair_color2", "120 50 0")
  327. SpawnSet(NPC, "soga_hair_color2", "120 50 0")
  328. SpawnSet(NPC, "hair_highlight", "29 21 28")
  329. SpawnSet(NPC, "soga_hair_highlight", "29 21 28")
  330. elseif overall_look == 16 then -- Yellow bright
  331. SpawnSet(NPC, "skin_color", "186 197 195")
  332. SpawnSet(NPC, "soga_skin_color", "186 197 195")
  333. SpawnSet(NPC, "eye_color", "33 64 50")
  334. SpawnSet(NPC, "soga_eye_color", "33 64 50")
  335. SpawnSet(NPC, "hair_type_color", "219 157 24")
  336. SpawnSet(NPC, "soga_hair_type_color", "219 157 24")
  337. SpawnSet(NPC, "hair_face_color", "219 157 24")
  338. SpawnSet(NPC, "soga_hair_face_color", "219 157 24")
  339. SpawnSet(NPC, "hair_type_highlight_color", "0 0 0")
  340. SpawnSet(NPC, "soga_hair_type_highlight_color", "0 0 0")
  341. SpawnSet(NPC, "hair_face_highlight_color", "0 0 0")
  342. SpawnSet(NPC, "soga_hair_face_highlight_color", "0 0 0")
  343. SpawnSet(NPC, "hair_color1", "200 165 96")
  344. SpawnSet(NPC, "soga_hair_color1", "200 165 96")
  345. SpawnSet(NPC, "hair_color2", "173 99 44")
  346. SpawnSet(NPC, "soga_hair_color2", "173 99 44")
  347. SpawnSet(NPC, "hair_highlight", "38 22 21")
  348. SpawnSet(NPC, "soga_hair_highlight", "38 22 21")
  349. elseif overall_look == 17 then -- Yellow
  350. SpawnSet(NPC, "skin_color", "236 226 182")
  351. SpawnSet(NPC, "soga_skin_color", "236 226 182")
  352. SpawnSet(NPC, "eye_color", "31 59 41")
  353. SpawnSet(NPC, "soga_eye_color", "31 59 41")
  354. SpawnSet(NPC, "hair_type_color", "228 182 26")
  355. SpawnSet(NPC, "soga_hair_type_color", "228 182 26")
  356. SpawnSet(NPC, "hair_face_color", "228 182 26")
  357. SpawnSet(NPC, "soga_hair_face_color", "228 182 26")
  358. SpawnSet(NPC, "hair_type_highlight_color", "88 4 4")
  359. SpawnSet(NPC, "soga_hair_type_highlight_color", "88 4 4")
  360. SpawnSet(NPC, "hair_face_highlight_color", "88 4 4")
  361. SpawnSet(NPC, "soga_hair_face_highlight_color", "88 4 4")
  362. SpawnSet(NPC, "hair_color1", "246 219 114")
  363. SpawnSet(NPC, "soga_hair_color1", "246 219 114")
  364. SpawnSet(NPC, "hair_color2", "187 136 62")
  365. SpawnSet(NPC, "soga_hair_color2", "187 136 62")
  366. SpawnSet(NPC, "hair_highlight", "109 14 49")
  367. SpawnSet(NPC, "soga_hair_highlight", "109 14 49")
  368. elseif overall_look == 18 then -- Black light with purple stribes
  369. SpawnSet(NPC, "skin_color", "233 222 178")
  370. SpawnSet(NPC, "soga_skin_color", "233 222 178")
  371. SpawnSet(NPC, "eye_color", "139 121 65")
  372. SpawnSet(NPC, "soga_eye_color", "139 121 65")
  373. SpawnSet(NPC, "hair_type_color", "19 6 26")
  374. SpawnSet(NPC, "soga_hair_type_color", "19 6 26")
  375. SpawnSet(NPC, "hair_face_color", "19 6 26")
  376. SpawnSet(NPC, "soga_hair_face_color", "19 6 26")
  377. SpawnSet(NPC, "hair_type_highlight_color", "35 24 1")
  378. SpawnSet(NPC, "soga_hair_type_highlight_color", "35 24 1")
  379. SpawnSet(NPC, "hair_face_highlight_color", "35 24 1")
  380. SpawnSet(NPC, "soga_hair_face_highlight_color", "35 24 1")
  381. SpawnSet(NPC, "hair_color1", "29 21 28")
  382. SpawnSet(NPC, "soga_hair_color1", "29 21 28")
  383. SpawnSet(NPC, "hair_color2", "39 32 39")
  384. SpawnSet(NPC, "soga_hair_color2", "39 32 39")
  385. SpawnSet(NPC, "hair_highlight", "79 28 15")
  386. SpawnSet(NPC, "soga_hair_highlight", "79 28 15")
  387. elseif overall_look == 19 then -- Yellow bright
  388. SpawnSet(NPC, "skin_color", "186 197 195")
  389. SpawnSet(NPC, "soga_skin_color", "186 197 195")
  390. SpawnSet(NPC, "eye_color", "33 64 50")
  391. SpawnSet(NPC, "soga_eye_color", "33 64 50")
  392. SpawnSet(NPC, "hair_type_color", "231 170 26")
  393. SpawnSet(NPC, "soga_hair_type_color", "231 170 26")
  394. SpawnSet(NPC, "hair_face_color", "231 170 26")
  395. SpawnSet(NPC, "soga_hair_face_color", "231 170 26")
  396. SpawnSet(NPC, "hair_type_highlight_color", "40 34 51")
  397. SpawnSet(NPC, "soga_hair_type_highlight_color", "40 34 51")
  398. SpawnSet(NPC, "hair_face_highlight_color", "40 34 51")
  399. SpawnSet(NPC, "soga_hair_face_highlight_color", "40 34 51")
  400. SpawnSet(NPC, "hair_color1", "200 165 96")
  401. SpawnSet(NPC, "soga_hair_color1", "200 165 96")
  402. SpawnSet(NPC, "hair_color2", "173 99 44")
  403. SpawnSet(NPC, "soga_hair_color2", "173 99 44")
  404. SpawnSet(NPC, "hair_highlight", "43 36 70")
  405. SpawnSet(NPC, "soga_hair_highlight", "43 36 70")
  406. elseif overall_look == 20 then -- White
  407. SpawnSet(NPC, "skin_color", "195 205 205")
  408. SpawnSet(NPC, "soga_skin_color", "195 205 205")
  409. SpawnSet(NPC, "eye_color", "116 124 67")
  410. SpawnSet(NPC, "soga_eye_color", "116 124 67")
  411. SpawnSet(NPC, "hair_type_color", "224 230 231")
  412. SpawnSet(NPC, "soga_hair_type_color", "224 230 231")
  413. SpawnSet(NPC, "hair_face_color", "224 230 231")
  414. SpawnSet(NPC, "soga_hair_face_color", "224 230 231")
  415. SpawnSet(NPC, "hair_type_highlight_color", "219 179 16")
  416. SpawnSet(NPC, "soga_hair_type_highlight_color", "219 179 16")
  417. SpawnSet(NPC, "hair_face_highlight_color", "219 179 16")
  418. SpawnSet(NPC, "soga_hair_face_highlight_color", "219 179 16")
  419. SpawnSet(NPC, "hair_color1", "161 165 168")
  420. SpawnSet(NPC, "soga_hair_color1", "161 165 168")
  421. SpawnSet(NPC, "hair_color2", "50 69 69")
  422. SpawnSet(NPC, "soga_hair_color2", "50 69 69")
  423. SpawnSet(NPC, "hair_highlight", "239 221 86")
  424. SpawnSet(NPC, "soga_hair_highlight", "239 221 86")
  425. end
  426. end