mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
21 lines
No EOL
365 B
Lua
Executable file
21 lines
No EOL
365 B
Lua
Executable file
--[[
|
|
Script Name : <script-name>
|
|
Script Purpose : <purpose>
|
|
Script Author : <author-name>
|
|
Script Date : <date>
|
|
Script Notes : <special-instructions>
|
|
--]]
|
|
|
|
-- Quest ID's
|
|
local A_LESSON_TO_LEARN = 336
|
|
|
|
function spawn(NPC)
|
|
SetRequiredQuest(NPC, A_LESSON_TO_LEARN, 1)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end |