UnknownLanguage.lua 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. --[[
  2. Script Name : SpawnScripts/Generic/UnknownLanguage.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.03.10 04:03:21
  5. Script Purpose : Currently only for CITY NPCs. For racial-based callouts unique in language VO and Language Font.
  6. :
  7. --]]
  8. local BARBARIAN = 0
  9. local DARK_ELF = 1
  10. local DWARF = 2
  11. local ERUDITE = 3
  12. local FROGLOK = 4
  13. local GNOME = 5
  14. local HALF_ELF = 6
  15. local HALFLING = 7
  16. local HIGH_ELF = 8
  17. local HUMAN = 9
  18. local IKSAR = 10
  19. local KERRA = 11
  20. local OGRE = 12
  21. local RATONGA = 13
  22. local TROLL = 14
  23. local WOOD_ELF = 15
  24. local FAE = 16
  25. local ARASAI = 17
  26. local SARNAK = 18
  27. local MALE = 1
  28. local FEMALE = 2
  29. function Garbled(NPC, Spawn, Faction)
  30. if NPC ~= nil then
  31. local race = GetRace(NPC)
  32. local gender = GetGender(NPC)
  33. if race >= 0 and race <= 18 and gender >= 1 and gender <= 2 then
  34. local file_option = math.random(1, 3)
  35. local file_race_gender = 0
  36. if race == BARBARIAN then
  37. if gender == MALE then
  38. local choice = math.random(1, 5)
  39. if choice == 1 then
  40. PlayFlavor(NPC, "voiceover/english/barbarian_eco_good_1/ft/barbarian/barbarian_eco_good_1_garbled_gm_1cfda4cd.mp3", "I wonder, do I owe you any coin? I sure hope not!", "", 2853459229, 77062894, Spawn,1)
  41. elseif choice ==2 then
  42. PlayFlavor(NPC, "voiceover/english/barbarian_eco_good_1/ft/barbarian/barbarian_eco_good_1_garbled_gm_51f68cb4.mp3", "The look of your face annoys me! Shove off!", "", 2398080559, 940422767, Spawn,1)
  43. elseif choice ==3 then
  44. PlayFlavor(NPC, "voiceover/english/barbarian_eco_good_1/ft/barbarian/barbarian_eco_good_1_garbled_gm_6360be2b.mp3", "Giving you the cold shoulder this way is great.", "", 263596632, 1162455231, Spawn,1)
  45. elseif choice ==4 then
  46. PlayFlavor(NPC, "voiceover/english/barbarian_eco_good_1/ft/barbarian/barbarian_eco_good_1_garbled_gm_6f177dfe.mp3", "Try not to screw up my fist with your face.", "", 355102266, 2393608111, Spawn,1)
  47. elseif choice ==5 then
  48. PlayFlavor(NPC, "voiceover/english/barbarian_eco_good_1/ft/barbarian/barbarian_eco_good_1_garbled_gm_a1fa2fc8.mp3", "Could really go for a tall pint... and you dont have one.", "", 133865330, 3138674565, Spawn,1)
  49. end
  50. elseif gender == FEMALE then
  51. local choice = math.random(1, 5)
  52. if choice == 1 then
  53. PlayFlavor(NPC, "voiceover/english/barbarian_eco_good_1/ft/barbarian/barbarian_eco_good_1_garbled_gf_19afe4c1.mp3", "I wonder, do I owe you any coin? I sure hope not!", "", 2899758174, 1767429074, Spawn,1)
  54. elseif choice ==2 then
  55. PlayFlavor(NPC, "voiceover/english/barbarian_eco_good_1/ft/barbarian/barbarian_eco_good_1_garbled_gf_645e1c12.mp3", "Your face offends! Off with you!", "", 4007621363, 2577915200, Spawn,1)
  56. elseif choice ==3 then
  57. PlayFlavor(NPC, "voiceover/english/barbarian_eco_good_1/ft/barbarian/barbarian_eco_good_1_garbled_gf_8d42a684.mp3", "Giving you the cold shoulder this way is great.", "", 3994584076, 1013655548, Spawn,1)
  58. elseif choice ==4 then
  59. PlayFlavor(NPC, "voiceover/english/barbarian_eco_good_1/ft/barbarian/barbarian_eco_good_1_garbled_gf_f8c9923f.mp3", "Try not to screw up my fist with your face.", "", 653161975, 3035939203, Spawn,1)
  60. elseif choice ==5 then
  61. PlayFlavor(NPC, "voiceover/english/barbarian/ft/barbarian/barbarian_eco_garble_garbled_gf_befe5c31.mp3", "Washing three dozen kilts is murder", "", 1408939577, 3083827178, Spawn)
  62. end
  63. end
  64. elseif race == DARK_ELF then
  65. if gender == MALE then
  66. local choice = math.random(1, 3)
  67. if choice == 1 then
  68. PlayFlavor(NPC, "voiceover/english/darkelf_base_1/ft/darkelf/darkelf_base_1_1_garbled_gm_8dd636c1.mp3", "Power of the tongue is mighter than any of your weapons.", "", 983323899, 3112871522, Spawn,2)
  69. elseif choice ==2 then
  70. PlayFlavor(NPC, "voiceover/english/darkelf_base_1/ft/darkelf/darkelf_base_1_1_garbled_gm_fab027b8.mp3","Small minds unable to comprehend my intellect.", "", 1055587810, 93253246, Spawn,2)
  71. elseif choice ==3 then
  72. PlayFlavor(NPC, "voiceover/english/darkelf_base_1/ft/darkelf/darkelf_base_1_1_garbled_gm_810a3ce3.mp3", "Senseless is what you are. Staring at me this way.", "", 1130393437, 2011449714, Spawn,2)
  73. end
  74. elseif gender == FEMALE then
  75. local choice = math.random(1, 3)
  76. if choice == 1 then
  77. PlayFlavor(NPC, "voiceover/english/optional3/darkelf_base_2/ft/darkelf/darkelf_base_2_1_garbled_gf_36e875b.mp3", "Atzeen fahrseh", "", 761026681, 962675039, Spawn, 2)
  78. elseif choice == 2 then
  79. PlayFlavor(NPC, "voiceover/english/optional3/darkelf_base_2/ft/darkelf/darkelf_base_2_1_garbled_gf_fab027b8.mp3", "Hach bahr neh jadh osh agh", "", 3272896968, 3465123316, Spawn, 2)
  80. elseif choice == 3 then
  81. PlayFlavor(NPC, "voiceover/english/optional3/darkelf_base_2/ft/darkelf/darkelf_base_2_1_garbled_gf_810a3ce3.mp3", "Dark in body and soul! Hah!", "", 1604363761, 647045676, Spawn, 2)
  82. end
  83. end
  84. elseif race == DWARF then
  85. if gender == MALE then
  86. local choice = math.random(1, 6) --records show male dwarves use male barbarian VOs
  87. if choice == 1 then
  88. PlayFlavor(NPC, "voiceover/english/barbarian_eco_good_1/ft/barbarian/barbarian_eco_good_1_garbled_gm_1cfda4cd.mp3", "I wonder, do I owe you any coin? I sure hope not!", "", 2853459229, 77062894, Spawn,3)
  89. elseif choice ==2 then
  90. PlayFlavor(NPC, "voiceover/english/barbarian_eco_good_1/ft/barbarian/barbarian_eco_good_1_garbled_gm_51f68cb4.mp3", "The look of your face annoys me! Shove off!", "", 2398080559, 940422767, Spawn,3)
  91. elseif choice ==3 then
  92. PlayFlavor(NPC, "voiceover/english/barbarian_eco_good_1/ft/barbarian/barbarian_eco_good_1_garbled_gm_6360be2b.mp3", "Giving you the cold shoulder this way is great.", "", 263596632, 1162455231, Spawn,3)
  93. elseif choice ==4 then
  94. PlayFlavor(NPC, "voiceover/english/barbarian_eco_good_1/ft/barbarian/barbarian_eco_good_1_garbled_gm_6f177dfe.mp3", "Try not to screw up my fist with your face.", "", 355102266, 2393608111, Spawn,3)
  95. elseif choice ==5 then
  96. PlayFlavor(NPC, "voiceover/english/barbarian_eco_good_1/ft/barbarian/barbarian_eco_good_1_garbled_gm_a1fa2fc8.mp3", "Could really go for a tall pint.", "", 133865330, 3138674565, Spawn,3)
  97. elseif choice ==6 then
  98. PlayFlavor(NPC, "voiceover/english/dwarf_qeynos_agitators/ft/dwarf/dwarf_qeynos_agitators_1_garbled_gm_b129f218.mp3", "Let me clear my throat so you can understand.", "", 1491391518, 212658016, Spawn,3)
  99. end
  100. elseif gender == FEMALE then
  101. local choice = math.random(1, 4)
  102. if choice == 1 then
  103. PlayFlavor(NPC, "voiceover/english/dwarf/ft/dwarf/dwarf_eco_garble_garbled_gf_80515f2f.mp3", "I wonder, do I owe you any coin? I sure hope not!", "", 956006367, 3976653265, Spawn,3)
  104. elseif choice ==2 then
  105. PlayFlavor(NPC, "voiceover/english/dwarf/ft/dwarf/dwarf_eco_garble_garbled_gf_89b5cec2.mp3", "I dont like the look of your face! Off with you!", "", 1376862084, 1663916600, Spawn,3)
  106. elseif choice ==3 then
  107. PlayFlavor(NPC, "voiceover/english/dwarf/ft/dwarf/dwarf_eco_garble_garbled_gf_9729edda.mp3", "Giving you the cold shoulder this way is great.", "", 1602667253, 1907098372, Spawn,3)
  108. elseif choice ==4 then
  109. PlayFlavor(NPC, "voiceover/english/dwarf/ft/dwarf/dwarf_eco_garble_garbled_gf_cb1a6fa8.mp3", "Could really go for a tall pint... and you dont have one.", "", 4293920139, 1771029099, Spawn,3)
  110. end
  111. end
  112. elseif race == ERUDITE then
  113. if gender == MALE then
  114. local choice = math.random(1, 3)
  115. if choice == 1 then
  116. PlayFlavor(NPC, "voiceover/english/erudite/ft/erudite/erudite_eco_garble_garbled_gm_7ea96683.mp3", "Power of the tongue is mighter than any of your weapons.", "", 1242543565, 322796390, Spawn,4)
  117. elseif choice ==2 then
  118. PlayFlavor(NPC, "voiceover/english/erudite/ft/erudite/erudite_eco_garble_garbled_gm_db22bac2.mp3","Your mind is far too small to comprehend my intellect.", "nod", 1934819035, 1442456634, Spawn,4)
  119. elseif choice ==3 then
  120. PlayFlavor(NPC, "voiceover/english/erudite/ft/erudite/erudite_eco_garble_garbled_gm_f25c00f6.mp3", "Senseless is what you are. Staring at me this way.", "", 2181028941, 3368136634, Spawn,4)
  121. end
  122. elseif gender == FEMALE then
  123. local choice = math.random(1, 1)
  124. if choice == 1 then
  125. PlayFlavor(NPC, "voiceover/english/erudite_base_1/ft/erudite/erudite_base_1_1_garbled_gf_20ee9ec8.mp3", "Power of the tongue is mighter than any of your weapons.", "", 1414494311, 909104232, Spawn,4)
  126. elseif choice ==2 then
  127. PlayFlavor(NPC, "voiceover/english/erudite_base_1/ft/erudite/erudite_base_1_1_garbled_gf_8c788b45.mp3","Small minded fool. Read more books!", "nod", 159075636, 2590624879, Spawn,4)
  128. end
  129. end
  130. elseif race == FROGLOK then
  131. if gender == MALE then
  132. local choice = math.random(1, 4)
  133. if choice == 1 then
  134. PlayFlavor(NPC, "voiceover/english/froglok/ft/froglok/froglok_eco_garble_garbled_gm_313c0376.mp3", "Valor of Marr is more than an attitude.", "", 1459589175, 20349875, Spawn, 5)
  135. elseif choice == 2 then
  136. PlayFlavor(NPC, "voiceover/english/froglok/ft/froglok/froglok_eco_garble_garbled_gm_d88025cf.mp3", "Have you any flies in your pocket?", "", 2553064065, 3197021914, Spawn, 5)
  137. elseif choice == 3 then
  138. PlayFlavor(NPC, "voiceover/english/froglok/ft/froglok/froglok_eco_garble_garbled_gm_d8caf6d7.mp3", "Bounding is my means of getting about this place.", "", 2816022720, 105938521, Spawn,5)
  139. elseif choice == 4 then
  140. PlayFlavor(NPC, "voiceover/english/froglok/ft/froglok/froglok_eco_garble_garbled_gm_e15e6e2.mp3", "We are not murlocks. We are frogloks!", "", 3107143047, 4119333315, Spawn, 5)
  141. end
  142. elseif gender == FEMALE then
  143. end
  144. elseif race == GNOME then
  145. if gender == MALE then
  146. local choice = math.random(1, 5)
  147. if choice == 1 then
  148. PlayFlavor(NPC, "voiceover/english/gnome/ft/gnome/gnome_eco_garble_garbled_gm_4209685a.mp3", "Punting will not happen today.", "", 754274427, 2826976580, Spawn,6)
  149. elseif choice ==2 then
  150. PlayFlavor(NPC, "voiceover/english/gnome/ft/gnome/gnome_eco_garble_garbled_gm_8be4cc54.mp3", "My sprockets just fell from my pocket!", "", 3538910205, 3203956650, Spawn,6)
  151. elseif choice ==3 then
  152. PlayFlavor(NPC, "voiceover/english/gnome/ft/gnome/gnome_eco_garble_garbled_gm_dbff9c5a.mp3", "Gnomekind deserves all the praise for their innovation.", "", 2680872805, 2962768580, Spawn,6)
  153. elseif choice ==4 then
  154. PlayFlavor(NPC, "voiceover/english/gnome/ft/gnome/gnome_eco_garble_garbled_gm_e05cbaf3.mp3", "Foozlebits and fwingers. Gimmy!", "", 1818849573, 715200280, Spawn,6)
  155. elseif choice ==5 then
  156. PlayFlavor(NPC, "voiceover/english/gnome/ft/gnome/gnome_eco_garble_garbled_gm_cd85a24f.mp3", "Have you any spare foozlebits?.", "", 2230728991, 3389119515, Spawn,6)
  157. end
  158. elseif gender == FEMALE then
  159. local choice = math.random(1, 2)
  160. if choice == 1 then
  161. PlayFlavor(NPC, "voiceover/english/gnome_sewer_rats/ft/gnome/gnome_sewer_rats_1_garbled_gf_9833761f.mp3", "Never fear! Inventions will provide.", "", 3347501993, 118609776, Spawn,6)
  162. elseif choice ==2 then
  163. PlayFlavor(NPC, "voiceover/english/gnome_sewer_rats/ft/gnome/gnome_sewer_rats_1_victory_gm_3f8221f0.mp3", "My sprockets just fell from my pocket!", "", 2760547670, 4241194541, Spawn,6)
  164. end
  165. end
  166. elseif race == HALF_ELF then
  167. if gender == MALE then
  168. local choice = math.random(1, 5)
  169. if choice == 1 then
  170. PlayFlavor(NPC, "voiceover/english/halfelf/ft/halfelf/halfelf_eco_garble_garbled_gm_3390a20b.mp3", "My grandma looks better with piercings than your face does.", "", 58495426, 4283803154, Spawn, 7)
  171. elseif choice == 2 then
  172. PlayFlavor(NPC, "voiceover/english/halfelf/ft/halfelf/halfelf_eco_garble_garbled_gm_5ded1b43.mp3", "Ever wonder if youre half right and half wrong?", "", 3351053507, 1867045435, Spawn, 7)
  173. elseif choice == 3 then
  174. PlayFlavor(NPC, "voiceover/english/halfelf/ft/halfelf/halfelf_eco_garble_garbled_gm_9aa6006a.mp3", "So much angst against the system I can hardly contain it.", "", 558136573, 1239672624, Spawn,7)
  175. elseif choice == 4 then
  176. PlayFlavor(NPC, "voiceover/english/halfelf/ft/halfelf/halfelf_eco_garble_garbled_gm_b2df5aa6.mp3", "People just dont get me. My feelings are all twisted up inside.", "", 1054047347, 282100297, Spawn, 7)
  177. elseif choice == 5 then
  178. PlayFlavor(NPC, "voiceover/english/halfelf/ft/halfelf/halfelf_eco_garble_garbled_gm_2e8f1542.mp3", "So much angst against the system I can hardly contain it.", "", 1894354512, 3476177255, Spawn,7)
  179. end
  180. --[[ These are halfelf dervish
  181. PlayFlavor(NPC, "voiceover/english/halfelf_dervish/ft/halfelf/halfelf_dervish_1_garbled_gm_8436f046.mp3", "My grandma looks better with piercings than your face does.", "", 4148449659, 1524328444, Spawn, 7)
  182. elseif choice == 2 then
  183. PlayFlavor(NPC, "voiceover/english/halfelf_dervish/ft/halfelf/halfelf_dervish_1_garbled_gm_feb1d2e4.mp3", "Ever wonder if youre half right and half wrong?", "", 2791310022, 3266743218, Spawn, 7)
  184. elseif choice ==3 then
  185. PlayFlavor(NPC, "voiceover/english/halfelf_dervish/ft/halfelf/halfelf_dervish_1_garbled_gm_c175ec10.mp3", "So much angst against the system I can hardly contain it.", "", 1192114494, 883220862, Spawn,7)
  186. ]]--
  187. elseif gender == FEMALE then
  188. local choice = math.random(1,3)
  189. if choice == 1 then
  190. PlayFlavor(NPC, "voiceover/english/optional3/halfelf_base_2/ft/halfelf/halfelf_base_2_1_garbled_gf_84555678.mp3", "half is better than nothing", "", 1222734846, 1658567854, Spawn)
  191. elseif choice == 2 then
  192. PlayFlavor(NPC, "voiceover/english/optional3/halfelf_base_2/ft/halfelf/halfelf_base_2_1_garbled_gf_c175ec10.mp3", "people call me a half elf im really a three quarter elf", "", 1655768806, 1430035197, Spawn)
  193. elseif choice == 3 then
  194. PlayFlavor(NPC, "voiceover/english/optional3/halfelf_base_2/ft/halfelf/halfelf_base_2_1_garbled_gf_feb1d2e4.mp3", "i am a half helf and im rude", "", 1628841617, 2548194304, Spawn)
  195. end
  196. end
  197. elseif race == HALFLING then
  198. if gender == MALE then
  199. local choice = math.random(1,2)
  200. if choice == 1 then
  201. PlayFlavor(NPC, "voiceover/english/halfling_crazed/ft/halfling/halfling_crazed_1_garbled_gm_7b0d27d5.mp3", "Pie in your pocket or happy to see me?", "", 3679068852, 490576745, Spawn, 8)
  202. elseif choice == 2 then
  203. PlayFlavor(NPC, "voiceover/english/halfling_crazed/ft/halfling/halfling_crazed_1_garbled_gm_54e55451.mp3", "Never trust a halfling without a taste for jumjum.", "", 2087702128, 2642872371, Spawn, 8)
  204. end
  205. elseif gender == FEMALE then
  206. local choice = math.random(1,2)
  207. if choice == 1 then
  208. PlayFlavor(NPC, "voiceover/english/halfling_base_1/ft/halfling/halfling_base_1_1_garbled_gf_54e55451.mp3", "Do you have a pie in your pocket or are you just happy to see me?", "", 1486303618, 2371451914, Spawn, 8)
  209. elseif choice == 2 then
  210. PlayFlavor(NPC, "voiceover/english/halfling_base_1/ft/halfling/halfling_base_1_1_garbled_gf_823f1021.mp3", "Never trust a halfling without a taste for jumjum.", "", 3051197299, 2401133915, Spawn, 8)
  211. end
  212. end
  213. elseif race == HIGH_ELF then
  214. if gender == MALE then
  215. local choice = math.random(1,3)
  216. if choice == 1 then
  217. PlayFlavor(NPC, "voiceover/english/highelf_base_1/ft/highelf/highelf_base_1_1_garbled_gm_a002225a.mp3", "Read a book. My power of the tongue is mighter than any of your weapons.", "", 3994111433, 864857397, Spawn, 9)
  218. elseif choice == 2 then
  219. PlayFlavor(NPC, "voiceover/english/highelf_base_1/ft/highelf/highelf_base_1_1_garbled_gm_d396c4fc.mp3", "Your mind is far too small to comprehend my intellect. Off with you.", "", 3403333804, 3641522203, Spawn, 9)
  220. elseif choice == 3 then
  221. PlayFlavor(NPC, "voiceover/english/highelf_base_1/ft/highelf/highelf_base_1_1_garbled_gm_755db2c3.mp3", "Tunare blesses all her children. Unfortunately you wont know this.", "", 2766992983, 3224256482, Spawn, 9)
  222. end
  223. elseif gender == FEMALE then
  224. local choice = math.random(1, 3)
  225. if choice == 1 then
  226. PlayFlavor(NPC, "voiceover/english/highelf_base_1/ft/highelf/highelf_base_1_1_garbled_gf_755db2c3.mp3", "Read a book. My power of the tongue is mighter than any of your weapons.", "", 1930935604, 3692814157, Spawn,9)
  227. elseif choice == 2 then
  228. PlayFlavor(NPC, "voiceover/english/highelf_base_1/ft/highelf/highelf_base_1_1_garbled_gf_a002225a.mp3", "Tunare blesses all her children. Unfortunately you wont know this.", "", 3121965781, 2073270812, Spawn, 9)
  229. elseif choice == 3 then
  230. PlayFlavor(NPC, "voiceover/english/highelf_base_1/ft/highelf/highelf_base_1_1_garbled_gf_fde7b8f7.mp3", "The high elves have the best of life in Castleview.", "", 595061935, 2035542297, Spawn, 9)
  231. end
  232. end
  233. elseif race == HUMAN then
  234. if gender == MALE then
  235. elseif gender == FEMALE then
  236. end
  237. elseif race == IKSAR then
  238. if gender == MALE then
  239. elseif gender == FEMALE then
  240. local choice = math.random(1, 4)
  241. if choice == 1 then
  242. PlayFlavor(NPC, "voiceover/english/iksar_base_1/ft/iksar/iksar_base_1_1_garbled_gf_3227e578.mp3", "When you hate everyone like we do you learn stupid is uncurable.", "", 1491051702, 2384283394, Spawn, 12)
  243. elseif choice == 2 then
  244. PlayFlavor(NPC, "voiceover/english/iksar_base_1/ft/iksar/iksar_base_1_1_garbled_gf_39d8181d.mp3", "Ever been to Sebelis? They have some of the best iksar quisine you could image.", "", 3912501661, 73343976, Spawn, 12)
  245. elseif choice == 3 then
  246. PlayFlavor(NPC, "voiceover/english/iksar_base_1/ft/iksar/iksar_base_1_1_garbled_gf_788f677d.mp3", "Us iksar have fangs. Watch yourself or you will experience them.", "", 578110723, 497129059, Spawn, 12)
  247. elseif choice == 4 then
  248. PlayFlavor(NPC, "voiceover/english/iksar_base_1/ft/iksar/iksar_base_1_1_garbled_gf_84d4f1e3.mp3", "Could really go for a platter of floglok legs right now.", "", 3286114835, 3653443796, Spawn, 12)
  249. end
  250. end
  251. elseif race == KERRA then
  252. if gender == MALE then
  253. local choice = math.random(1,4)
  254. if choice == 1 then
  255. PlayFlavor(NPC, "voiceover/english/kerran/ft/kerran/kerran_eco_garble_garbled_gm_2686291e.mp3", "Mind if give my claws a good workout?", "", 3043468628, 38902721, Spawn, 13)
  256. elseif choice == 2 then
  257. PlayFlavor(NPC, "voiceover/english/kerran/ft/kerran/kerran_eco_garble_garbled_gm_9d6a5ad3.mp3", "Nevermind the litterbox. I need facilities that suit my fancies.", "", 2529038460, 1283968454, Spawn, 13)
  258. elseif choice == 3 then
  259. PlayFlavor(NPC, "voiceover/english/kerran/ft/kerran/kerran_eco_garble_garbled_gm_d598de6c.mp3", "Roll your R sounds. Move your tongue like this. Rurlubplr", "", 2406034521, 1600126995, Spawn, 13)
  260. elseif choice == 4 then
  261. PlayFlavor(NPC, "voiceover/english/kerran/ft/kerran/kerran_eco_garble_garbled_gm_87e38c0a.mp3", "Rurlubplr. Move your tongue like this. ", "", 2983711710, 88301434, Spawn, 13)
  262. end
  263. elseif gender == FEMALE then
  264. end
  265. elseif race == OGRE then
  266. if gender == MALE then
  267. local choice = math.random(1,4)
  268. if choice == 1 then
  269. PlayFlavor(NPC, "voiceover/english/ogre/ft/ogre/ogre_eco_garble_garbled_gm_5b81626f.mp3", "Picked dwarf is the best thing for a hungry stomach.", "", 3514709231, 112583900, Spawn, 14)
  270. elseif choice == 2 then
  271. PlayFlavor(NPC, "voiceover/english/ogre/ft/ogre/ogre_eco_garble_garbled_gm_db73bf19.mp3", "You need to stop and smell the flowers from time to time!", "", 510403883, 4026183304, Spawn, 14)
  272. elseif choice == 3 then
  273. PlayFlavor(NPC, "voiceover/english/ogre/ft/ogre/ogre_eco_garble_garbled_gm_77a5c747.mp3", "Zek needs to come back and make us ogres godlike again.", "", 2797105076, 2416568959, Spawn, 14)
  274. elseif choice == 4 then
  275. PlayFlavor(NPC, "voiceover/english/ogre/ft/ogre/ogre_eco_garble_garbled_gm_c036e2b.mp3", "Im pretty hungry. Ill take your head and make jelly if youre willing.", "", 244516262, 352386668, Spawn, 14)
  276. end
  277. elseif gender == FEMALE then
  278. end
  279. elseif race == RATONGA then
  280. if gender == MALE then
  281. local choice = math.random(1,6)
  282. if choice == 1 then
  283. PlayFlavor(NPC, "voiceover/english/optional3/ratonga_bloodsabers/ft/ratonga/ratonga_bloodsabers_2_garbled_gm_5a81ec49.mp3", "Hekveten plava SU klina", "", 3536439879, 1109691272, Spawn)
  284. elseif choice == 2 then
  285. PlayFlavor(NPC, "voiceover/english/optional3/ratonga_bloodsabers/ft/ratonga/ratonga_bloodsabers_2_garbled_gm_bc265d9b.mp3", "EeeSIP qweek MEEerallow neep", "", 148555474, 1278831922, Spawn)
  286. elseif choice == 3 then
  287. PlayFlavor(NPC, "voiceover/english/optional3/ratonga_bloodsabers/ft/ratonga/ratonga_bloodsabers_2_garbled_gm_5c77ba46.mp3", "Chee ava kirAH tay!", "", 1940215504, 447502824, Spawn)
  288. elseif choice == 4 then
  289. PlayFlavor(NPC, "voiceover/english/optional3/ratonga_bloodsabers/ft/ratonga/ratonga_bloodsabers_1_garbled_gm_5a81ec49.mp3", "Hekveten plava SU klina", "", 2175556278, 29227183, Spawn)
  290. elseif choice == 5 then
  291. PlayFlavor(NPC, "voiceover/english/optional3/ratonga_bloodsabers/ft/ratonga/ratonga_bloodsabers_1_garbled_gm_5c77ba46.mp3", "Chee ava kirAH tay!", "", 806743894, 496586204, Spawn)
  292. elseif choice == 6 then
  293. PlayFlavor(NPC, "voiceover/english/optional3/ratonga_bloodsabers/ft/ratonga/ratonga_bloodsabers_1_garbled_gm_21432a6a.mp3", "TravaHAS merallund kBORrten illanya", "", 1269733907, 434806140, Spawn)
  294. end
  295. elseif gender == FEMALE then
  296. local choice = math.random(1,3)
  297. if choice == 1 then
  298. PlayFlavor(NPC, "voiceover/english/ratonga_darkblades/ft/ratonga/ratonga_darkblades_1_garbled_gf_5a81ec49.mp3", "Hekveten plava SU klina", "", 4282746773, 1025120966, Spawn)
  299. elseif choice == 2 then
  300. PlayFlavor(NPC, "voiceover/english/ratonga_black_magi/ft/ratonga/ratonga_black_magi_1_garbled_gf_21432a6a.mp3", "EeeSIP qweek MEEerallow neep", "", 3484386885, 1475086391, Spawn)
  301. elseif choice == 3 then
  302. PlayFlavor(NPC, "voiceover/english/ratonga_black_magi/ft/ratonga/ratonga_black_magi_1_garbled_gf_5a81ec49.mp3", "Chee ava kirAH tay!", "", 3639926873, 1002267878, Spawn)
  303. end
  304. end
  305. elseif race == TROLL then
  306. if gender == MALE then
  307. local choice = math.random(1,5)
  308. if choice == 1 then
  309. PlayFlavor(NPC, "voiceover/english/troll/ft/troll/troll_eco_garble_garbled_gm_aa2c46fe.mp3", "You need to stop and smell the flowers from time to time!", "", 1977926860, 997450426, Spawn, 15)
  310. elseif choice == 2 then
  311. PlayFlavor(NPC, "voiceover/english/troll/ft/troll/troll_eco_garble_garbled_gm_a1a1512f.mp3", "Yekeshan lifestyle requires constant grooming of your earholes.", "", 2161634002, 3014201694, Spawn, 15)
  312. elseif choice == 3 then
  313. PlayFlavor(NPC, "voiceover/english/troll/ft/troll/troll_eco_garble_garbled_gm_c4c81df1.mp3", "Never argue with someone that has nails in their head.", "", 3890142976, 1854948933, Spawn, 15)
  314. elseif choice == 4 then
  315. PlayFlavor(NPC, "voiceover/english/troll/ft/troll/troll_eco_garble_garbled_gm_43bed989.mp3", "Tasty meats make tasty treats!", "", 2701453259, 3347954170, Spawn, 15)
  316. elseif choice == 5 then
  317. PlayFlavor(NPC, "voiceover/english/troll/ft/troll/troll_eco_garble_garbled_gm_318f674b.mp3", "Really need to improve my vocabulary.", "", 2846330309, 4155347396, Spawn, 15)
  318. end
  319. elseif gender == FEMALE then
  320. end
  321. elseif race == WOOD_ELF then
  322. if gender == MALE then
  323. local choice = math.random(1,1)
  324. if choice == 1 then
  325. PlayFlavor(NPC, "voiceover/english/woodelf_forrest_wardens/ft/woodelf/woodelf_forrest_wardens_1_garbled_gm_8a0bc5f8.mp3", "You need to stop and smell the flowers sometime. Even from the treetops.", "", 1811305493, 2624435147, Spawn, 16)
  326. end
  327. elseif gender == FEMALE then
  328. local choice = math.random(1,1)
  329. if choice == 1 then
  330. PlayFlavor(NPC, "voiceover/english/woodelf_forrest_wardens/ft/woodelf/woodelf_forrest_wardens_1_garbled_gm_87567d71.mp3", "Even from the treetops. You need to stop and smell the flowers sometime. ", "", 2241066225, 3802156744, Spawn, 16)
  331. end
  332. end
  333. elseif race == FAE then
  334. if gender == MALE then
  335. elseif gender == FEMALE then
  336. end
  337. elseif race == ARASAI then
  338. if gender == MALE then
  339. elseif gender == FEMALE then
  340. end
  341. elseif race == SARNAK then
  342. if gender == MALE then
  343. elseif gender == FEMALE then
  344. end
  345. end
  346. end
  347. end
  348. end