mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
24 lines
No EOL
453 B
Lua
Executable file
24 lines
No EOL
453 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/SolEye/draconicwidget26.lua
|
|
Script Author : Dorbin
|
|
Script Date : 2022.06.01 08:06:56
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
local Drag = 5577
|
|
|
|
function spawn(NPC)
|
|
SetRequiredQuest(NPC, Drag, 28)
|
|
end
|
|
|
|
|
|
function casted_on(NPC, Spawn, SpellName)
|
|
if SpellName == 'open the scroll' then
|
|
QuestStepIsComplete(Spawn,Drag,28)
|
|
end
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end |