absorb % don't work for me, and magic level have this issue
no change
if i use this script using "ITEM_ABILITY_MAGICPOINTSPERCENT", add magic level but don't show in look
if i change to
no change
Code:
01:38 You see a book of lies (Def:18) (magic level +20, magic level percent +20%, protection earth +20%).
It can only be wielded properly by sorcerers and druids of level 200 or higher.
It weighs 25.60 oz.
it can only be wielded properly by druids and sorcerers of level 150 or higher
if i use this script using "ITEM_ABILITY_MAGICPOINTSPERCENT", add magic level but don't show in look
LUA:
function onUse(player, item, fromPosition, target, toPosition, isHotkey)
if not target:isItem() then
return false
end
local position = (toPosition.x ~= 65535 and toPosition or player:getPosition())
target:setAbility(ITEM_ABILITY_MAGICPOINTSPERCENT, math.random(1, 10))
position:sendMagicEffect(CONST_ME_MAGIC_RED)
item:remove()
return true
end
Code:
01:44 You see a book of lies (Def:18) (magic level +3, magic level percent +3%, protection earth +20%).
It can only be wielded properly by sorcerers and druids of level 200 or higher.
It weighs 25.60 oz.
it can only be wielded properly by druids and sorcerers of level 150 or higher