Ir para conteúdo
  • 0

Mana Rune Curando Por Level.


lugk123

Pergunta

O script da minha mana rune está:

 

local combat = createCombatObject()

setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_MANADRAIN)

setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_SLEEP)

setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, 1)

setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, 0)

setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 5, 4, 3, 2)

 

function onCastSpell(cid, var)

return doCombat(cid, combat, var)

end

 

Não entendo mto dessa linha:"setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 5, 4, 3, 2)". Queria saber como faz para fazer a mana rune curar por level.

Link para o comentário
Compartilhar em outros sites

1 resposta a esta questão

Posts Recomendados

  • 0

To criando um aki para você

 

Edit :

 

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 MANA RUNE" script="runalvl.lua"/>

 

dps so colocar o id da mana rune

 

creio que funcione em 8.60

Editado por SkyLigh
Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.
×
×
  • Criar Novo...