KarilaTzel.lua 972 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/Freeport/KarilaTzel.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.22 08:07:36
  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, 2)
  13. if choice == 1 then
  14. PlayFlavor(NPC, "voiceover/english/optional2/darkelf_eco_evil_2/ft/service/merchant/darkelf_merchant_service_evil_2_hail_gf_f715099e.mp3", "Hello there, kind adventurer. My merchandise carries the seal of the Overlord himself! Go ahead, take a look!", "salute_freeport", 886410803, 3357937024, Spawn)
  15. else
  16. PlayFlavor(NPC, "voiceover/english/optional2/darkelf_eco_evil_2/ft/service/merchant/darkelf_merchant_service_evil_2_hail_gf_d088c20d.mp3", "The stuff's over there. Just let me know if you find anything you like.", "ponder", 3437964024, 2518125905, Spawn)
  17. end
  18. end
  19. function respawn(NPC)
  20. end