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