Search the Community
Showing results for tags 'me ajudem'.
-
Alguem sabe me dizer como corrigir esse erro Por favor "Erro ao fazer o download dos arquivos solicitados. Timeout foi atingido [Nome de um mod recente instalado] NÃO TRADUZA A PAGINA
-
Queria saber se é possivel assim que o carro for destruido no desmanche por outro player, fazer com que o dono do carro receba a mensagem de que seu veiculo foi destruido. se sim como? abaixo é o codigo que estou tentado implementar esse funcionamento. local blipLocal = createBlip(1768, -2040, 14, 24) local marker = createMarker (1768, -2040, 12.7, "cylinder", 3, 255, 155, 30, 150); local acceptCar = true; local timerCurrent = 300000; setTimer(function() if (acceptCar == false) then setElementVisibleTo ( marker, root, true ); setElementVisibleTo ( blipLocal, root, true ); acceptCar = true; outputChatBox("#FFFF00[DESMANCHE] #FFFFFFO DESMANCHE ESTÁ A PROCURA POR VEICULOS NOVAMENTE.", root, 255, 255, 255, true); end end, timerCurrent,0) addEventHandler ( "onResourceStart", getRootElement(), function ( ) outputChatBox("#FFFF00[DESMANCHE] #FFFFFFO DESMANCHE ESTÁ COMPRANDO VEICULOS.", root, 255, 255, 255, true); end ) addEventHandler("onMarkerHit", marker, function (player) if (acceptCar == true) then local carPlayer = getPedOccupiedVehicle(player); if not (carPlayer) then return end acceptCar = false; valueCar = math.random(2500, 15000); destroyElement(carPlayer); givePlayerMoney(player, valueCar); outputChatBox("#FFFF00[DESMANCHE] #FFFFFFPARABÉNS VOCÊ RECEBEU #00ff00$"..valueCar.." #FFFFFFPOR VENDER ESTE VEICULO AO DESMANCHE.", player, 255, 255, 255, true) outputChatBox("#FFFF00[DESMANCHE] #FFFFFFO DESMANCHE ACABOU DE COMPRAR UM VEICULO E ENCERROU SUAS ATIVIDADES.", root, 255, 255, 255, true); setElementVisibleTo ( marker, root, false ); setElementVisibleTo ( blipLocal, root, false ); end end )