eq2emu-content/SpawnScripts/SummonerPets/BubblesRandom.lua

21 lines
456 B
Lua
Raw Permalink Normal View History

2024-10-26 11:37:28 +00:00
--[[
Script Name : SpawnScripts/SummonerPets/BubblesRandom.lua
Script Author : LordPazuzu
Script Date : 2024.04.20 03:04:06
Script Purpose :
:
--]]
require "SpawnScripts/Generic/NPCModule"
function spawn(NPC, Spawn)
NPCModule(NPC, Spawn)
RandomMovement(NPC, Spawn, 20, -20, 2, 8, 15)
end
function hailed(NPC, Spawn)
FaceTarget(NPC, Spawn)
end
function respawn(NPC)
spawn(NPC)
2024-07-22 13:56:05 -04:00
end