mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
19 lines
No EOL
408 B
Lua
19 lines
No EOL
408 B
Lua
--[[
|
|
Script Name : SpawnScripts/FallenGate/atormentedarmorsmith.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2025.03.10 05:03: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 |