[email protected] Posted May 4, 2020 Share Posted May 4, 2020 (edited) Não estou conseguindo usar a ferramenta pra ficar igual o notepad -- ================= -- EnviarDinheiro ( server ) -- by Smokezin. -- ================= function findPlayer(name) local matches = {} for i,v in ipairs(getElementsByType("player")) do if getPlayerName(v) == name then return v end local playerName = getPlayerName(v):gsub("#%x%x%x%x%x%x", "") playerName = playerName:lower() if playerName:find(name:lower(), 0) then table.insert(matches, v) end end if #matches == 1 then return matches[1] end return false end function enviarDinheiro(player, cmd, name, quantidade) local quantidade = tonumber(quantidade) if name and quantidade then local alvo = findPlayer(name) local money = getPlayerMoney(player) if money >= quantidade then takePlayerMoney(player, quantidade) givePlayerMoney(alvo, quantidade) outputChatBox("Você enviou" ..quantidade.. " para o jogador " .. getPlayerName(alvo).. ".", player, 255,255,255, true) outputChatBox("O Jogador " ..getPlayerName(player).. " te enviou #ffff00R$" ..quantidade.. ".", alvo, else outputChatBox("Você não tem dinheiro suficiente", player, 255,255,255 true) end end end addCommandHandler("enviardinheiro",enviarDinheiro) Edited May 4, 2020 by [email protected] Link to comment
KronoS Lettify Posted May 4, 2020 Share Posted May 4, 2020 (edited) @[email protected] Coloque seu código no formato recomendado para ficar mais legível. Usando a seguinte ferramenta: Edited May 4, 2020 by KronoS Lettify 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