mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
20 lines
No EOL
349 B
Lua
Executable file
20 lines
No EOL
349 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Ruins/orc_cask.lua
|
|
Script Purpose : orc_cask
|
|
Script Author : Scatman
|
|
Script Date : 2009.08.16
|
|
Script Notes :
|
|
--]]
|
|
|
|
local QUEST_FROM_IMPERIDUS = 286
|
|
|
|
function spawn(NPC)
|
|
SetRequiredQuest(NPC, QUEST_FROM_IMPERIDUS, 4)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
end |