Henr1 Posted November 8, 2020 Share Posted November 8, 2020 Queria Fazer Um Sistema para o player receber tal salario por tempo , ja tentei mas não consegui, se alguem puder ajudar Link to comment
noonbr Posted November 9, 2020 Share Posted November 9, 2020 (edited) Se tentou, mostre seu código para vermos o que podemos alterar e te ajudar para conseguir fazer funcionar. Enviar códigos prontos não é um trabalho feito pela maioria. Edited November 9, 2020 by GSC Link to comment
Boechat Posted November 9, 2020 Share Posted November 9, 2020 Coloque um intervalo menor e veja se isso vai funcionar, eu não testei: Client-side: local intervalo = 3600000 -- tempo em milisegundos (atualmente está 1 hora) local tick = getTickCount () function salario () if tick + intervalo <= getTickCount() then triggerServerEvent('pagarSalario', localPlayer) tick = getTickCount () end end addEventHandler ('onClientRender', root, salario) Server-side: local salario = 1000 --Valor do salario addEvent('pagarSalario', true) function pagarSalario () local money = getPlayerMoney (source) setPlayerMoney(source, money + salario) end addEventHandler('pagarSalario', root, pagarSalario) 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