eq2emu-content/SpawnScripts/FallenGate/draconicwidget03.lua
2024-10-26 11:37:28 +00:00

24 lines
No EOL
455 B
Lua
Executable file

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