RingleaderRadko.lua 505 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : SpawnScripts/Ruins/RingleaderRadko.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.06.25 07:06:38
  5. Script Purpose :
  6. :
  7. --]]
  8. local RewardForAMissingMusicBox = 5261
  9. function spawn(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function respawn(NPC)
  15. spawn(NPC)
  16. end
  17. function death(NPC, Spawn)
  18. if not HasCompletedQuest(Spawn, RewardForAMissingMusicBox) then
  19. AddLootItem(NPC, 1286, 1)
  20. end
  21. end