iae galera hoje trago um script que a runa reala por level e da seguinte maneira
o player e level 100 ele so podera heala de 200 a 300 e assim vai
então vamos la
Va em data / script / actions / e crie um arquivo.lua e renomeie para runalvl
e add
function onUse(cid, item, fromPosition, itemEx, toPosition)
local min100 = 200 -- quanto o lvl 100 vai curar no minimo
local max100 = 400 -- quanto o lvl 100 vai curar no maximo
local min300 = 500 -- quanto o lvl 300 vai curar no minimo
local max300 = 700 -- quanto o lvl 300 vai curar no maximo
local min400 = 900 -- quanto o lvl 400 vai curar no minimo
local max400 = 1100 -- quanto o lvl 400 vai curar no maximo
local lvl1,lvl2,lvl3 = 100,300,400 -- modificaçao do level ta de 100 , 300 , 400 dps so mudar
local storage = 11548
local exhau = 3 -- quantos segundos pra usar denovo a potion
if getPlayerLevel(cid) <= lvl1 and doPlayerAddMana(itemEx.uid, math.random(min100, max100)) then
return true
elseif getPlayerLevel(cid) <= lvl2 and doPlayerAddMana(itemEx.uid, math.random(min100, max100)) then
return true
elseif getPlayerLevel(cid) <= lvl3 and doPlayerAddMana(itemEx.uid, math.random(min100, max100)) then
return true
elseif (getPlayerStorageValue(cid, storage) <= os.time()) then
setPlayerStorageValue(cid,config.s,os.time()+exhau)
doSendMagicEffect(getThingPos(itemEx.uid), CONST_ME_MAGIC_BLUE)
doCreatureSay(itemEx.uid, "Curado..", TALKTYPE_ORANGE_1)
return true
end
end
dps em actions.xml
<action itemid="ID DA RUNA" script="runalvl.lua"/>
créditos
Skyligh 90 % (Pela Criação e postagem)
lugk123 10 % (Pelo pedido do script)