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