mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
23 lines
No EOL
579 B
Lua
Executable file
23 lines
No EOL
579 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/TheGraveyard_Classic/abrittleskeleton.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2023.08.08 03:08:02
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
dofile("SpawnScripts/Generic/MonsterCallouts/BaseSkeleton1.lua")
|
|
require "SpawnScripts/Generic/NPCModule"
|
|
|
|
function spawn(NPC, Spawn)
|
|
NPCModule(NPC, Spawn)
|
|
RandomMovement(NPC, Spawn, 5, -5, 2, 8, 15)
|
|
SetSpawnAnimation(NPC, 13016)
|
|
end
|
|
|
|
function respawn(NPC, Spawn)
|
|
spawn(NPC)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
end |