qst_wanted_poster.lua 427 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : <script-name>
  3. Script Purpose : <purpose>
  4. Script Author : <author-name>
  5. Script Date : <date>
  6. Script Notes : <special-instructions>
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. end
  12. function respawn(NPC)
  13. spawn(NPC)
  14. end
  15. function casted_on(Target, Caster)
  16. if not HasCompletedQuest(Caster, 84) and not HasQuest(Caster, 84) then
  17. OfferQuest(Target, Caster, 84)
  18. end
  19. end