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

22 lines
No EOL
414 B
Lua
Executable file

--[[
Script Name : SpawnScripts/ForestRuins/book.lua
Script Author : Dorbin
Script Date : 2022.02.27 04:02:01
Script Purpose :
:
--]]
function spawn(NPC)
SetRequiredQuest(NPC, 522, 2)
end
function casted_on(NPC, Player, SpellName)
if SpellName == 'search book' then
SetStepComplete(Player, 522, 2)
end
end
function respawn(NPC)
spawn(NPC)
end