OracleEdnar.lua 777 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : SpawnScripts/Antonica/OracleEdnar.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.08.22 08:08:49
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. local choice = MakeRandomInt(1, 3)
  13. if choice == 1 then
  14. PlayFlavor(NPC, "", "I sense that you still have much to do before your destiny is complete.", "", 1689589577, 4560189, Spawn)
  15. elseif choice == 2 then
  16. PlayFlavor(NPC, "", "There is something different about you.", "", 1689589577, 4560189, Spawn)
  17. elseif choice == 3 then
  18. PlayFlavor(NPC, "", "Your fate will shape the future of this world.", "", 1689589577, 4560189, Spawn)
  19. end
  20. end
  21. function respawn(NPC)
  22. spawn(NPC)
  23. end