Brill.lua 1.5 KB

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/NorthQeynos/Brill.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.05.17 10:05:43
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. local choice = MakeRandomInt(1,4)
  12. FaceTarget(NPC, Spawn)
  13. if choice == 1 then
  14. PlayFlavor(NPC, "voiceover/english/optional2/halfling_eco_good_1/ft/service/alchemist/halfling_alchemist_service_good_1_hail_gm_a8ed74c7.mp3", "There are no refunds for caster error at this shop! Oh ... hello you're not here about a refund.", "no", 2075394375, 630243730, Spawn, 0)
  15. elseif choice == 2 then
  16. PlayFlavor(NPC, "voiceover/english/optional2/halfling_eco_good_1/ft/service/alchemist/halfling_alchemist_service_good_1_hail_gm_ec533e4c.mp3", "Are you wounded? I just made up a fresh batch of healing potions an hour ago.", "hello", 2688473405, 4089604259, Spawn, 0)
  17. elseif choice == 3 then
  18. PlayFlavor(NPC, "voiceover/english/optional2/halfling_eco_good_1/ft/service/alchemist/halfling_alchemist_service_good_1_hail_gm_59de96bd.mp3", "What happened to the highly explosive bottle that was on my desk? Have you seen it?", "peer", 1039692997, 675274206, Spawn, 0)
  19. elseif choice == 4 then
  20. PlayFlavor(NPC, "voiceover/english/optional2/halfling_eco_good_1/ft/service/alchemist/halfling_alchemist_service_good_1_hail_gm_efd903ba.mp3", "Hello, adventurer! Are you looking for a specific potion or ingredient?", "agree", 1413906559, 1372883990, Spawn, 0)
  21. end
  22. end
  23. function respawn(NPC)
  24. spawn(NPC)
  25. end