Whisper.lua 622 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/Freeport/Whisper.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.08.10 08:08:52
  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, 2)
  13. if choice == 1 then
  14. PlayFlavor(NPC, "", "Jackal knows where you are at all times.", "scold", 1689589577, 4560189, Spawn)
  15. else
  16. PlayFlavor(NPC, "", "The Overlord pays us quite well for our expertise.", "smirk", 1689589577, 4560189, Spawn)
  17. end
  18. end
  19. function respawn(NPC)
  20. end