mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
16 lines
No EOL
375 B
Lua
Executable file
16 lines
No EOL
375 B
Lua
Executable file
--[[
|
|
Script Name : ItemScripts/SturdyFruitcake.lua
|
|
Script Purpose :
|
|
Script Author : Neatz09
|
|
Script Date : 11/23/19
|
|
Script Notes :
|
|
--]]
|
|
|
|
function used(Item,Player)
|
|
local target = GetTarget(Player)
|
|
if target ~= nil then
|
|
CastSpell(target, 5055, 1, Player)
|
|
RemoveItem(Player, 48286)
|
|
SummonItem(Target, 48286, 1)
|
|
end
|
|
end |