eq2emu-content/SpawnScripts/ElddarGrove/BreenoMesspie.lua
2024-10-26 11:37:28 +00:00

22 lines
527 B
Lua
Executable file

--[[
Script Name : SpawnScripts/ElddarGrove/BreenoMesspie.lua
Script Purpose : Breeno Messpie
Script Author : Dorbin
Script Date : 2022.05.01
Script Notes :
--]]
dofile("SpawnScripts/Generic/GenericEcologyVoiceOvers.lua")
function spawn(NPC)
SetPlayerProximityFunction(NPC, 7, "InRange", "LeaveRange")
end
function hailed(NPC, Spawn)
FaceTarget(NPC, Spawn)
GenericEcologyHail(NPC, Spawn, faction)
end
function InRange(NPC,Spawn)
GenericEcologyCallout(NPC, Spawn, faction)
end