zW1Z4RD Posted January 1, 2019 Share Posted January 1, 2019 Alguem me ajudar a por essa função por comando quando entrar no marker dar o comando e ganhar o money Peguei esse cod na net ------------------------------------------------------------------------------------------------------------------------------------------------------------ marker = createMarker (2904.5390625,2941.84375,24.894870758057 -1, "cylinder", 1.2, 0 ,26 ,255, 95) -- Local Onde Pega O Emprego function open (source) givePlayerMoney ( source, 5000 ) end addEventHandler ("onMarkerHit", marker, open) 4 minutes ago, zW1Z4RD said: Alguem me ajudar a por essa função por comando quando entrar no marker dar o comando e ganhar o money Peguei esse cod na net ------------------------------------------------------------------------------------------------------------------------------------------------------------ marker = createMarker (2904.5390625,2941.84375,24.894870758057 -1, "cylinder", 1.2, 0 ,26 ,255, 95) -- Local Onde Pega O Emprego function open (source) givePlayerMoney ( source, 5000 ) end addEventHandler ("onMarkerHit", marker, open) Já me ajudaram obg Link to comment
Tommy. Posted January 1, 2019 Share Posted January 1, 2019 marker = createMarker (2904.5390625,2941.84375,24.894870758057 -1, "cylinder", 1.2, 0 ,26 ,255, 95) -- Local Onde Pega O Emprego function giveMoney(source) if isElementWithinMarker(source, marker) then givePlayerMoney(source, 5000) end end addCommandHandler("giveMoney", giveMoney) 2 Link to comment
Jonas^ Posted January 1, 2019 Share Posted January 1, 2019 (edited) 12 hours ago, zW1Z4RD said: Alguem me ajudar a por essa função por comando quando entrar no marker dar o comando e ganhar o money Peguei esse cod na net ------------------------------------------------------------------------------------------------------------------------------------------------------------ marker = createMarker (2904.5390625,2941.84375,24.894870758057 -1, "cylinder", 1.2, 0 ,26 ,255, 95) -- Local Onde Pega O Emprego function open (source) givePlayerMoney ( source, 5000 ) end addEventHandler ("onMarkerHit", marker, open) Já me ajudaram obg Eu faria assim: local markerMoney = createMarker (2904.5390625, 2941.84375, 24.894870758057 -1, "cylinder", 1.2, 0, 26, 255, 95) -- Marker aonde o jogador podera pegar o dinheiro function darDinheiro (source) local reward = 5000 if not getPedOccupiedVehicle (source, markerMoney) then -- Se o jogador não estiver em um veículo e estiver no marker então: if isElementWithinMarker (source, markerMoney) then -- Se o jogador estiver no marker então: givePlayerMoney (source, reward) -- Envia 5k para o jogador que digitou o comando. outputChatBox ( "Parabéns! Você recebeu +#00FF00"..reward.." #FFFFFFnão gaste com doces :)", source, 255, 255, 255, true) -- Envia a mensagem informando o valor ganho. else outputChatBox ( "Você não esta no marker", source) -- Se o jogador não estiver no marker envia essa mensagem avisando o jogador. end -- Finaliza a verificação se o jogador estiver no marker else outputChatBox ( "Você esta em um veículo e não pode usar este comando.", source) -- Se o jogador estiver em um veículo e tentar usar o comando no marker, ira envia essa mensagem para ele. end -- Finaliza a verificação se o jogador estiver em um veículo e tentar usar o comando. end addCommandHandler( "pegarmoney", darDinheiro) -- Comando para chamar a função 'darDinheiro' Edited January 1, 2019 by OverKILL 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