Sparta Posted March 15, 2020 Share Posted March 15, 2020 Criar um script de receber dinheiro, a partir de um comando qualquer player recebe uma quantidade de dinheiro específica. Link to comment
Administrators Tut Posted March 15, 2020 Administrators Share Posted March 15, 2020 Please use the Portuguese board if you wish to receive help in that language. Scripting section is for English posts only. We'll have your thread moved there, but for future reference please see: https://forum.multitheftauto.com/forum/127-programação-em-Lua/ Thanks 1 Link to comment
Angelo Pereira Posted March 15, 2020 Share Posted March 15, 2020 (edited) É bom dar uma lida nesse tópico vídeo tudo sobre este fórum ! Farei um pequeno exemplo... addCommandHandler("receber", function(player, _, valor) if tonumber(valor) then outputChatBox("Você Pegou R$: "..tonumber(valor).." Reais.", player, 255,255,255, true) givePlayerMoney(player, tonumber(valor)) else outputChatBox("Error, Adicione o Valor.", player, 255,255,255, true) end end) Edited March 15, 2020 by Lord Henry Corrigida indentação. 1 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