mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
20 lines
No EOL
390 B
Lua
Executable file
20 lines
No EOL
390 B
Lua
Executable file
--[[
|
|
Script Name : Spells/Commoner/GenericCosmeticPet.lua
|
|
Script Author : neatz09
|
|
Script Date : 2020.09.06 05:09:16
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
|
|
function cast(Caster, Target, PetID)
|
|
SummonCosmeticPet(Caster, PetID)
|
|
|
|
end
|
|
|
|
function remove(Caster, Target)
|
|
pet = GetCosmeticPet(Caster)
|
|
if pet ~= nil then
|
|
DismissPet(pet)
|
|
end
|
|
end |