Edwards.lua 905 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/Antonica/Edwards.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.06.27 05:06:58
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. local choice = MakeRandomInt(1,2)
  12. if choice == 1 then
  13. PlayFlavor(NPC, "voiceover/english/human_eco_good_1/ft/service/merchant/human_merchant_service_good_1_hail_gf_e4fa2bd8.mp3", "Confound it! Where did I put that ledger? It must be around here somewhere!", "confused", 2588954321, 88153469, Spawn)
  14. elseif choice == 2 then
  15. PlayFlavor(NPC, "voiceover/english/human_eco_good_1/ft/service/merchant/human_merchant_service_good_1_hail_gf_ae84abf9.mp3", "Go on, take a look at the stock. You'll never beat this price in the city. I guarantee it!", "wink", 1667555721, 2696093362, Spawn)
  16. end
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end