mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
25 lines
No EOL
556 B
Lua
Executable file
25 lines
No EOL
556 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Antonica/aSabertoothrunecaster.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2022.07.12 10:07:45
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
dofile("SpawnScripts/Generic/MonsterCallouts/SabertoothGnoll1.lua")
|
|
require "SpawnScripts/Generic/NPCModule"
|
|
|
|
function spawn(NPC, Spawn)
|
|
NPCModule(NPC, Spawn)
|
|
BlackburrowGnoll(NPC)
|
|
RandomWeapons(NPC)
|
|
IdlePriest(NPC)
|
|
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end |