mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
26 lines
459 B
Lua
Executable file
26 lines
459 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/SummonerPets/Bubbles.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2022.11.27 03:11:24
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
require "SpawnScripts/Generic/NPCModule"
|
|
|
|
function spawn(NPC, Spawn)
|
|
NPCModule(NPC)
|
|
DervishThug(NPC)
|
|
|
|
end
|
|
|
|
function attacked(NPC)
|
|
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
Encounters(NPC, Spawn)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end
|