deaddeer.lua 481 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/ForestRuins/deaddeer.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.02.27 05:02:59
  5. Script Purpose :
  6. :
  7. --]]
  8. local Deer = 5494
  9. function spawn(NPC)
  10. SetRequiredQuest(NPC, Deer, 1,1,0)
  11. end
  12. function casted_on(NPC, Player, SpellName)
  13. if SpellName == 'inspect' then
  14. SetStepComplete(Player, Deer, 1)
  15. end
  16. end
  17. function hailed(NPC, Spawn)
  18. end
  19. function respawn(NPC)
  20. spawn(NPC)
  21. end