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