aBlackshielddockofficer.lua 620 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/Commonlands/aBlackshielddockofficer.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.04.17 05:04:03
  5. Script Purpose :
  6. :
  7. --]]
  8. local QUEST = 409
  9. function spawn(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. PlayFlavor(NPC, "", "The Blackshield Shipping Company has been in the business for years. We know our way around near-every ocean on Norrath!", "", 1689589577, 4560189, Spawn)
  14. if GetQuestStep(Spawn, QUEST) == 2 then
  15. SummonItem(Spawn, 2513, 1)
  16. end
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end