mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
26 lines
505 B
Lua
Executable file
26 lines
505 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/ScaleYard/questmalachiweaponrack.lua
|
|
Script Author : Jabantiz
|
|
Script Date : 2018.06.18 12:06:45
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
-- Quest ID's
|
|
local QUEST_3 = 348 -- 185 --Battle On The Home Front
|
|
|
|
function spawn(NPC)
|
|
SetRequiredQuest(NPC, QUEST_3, 5)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
end
|
|
|
|
function casted_on(NPC, Spawn, Message)
|
|
SetStepComplete(Spawn, QUEST_3, 5)
|
|
end
|
|
|