1234567891011121314151617181920212223 |
- --[[
- Script Name : SpawnScripts/SouthQeynos/draconicwidget01.lua
- Script Author : Dorbin
- Script Date : 2022.06.01 07:06:07
- Script Purpose :
- :
- --]]
- local Drag = 5577
- function spawn(NPC)
- SetRequiredQuest(NPC, Drag, 3)
- end
- function casted_on(NPC, Spawn, SpellName)
- if SpellName == 'open the scroll' then
- QuestStepIsComplete(Spawn,Drag,3)
- end
- end
- function respawn(NPC)
- spawn(NPC)
- end
|