questwheelstolenitem03.lua 497 B

1234567891011121314151617181920
  1. --[[
  2. Script Name : SpawnScripts/QeynosHarbor/questwheelstolenitem03.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.06.14 06:06:07
  5. Script Purpose :
  6. :
  7. --]]
  8. local OfSail = 5587
  9. function spawn(NPC)
  10. SetRequiredQuest(NPC, OfSail, 1)
  11. end
  12. function casted_on(NPC, Spawn, SpellName)
  13. if SpellName == 'Search Behind' then
  14. SendMessage(Spawn, "You find a map behind the wheel on the wall.")
  15. SetStepComplete(Spawn, OfSail, 1)
  16. end
  17. end