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

15 lines
No EOL
288 B
Lua
Executable file

--[[
Script Name : SpawnScripts/Generic/private_spawn.lua
Script Purpose : only used to make a spawn private
Script Author : theFoof
Script Date : 2013.6.12
Script Notes :
--]]
function spawn(NPC)
AddSpawnAccess(NPC, NPC)
end
function respawn(NPC)
spawn(NPC)
end