elvishvase.lua 583 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/BigBend/elvishvase.lua
  3. Script Author : torsten
  4. Script Date : 2022.07.12 07:07:28
  5. Script Purpose :
  6. :
  7. --]]
  8. local MuchAdoAboutRallos = 5634
  9. function casted_on(NPC, Spawn, SpellName)
  10. if SpellName == 'Gather' then
  11. if not QuestStepIsComplete(Spawn, MuchAdoAboutRallos, 4) then
  12. SetStepComplete(Spawn, MuchAdoAboutRallos, 4)
  13. end
  14. end
  15. end
  16. function spawn(NPC)
  17. end
  18. function hailed(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. end
  21. function respawn(NPC)
  22. spawn(NPC)
  23. end