EQ2EMu/server/SpawnScripts/Commonlands/avirulentleper.lua
2022-06-05 13:50:31 -07:00

27 lines
484 B
Lua
Executable file

--[[
Script Name : SpawnScripts/Commonlands/avirulentleper.lua
Script Author : Premierio015
Script Date : 2021.02.21 09:02:47
Script Purpose :
:
--]]
function spawn(NPC)
EmoteLoop(NPC)
end
function EmoteLoop (NPC)
PlayAnimation(NPC, 12191)
AddTimer(NPC, 15000, "EmoteLoop")
end
function hailed(NPC, Spawn)
FaceTarget(NPC, Spawn)
end
function respawn(NPC)
spawn(NPC)
end