SoleficusBaro.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/Freeport/SoleficusBaro.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.22 08:07:12
  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/optional5/human_eco_evil_2/ft/service/banker/human_banker_service_evil_2_hail_gm_d245cb35.mp3", "Ouch, that's your balance?", "wince", 3782988565, 2164924349, Spawn)
  15. elseif choice == 2 then
  16. PlayFlavor(NPC, "", "This is the Freeport Reserve. What's your business?", "", 1689589577, 4560189, Spawn)
  17. elseif choice == 3 then
  18. PlayFlavor(NPC, "Get on with your business, traveler.", "", 1689589577, 4560189, Spawn)
  19. elseif choice == 4 then
  20. PlayFlavor(NPC, "I can handle all your banking needs.", "", 1689589577, 4560189, Spawn)
  21. elseif choice == 5 then
  22. PlayFlavor(NPC, "voiceover/english/optional5/human_eco_evil_2/ft/service/banker/human_banker_service_evil_2_hail_gm_4038e3ba.mp3", "No beggars and no solicitors. If you don't have business to conduct then stand aside!", "heckno", 3154750611, 2096341840, Spawn)
  23. else
  24. PlayFlavor(NPC, "", "What services are you interested in, citizen?", "hello", 1689589577, 4560189, Spawn)
  25. end
  26. end
  27. function respawn(NPC)
  28. end