mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
23 lines
No EOL
526 B
Lua
Executable file
23 lines
No EOL
526 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Antonica/warriorcapquestwidget.lua
|
|
Script Author : Premierio015
|
|
Script Date : 2023.04.21 11:04:16
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
local TheseBootsWereMadeFor = 5805 -- These Boots Were Made For QUEST ID
|
|
|
|
function spawn(NPC)
|
|
SetRequiredQuest(NPC, TheseBootsWereMadeFor, 10)
|
|
end
|
|
|
|
function casted_on(NPC, Spawn, Spell)
|
|
if Spell == 'climb down the trapdoor' then
|
|
Zone(GetZone(838), Spawn)
|
|
end
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end |