mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
22 lines
No EOL
444 B
Lua
22 lines
No EOL
444 B
Lua
--[[
|
|
Script Name : SpawnScripts/Zek/AriallaClearsong.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2025.04.04 06:04:53
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
require "SpawnScripts/Generic/NPCModule"
|
|
|
|
function spawn(NPC, Spawn)
|
|
NPCModule(NPC, Spawn)
|
|
Deathfist(NPC)
|
|
OrcArmorCommon(NPC)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end |