AndersBlackhammer.lua 735 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/Commonlands/AndersBlackhammer.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.05.24 10:05:00
  5. Script Purpose :
  6. :
  7. --]]
  8. local CollectingOnWhatIsEarned = 423
  9. require "SpawnScripts/Generic/GenericVoiceOvers"
  10. function spawn(NPC)
  11. end
  12. function hailed(NPC, Spawn)
  13. FaceTarget(NPC, Spawn)
  14. GenericHail(NPC, Spawn)
  15. if HasQuest(Spawn, CollectingOnWhatIsEarned) then
  16. SetStepComplete(Spawn, CollectingOnWhatIsEarned, 1)
  17. PlayFlavor(NPC, "", "Brandus said to be expecting you. I'm supposed to pay you what you're due! Haha!!", "", 1689589577, 4560189, Spawn)
  18. Attack(NPC, Spawn)
  19. end
  20. end
  21. function respawn(NPC)
  22. spawn(NPC)
  23. end