Lina.lua 965 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/Antonica/Lina.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.08.22 08:08:42
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. --PlayFlavor(NPC, "", "If you see something you need just let me know.", "", 1689589577, 4560189, Spawn)
  13. local choice = MakeRandomInt(1,2)
  14. if choice == 1 then
  15. PlayFlavor(NPC, "voiceover/english/optional2/human_eco_good_2/ft/service/merchant/human_merchant_service_good_2_hail_gf_45d92a75.mp3", "Welcome! What can I help you with?", "hello", 218555884, 644636009, Spawn)
  16. elseif choice == 2 then
  17. PlayFlavor(NPC, "voiceover/english/human_eco_good_1/ft/service/baker/human_baker_service_good_1_hail_gf_cca9cdef.mp3", "Welcome friend, welcome. I hope you brought your appetite with you!", "wink", 488782681, 166399094, Spawn)
  18. end
  19. end
  20. function respawn(NPC)
  21. spawn(NPC)
  22. end