eq2emu-content/ItemScripts/PowerfulBloodoftheWolf.lua
2025-05-07 00:00:05 +00:00

22 lines
516 B
Lua

--[[
Script Name : ItemScripts/PowerfulBloodoftheWolf.lua
Script Author : mark
Script Date : 2025.05.06 12:05:52
Script Purpose :
:
--]]
--[[ Begin Item Effects
* Applies Blood of the Wolf when Activated. Lasts for 15 minutes.
* Increases speed of caster by 24.3%
* This effect suspends during combat
End Item Effects--]]
function used(Item, Player)
if (GetLevel(Player) >= 40)
then
CastSpell(Player, 2550539, 5)
end
end