mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
23 lines
No EOL
546 B
Lua
Executable file
23 lines
No EOL
546 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Antonica/aDarkCovenwitch.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2022.07.22 08:07:44
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
dofile("SpawnScripts/Generic/MonsterCallouts/Dark_Coven.lua")
|
|
require "SpawnScripts/Generic/NPCModule"
|
|
|
|
function spawn(NPC, Spawn)
|
|
NPCModule(NPC, Spawn)
|
|
human(NPC)
|
|
RandomMovement(NPC, Spawn, 12, -12, 2, 8, 15)
|
|
end
|
|
|
|
function respawn(NPC, Spawn)
|
|
spawn(NPC)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
end |