widgetinspectthexmonument.lua 610 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/BigBend/thexmonument04broken.lua
  3. Script Author : torsten
  4. Script Date : 2022.07.20 06:07:41
  5. Script Purpose :
  6. :
  7. --]]
  8. local TheStolenArtifactsofThex = 5683
  9. function casted_on(NPC, Spawn, SpellName)
  10. if SpellName == 'inspect' then
  11. if GetQuestStep(Spawn, TheStolenArtifactsofThex) == 6 then
  12. SetStepComplete(Spawn, TheStolenArtifactsofThex, 6)
  13. end
  14. end
  15. end
  16. function spawn(NPC)
  17. end
  18. function hailed(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. end
  21. function respawn(NPC)
  22. spawn(NPC)
  23. end