mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
18 lines
No EOL
366 B
Lua
Executable file
18 lines
No EOL
366 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Longshadow/afurioustroll.lua
|
|
Script Author : torsten
|
|
Script Date : 2022.07.19 01:07:14
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
function spawn(NPC)
|
|
SetPlayerProximityFunction(NPC, 20, "InRange", "LeaveRange")
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end |