Clover.lua 1.5 KB

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : SpawnScripts/Truthbringer/Clover.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.10.29 06:10:51
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. RandomGreeting(NPC, Spawn)
  15. end
  16. function RandomGreeting(NPC, Spawn)
  17. local choice = MakeRandomInt(1,4)
  18. if choice == 1 then
  19. PlayFlavor(NPC, "voiceover/english/optional2/highelf_eco_good_2/ft/service/merchant/highelf_merchant_service_good_2_hail_gf_24322c5d.mp3", "Greetings, friend traveler! We have the finest supplies to fill your adventuring needs.", "smile", 3115564539, 34309187, Spawn, 0)
  20. elseif choice == 2 then
  21. PlayFlavor(NPC, "voiceover/english/optional2/highelf_eco_good_2/ft/service/merchant/highelf_merchant_service_good_2_hail_gf_45d92a75.mp3", "Welcome! What can I help you with?", "bow", 3320524559, 934439, Spawn, 0)
  22. elseif choice == 3 then
  23. PlayFlavor(NPC, "voiceover/english/optional2/highelf_eco_good_2/ft/service/merchant/highelf_merchant_service_good_2_hail_gf_e4fa2bd8.mp3", "Confound it! Where did I put that ledger? It must be around here somewhere!", "confused", 317075532, 2872017227, Spawn, 0)
  24. elseif choice == 4 then
  25. PlayFlavor(NPC, "voiceover/english/optional2/highelf_eco_good_2/ft/service/merchant/highelf_merchant_service_good_2_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", 2720116612, 4014358874, Spawn, 0)
  26. end
  27. end