questmalachiweaponrack.lua 505 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/ScaleYard/questmalachiweaponrack.lua
  3. Script Author : Jabantiz
  4. Script Date : 2018.06.18 12:06:45
  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, 5)
  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, 5)
  20. end