Agamennus.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/Freeport/Agamennus.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.22 08:07:24
  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, 5)
  13. if choice == 1 then
  14. PlayFlavor(NPC, "", "Yes, hail to you as well. Let's get down to business shall we?", "tapfoot", 1689589577, 4560189, Spawn)
  15. elseif choice == 2 then
  16. PlayFlavor(NPC, "voiceover/english/broker_algernon/qey_harbor/034_con_merchant_algernon_human_1_hail_ae2c80ff.mp3", "Looking for anything in particular today? Well, let's just see what we have for sale in the city then, shall we?", "scheme", 1535757143, 2792554406, Spawn)
  17. elseif choice == 3 then
  18. PlayFlavor(NPC, "voiceover/english/broker_algernon/qey_harbor/034_con_merchant_algernon_human_1_hail_dc2ee3d4.mp3", "Well, I can see what sort of goods we have available now. You do have the proper scrollwork for all of this merchandise, correct?", "glare", 2913572299, 447386063, Spawn)
  19. elseif choice == 4 then
  20. PlayFlavor(NPC, "voiceover/english/broker_algernon/qey_harbor/034_con_merchant_algernon_human_1_hail_d540b6d6.mp3", "All right here's all the goods listed in the city. If you find anything you want, let me know.", "hello", 2901627157, 508942655, Spawn)
  21. else
  22. PlayFlavor(NPC, "", "Alright, all right. I'll see what we have on the market now.", "nod", 1689589577, 4560189, Spawn)
  23. end
  24. end
  25. function respawn(NPC)
  26. end