mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
21 lines
406 B
Lua
Executable file
21 lines
406 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Ruins/Fangtarn.lua
|
|
Script Author : jakejp
|
|
Script Date : 2020.04.28 12:04:02
|
|
Script Purpose : Fangtarn <Mender>
|
|
:
|
|
--]]
|
|
|
|
function spawn(NPC)
|
|
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
Say(NPC, "At peace or at war, my work must go on.", Spawn)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end
|
|
|