23 lines
527 B
Lua
Executable file
23 lines
527 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/ElddarGrove/DelmaMesspie.lua
|
|
Script Purpose : Delma 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
|
|
|