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

20 lines
No EOL
440 B
Lua
Executable file

--[[
Script Name : SpawnScripts/ElddarGrove/Ivanhoe.lua
Script Author : Dorbin
Script Date : 2022.11.04 04:11:41
Script Purpose :
:
--]]
dofile("SpawnScripts/Generic/ExpelNonCitizen.lua")
function spawn(NPC)
SetPlayerProximityFunction(NPC, 10, "InRange", "LeaveRange")
end
function InRange(NPC, Spawn)
NonCitizen(NPC,Spawn)
end
function respawn(NPC)
spawn(NPC)
end