20 lines
No EOL
408 B
Lua
Executable file
20 lines
No EOL
408 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Peatbog_Classic/amarshmonitor.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2023.09.22 02:09:46
|
|
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 |