Jump to content
  • 0

[Resolvido] Help - Boost Stone System


vinicius231

Question

Fala galera , hoje vim pedir ajuda de vocês que manja disso!!

Estou com erro na minha script "boost stone" Simplesmente ela não pega 

Meu servidor possui level system, creio que seja por esse motivo

Quem poder ajudar agradeço

Script:

 

Citar

-- Scrit Por Marshmello
function onUse(cid, item, fromPosition, itemEx, toPosition)
 
local meuovo = {
    qnt = 1,      --quantidade de boost q vai ser adicionada
    maxi = 50,      --maximo de boost 
    chance = 40,  --chance de falhar
    boost_fail = 6,  --- quanditade q ela pode falhar
    falhar = 6,   --- pra onde a boost vai voltar quando falhar
}
 
local minhabola = getPlayerSlotItem(cid, 8).uid
local boost = getItemAttribute(minhabola, "boost") or 0
 
    if minhabola <= 0 then
        return doPlayerSendCancel(cid, "Coloque um pokémon no Main Slot!")
    elseif boost >= meuovo.maxi then
        return doPlayerSendCancel(cid, "Seu pokémon já se encontra no nível máximo de boost!")
    end
    
    if boost >= meuovo.boost_fail  then
        if math.random(1, 100) <= meuovo.chance then
            doItemSetAttribute(minhabola, "boost", (boost + meuovo.qnt))
            doSendMagicEffect(fromPosition, 173)
            doRemoveItem(item.uid, 1)
        else
            doPlayerSendCancel(cid,"Falhou!")
            doItemSetAttribute(minhabola, "boost", (meuovo.falhar))
            doRemoveItem(item.uid, 1)
        end
    else
        doItemSetAttribute(minhabola, "boost", (boost + meuovo.qnt))
        doSendMagicEffect(fromPosition, 173)
        doRemoveItem(item.uid, 1)
    end
    return true
end

 

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
Em 15/05/2019 em 18:07, vinicius231 disse:
Versão do Servidor: TFS - 0.3.5
Tipo de Script: actions
Código:
  Mostrar conteúdo oculto



 

Fala galera , hoje vim pedir ajuda de vocês que manja disso!!

Estou com erro na minha script "boost stone" Simplesmente ela não pega 

Meu servidor possui level system, creio que seja por esse motivo

Quem poder ajudar agradeço

Script:

 

 

Isso simplesmente e bug do OTC kkk,  troque o ID da boost stone para outro e tente

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...