mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
15 lines
No EOL
288 B
Lua
Executable file
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 |