Jump to content

Alguem me ajuda pfv


Recommended Posts

elseif type == 'inventario' then -- nome do tipo
    giveItem(player, config[vipSelect]['Outros'][index][2], config[vipSelect]['Outros'][index][4]) -- comando que vai executar ao clicar no botão
    notifyS(player, 'Você pegou o item ' .. config[vipSelect]['Outros'][index][1] .. ' com sucesso!', 'success') -- notificação

Alguem sabe qual comando colocar ali encima para blindar o carro, é um painel vip por isso ta vipselect 'outros' queria blindar os carros no painel vip e nn sei o comando certo ja tentei por mais nn vai, o painel é mt bom nn queria perder atoa

Edited by Lord Henry
Código convertido de texto para Lua.
Link to comment
  • 2 weeks later...
elseif type == 'inventario' then
    giveItem(player, config[vipSelect]['Outros'][index][2], config[vipSelect]['Outros'][index][4])
    notifyS(player, 'Você pegou o item ' .. config[vipSelect]['Outros'][index][1] .. ' com sucesso!', 'success')

    local vehicle = getPedOccupiedVehicle(player)
    if vehicle then
        setVehicleArmor(vehicle, 1000) --- blinda o carro em 100%
        notifyS(player, 'seu carro foi blindado com sucesso', 'success')
    else
        notifyS(player, 'voce não está em um veiculo', 'error')
    end

setVehicleArmor(vehicle, 1000) vai blindar o carro

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...