20 lines
No EOL
413 B
Lua
Executable file
20 lines
No EOL
413 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/DownBelow_Classic/afallenbodyguard.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2023.09.22 02:09:09
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
require "SpawnScripts/Generic/NPCModule"
|
|
|
|
function spawn(NPC, Spawn)
|
|
NPCModule(NPC, Spawn)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end |