aBlackshielddockofficer.lua 694 B

1234567891011121314151617181920212223242526
  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. require "SpawnScripts/Generic/NPCModule"
  10. function spawn(NPC, Spawn)
  11. NPCModule(NPC, Spawn)
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. 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)
  16. if GetQuestStep(Spawn, QUEST) == 2 then
  17. SummonItem(Spawn, 2513, 1)
  18. end
  19. end
  20. function respawn(NPC)
  21. spawn(NPC)
  22. end