aBloodskullorc2.lua 515 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/Commonlands/aBloodskullorc2.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.03.08 07:03:08
  5. Script Purpose :
  6. :
  7. --]]
  8. local BloodskullDisruption = 404
  9. function spawn(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function death(NPC, Spawn)
  15. if GetQuestStep(Spawn, BloodskullDisruption) == 2 then
  16. SetStepComplete(Spawn, BloodskullDisruption, 2)
  17. end
  18. end
  19. function respawn(NPC)
  20. end