Ir para conteúdo
  • 0

script venda de pokemon por ppoints


kaleudd

Pergunta

instalei o system de ppoints gostaria de adaptar para vender um x pokémon e remover x quantia de p points

 

segue o system ppoints usado:

 

Spoiler
function getPlayerVipPoints(cid)    local Info = db.getResult("SELECT `premium_points` FROM `accounts` WHERE `id` = " .. getPlayerAccountId(cid) .. "")        if Info:getID() ~= LUA_ERROR then        local Points= Info:getDataInt("premium_points")        Info:free()        return Points    end     return LUA_ERRORendfunction doPlayerAddVipPoints(cid, points)    local dif = getPlayerVipPoints(cid) + points    if dif >= 0 then        db.query("UPDATE `accounts` SET `premium_points` = `premium_points` + " .. points .. " WHERE `id` = " .. getPlayerAccountId(cid) .. ";")        return TRUE    end    return FALSEendfunction doPlayerRemoveVipPoints(cid, points)    local dif = getPlayerVipPoints(cid) - points    if dif >= 0 then        db.query("UPDATE `accounts` SET `premium_points` = `premium_points` - " .. points .. " WHERE `id` = " .. getPlayerAccountId(cid) .. ";")        return TRUE    end    return FALSEend

 

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

1 resposta a esta questão

Posts Recomendados

  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...