questmalachidesk.lua 495 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/ScaleYard/questmalachidesk.lua
  3. Script Author : Jabantiz
  4. Script Date : 2018.06.18 12:06:02
  5. Script Purpose :
  6. :
  7. --]]
  8. -- Quest ID's
  9. local QUEST_3 = 348 -- 185 --Battle On The Home Front
  10. function spawn(NPC)
  11. SetRequiredQuest(NPC, QUEST_3, 3)
  12. end
  13. function respawn(NPC)
  14. spawn(NPC)
  15. end
  16. function hailed(NPC, Spawn)
  17. end
  18. function casted_on(NPC, Spawn, Message)
  19. SetStepComplete(Spawn, QUEST_3, 3)
  20. end