eq2emu-content/ItemScripts/Snowball.lua
2024-10-26 11:37:28 +00:00

15 lines
No EOL
301 B
Lua
Executable file

--[[
Script Name :
Script Purpose :
Script Author :
Script Date : 10/28/2019
Script Notes :
--]]
function used(Item,Player)
local target = GetTarget(Player)
if target ~= nil then
CastSpell(target, 5015, 1, Player)
RemoveItem(Player, 48108)
end
end