eficaz Posted September 18 Share Posted September 18 (edited) 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 September 18 by Lord Henry Código convertido de texto para Lua. Link to comment
Laxante101 Posted September 29 Share Posted September 29 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
Other Languages Moderators Lord Henry Posted October 1 Other Languages Moderators Share Posted October 1 Hum? setVehicleArmor não é uma função que existe no MTA, só se vc criou ela em outra parte do código. Para blindar um veículo, utilize a função SetVehicleDamageProof Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now