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

25 lines
No EOL
525 B
Lua
Executable file

--[[
Script Name : SpawnScripts/Freeport/TomeWardenKNarn.lua
Script Author : Premierio015
Script Date : 2021.05.31 07:05:23
Script Purpose : A Tour of the Commonlands dialogue needed
:
--]]
local ATouroftheCommonlands = 5248
function spawn(NPC)
end
function hailed(NPC, Spawn)
FaceTarget(NPC, Spawn)
if GetQuestStep(Spawn, ATouroftheCommonlands) == 16 then
SetStepComplete(Spawn, ATouroftheCommonlands)
end
end
function respawn(NPC)
spawn(NPC)
end