mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
23 lines
No EOL
528 B
Lua
Executable file
23 lines
No EOL
528 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Antonica/aSabertoothrunecasterRoam.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2023.03.08 08:03:58
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
require "SpawnScripts/Generic/NPCModule"
|
|
|
|
function spawn(NPC, Spawn)
|
|
NPCModule(NPC, Spawn)
|
|
BlackburrowGnoll(NPC)
|
|
RandomMovement(NPC, Spawn, 12, -12, 2, 8, 15)
|
|
RandomWeapons(NPC)
|
|
end
|
|
|
|
function respawn(NPC, Spawn)
|
|
spawn(NPC)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
end |