mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
22 lines
527 B
Lua
Executable file
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
|