Mallium.lua 1.5 KB

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/Freeport/Mallium.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.08.11 08:08:33
  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, 4)
  13. if choice == 1 then
  14. PlayFlavor(NPC, "voiceover/english/broker_mallium/fprt_west/031_con_merchant_mallium_halfelf_1_hail_e470139a.mp3", "Looking for the best goods in the whole of Freeport? Well, my friend, you've come to the right place!", "royalwave", 3779064899, 1082401525, Spawn)
  15. elseif choice == 2 then
  16. PlayFlavor(NPC, "voiceover/english/broker_mallium/fprt_west/031_con_merchant_mallium_halfelf_1_hail_8d817f98.mp3", "Here is what the city has to offer, my friend. If you have any questions at all about the stock, please don't hesitate to ask.", "agree", 1804906732, 3683797889, Spawn)
  17. elseif choice == 3 then
  18. PlayFlavor(NPC, "voiceover/english/broker_mallium/fprt_west/031_con_merchant_mallium_halfelf_1_hail_4ea1b76b.mp3", "At the prices I'm going to offer you, friend, I should have the Militia arrest you on the spot for robbing me!", "point", 656626023, 4153025559, Spawn)
  19. else
  20. PlayFlavor(NPC, "voiceover/english/broker_mallium/fprt_west/031_con_merchant_mallium_halfelf_1_hail_5362df75.mp3", "Don't worry, friend, if it's not on our lists then the goods do not exist.", "no", 2182517673, 1430349366, Spawn)
  21. end
  22. end
  23. function respawn(NPC)
  24. end