eq2emu-content/SpawnScripts/Generic/private_spawn.lua

15 lines
288 B
Lua
Raw Permalink Normal View History

2024-10-26 11:37:28 +00:00
--[[
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)
2024-07-22 13:56:05 -04:00
end