mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
23 lines
510 B
Lua
Executable file
23 lines
510 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Longshadow/TNarra.lua
|
|
Script Purpose : T`Narra <Guard>
|
|
Script Author : John Adams
|
|
Script Date : 2008.09.29
|
|
Script Notes : Auto-Generated Conversation from PacketParser Data
|
|
--]]
|
|
dofile("SpawnScripts/Generic/GenericGuardVoiceOvers.lua")
|
|
|
|
function spawn(NPC)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
if GetFactionAmount(Spawn,12)<0 then
|
|
else
|
|
FaceTarget(NPC, Spawn)
|
|
GenericGuardHail(NPC,Spawn)
|
|
end
|
|
end
|