mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
32 lines
No EOL
666 B
Lua
32 lines
No EOL
666 B
Lua
--[[
|
|
Script Name : SpawnScripts/Commonlands/aBloodskullshaman.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2024.01.04 05:01:01
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
require "SpawnScripts/Generic/NPCModule"
|
|
|
|
function spawn(NPC, Spawn)
|
|
NPCModule(NPC, Spawn)
|
|
Bloodskull(NPC)
|
|
OrcArmorCommon(NPC)
|
|
AddTimer(NPC, 6000, "movement")
|
|
|
|
end
|
|
|
|
function movement(NPC, Spawn)
|
|
if IsHeroic(NPC) == false then
|
|
RandomMovement(NPC, Spawn, 12, -12, 2, 8, 15)
|
|
else
|
|
IdlePriest(NPC)
|
|
end
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end |