mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
22 lines
405 B
Lua
Executable file
22 lines
405 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Commonlands/ahuntsman.lua
|
|
Script Author : gloat
|
|
Script Date : 2019.01.31 02:01:09
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
require "SpawnScripts/Generic/MovementCircleSmall"
|
|
function spawn(NPC)
|
|
SpawnChooseRandomMovement(NPC)
|
|
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
|
|
end
|
|
|