Exmarch.lua 1.9 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/Freeport/Exmarch.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.12 11:07:44
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. local choice = math.random(1, 6)
  13. if choice == 1 then
  14. PlayFlavor(NPC, "voiceover/english/halfelf_eco_farsea_1/ft/service/merchant/halfelf_merchant_service_farsea_1_hail_gm_91319338.mp3", "Smartly there, bucko, afore the sun sets.", "shakefist", 422002667, 3900718393, Spawn)
  15. elseif choice == 2 then
  16. PlayFlavor(NPC, "voiceover/english/halfelf_eco_farsea_1/ft/service/merchant/halfelf_merchant_service_farsea_1_hail_gm_b9b19d1d.mp3", "Lets me knows if'n ye sight a shark with a timber stuck a'tween his teeth.", "wink", 802487084, 1336291105, Spawn)
  17. elseif choice == 3 then
  18. PlayFlavor(NPC, "voiceover/english/halfelf_eco_farsea_1/ft/service/merchant/halfelf_merchant_service_farsea_1_hail_gm_221d5041.mp3", "Get all the cures 'ere fer yer fevers and scurvy.", "beckon", 2927017873, 1769335255, Spawn)
  19. elseif choice == 4 then
  20. PlayFlavor(NPC, "voiceover/english/halfelf_eco_farsea_1/ft/service/merchant/halfelf_merchant_service_farsea_1_hail_gm_6c37dc5e.mp3", "Ye'll find the finest grub and grog 'ere, Cap'n.", "hello", 235486577, 2236876414, Spawn)
  21. elseif choice == 5 then
  22. PlayFlavor(NPC, "voiceover/english/halfelf_eco_farsea_1/ft/service/merchant/halfelf_merchant_service_farsea_1_hail_gm_472ca0ad.mp3", "Yo-ho-ho! Now there be some booty that'll fetch more'n a piece o' eight.", "smile", 3944582155, 645979430, Spawn)
  23. else
  24. PlayFlavor(NPC, "voiceover/english/halfelf_eco_farsea_1/ft/service/merchant/halfelf_merchant_service_farsea_1_hail_gm_bd794e47.mp3", "Ye starin' at me glass eye, ye poxy tar?", "stare", 3483682855, 570647172, Spawn)
  25. end
  26. end
  27. function respawn(NPC)
  28. end