Jump to content

Search the Community

Showing results for tags 'urgente'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Multi Theft Auto: San Andreas 1.x
    • Support for MTA:SA 1.x
    • User Guides
    • Open Source Contributors
    • Suggestions
    • Ban appeals
  • General MTA
    • News
    • Media
    • Site/Forum/Discord/Mantis/Wiki related
    • MTA Chat
    • Other languages
  • MTA Community
    • Scripting
    • Maps
    • Resources
    • Other Creations & GTA modding
    • Competitive gameplay
    • Servers
  • Other
    • General
    • Multi Theft Auto 0.5r2
    • Third party GTA mods
  • Archive
    • Archived Items
    • Trash

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Gang


Location


Occupation


Interests

Found 4 results

  1. Eu queria fazer uma auto escola mais na hora do teste com mais de uma pessoa fazendo ela buga por completo como posso resolver isso? Client_Side local rx,ry = guiGetScreenSize() local x,y = (rx/1440),(ry/900) local off_on = false local selected = "" markers = { [1] = {2809.625, -1576.302, 10.928}, [2] = {2840.45, -1571.208, 10.922}, } function painel() dxDrawRectangle(x*529, y*246, x*377, y*208, tocolor(75, 0, 0, 183), false) dxDrawRectangle(x*529, y*246, x*377, y*37, tocolor(11, 0, 0, 255), false) dxDrawText("Auto Escola", x*529, y*246, x*908, y*283, tocolor(255, 255, 255, 255), 2.00*x, "default", "center", "center", false, false, false, false, false) dxDrawRectangle(x*715, y*279, x*17, y*175, tocolor(11, 0, 0, 255), false) dxDrawRectangle(x*569, y*420, x*106, y*31, tocolor(38, 102, 18, 255), false) dxDrawRectangle(x*529, y*401, x*377, y*17, tocolor(11, 0, 0, 255), false) dxDrawRectangle(x*766, y*420, x*106, y*31, tocolor(254, 0, 0, 255), false) dxDrawRectangle(x*532, y*319, x*180, y*24, color1, false) if selected == "Moto" then else color1 = tocolor(0, 0, 0, 0) end if isCursorOnElement(x*532, y*319, x*180, y*24) then color1 = tocolor(255, 81, 81, 255) end dxDrawRectangle(x*532, y*349, x*180, y*24, color2, false) if selected == "Carro" then else color2 = tocolor(0, 0, 0, 0) end if isCursorOnElement(x*532, y*349, x*180, y*24) then color2 = tocolor(255, 81, 81, 255) end dxDrawRectangle(x*532, y*377, x*180, y*24, color3, false) if selected == "Caminhão" then else color3 = tocolor(0, 0, 0, 0) end if isCursorOnElement(x*532, y*377, x*180, y*24) then color3 = tocolor(255, 81, 81, 255) end dxDrawText("Categoria", x*529, y*283, x*716, y*306, tocolor(255, 255, 255, 255), 1.20*x, "default-bold", "center", "center", false, false, false, false, false) dxDrawText("Preço", x*732, y*283, x*906, y*306, tocolor(255, 255, 255, 255), 1.20*x, "default-bold", "center", "center", false, false, false, false, false) dxDrawText("Moto (A)", x*529, y*321, x*715, y*341, tocolor(255, 255, 255, 255), 1.00*x, "default-bold", "center", "center", false, false, false, false, false) dxDrawText("Carro (B)", x*529, y*351, x*715, y*371, tocolor(255, 255, 255, 255), 1.00*x, "default-bold", "center", "center", false, false, false, false, false) dxDrawText("Caminhão (C)", x*529, y*381, x*715, y*401, tocolor(255, 255, 255, 255), 1.00*x, "default-bold", "center", "center", false, false, false, false, false) dxDrawText("R$: 2000", x*732, y*321, x*906, y*341, tocolor(255, 255, 255, 255), 1.00*x, "default-bold", "center", "center", false, false, false, false, false) dxDrawText("R$: 5000", x*732, y*351, x*906, y*371, tocolor(255, 255, 255, 255), 1.00*x, "default-bold", "center", "center", false, false, false, false, false) dxDrawText("R$: 7000", x*732, y*381, x*906, y*401, tocolor(255, 255, 255, 255), 1.00*x, "default-bold", "center", "center", false, false, false, false, false) dxDrawText("Fazer Carteira", x*569, y*420, x*675, y*451, tocolor(255, 255, 255, 255), 1.00*x, "default-bold", "center", "center", false, false, false, false, false) dxDrawText("Cancelar", x*766, y*420, x*872, y*451, tocolor(255, 255, 255, 255), 1.00*x, "default-bold", "center", "center", false, false, false, false, false) end function abrirAutoEscola() if not isEventHandlerAdded("onClientRender", root, painel) then addEventHandler("onClientRender", root, painel) showCursor(true) end end addEvent("AbrirPainelAutoEscola", true) addEventHandler("AbrirPainelAutoEscola", getRootElement(), abrirAutoEscola) --clicks local money = 0 addEventHandler ( "onClientClick", root, function(_,state) if isEventHandlerAdded("onClientRender", root, painel) then if state == "down" then if isCursorOnElement(x*532, y*319, x*180, y*24) then selected = "Moto" money = 2000 elseif isCursorOnElement(x*532, y*349, x*180, y*24) then selected = "Carro" money = 5000 elseif isCursorOnElement(x*532, y*377, x*180, y*24) then selected = "Caminhão" money = 7000 end if isCursorOnElement(x*766, y*420, x*106, y*31) then if isEventHandlerAdded("onClientRender", root, painel) then showCursor(false) selected = "" removeEventHandler("onClientRender", root, painel) end end if isCursorOnElement(x*569, y*420, x*106, y*31) then if selected == "" then triggerServerEvent("infoAutoEscola",localPlayer, localPlayer, "Selecione uma Categoria", "info") return end if getPlayerMoney(getLocalPlayer()) >= money then triggerServerEvent("IniciarAutoEscola", localPlayer, localPlayer, selected,money) triggerServerEvent("AutoEscolaTeste",localPlayer,localPlayer) else triggerServerEvent("infoAutoEscola",localPlayer, localPlayer, "Você não tem dinheiro suficiente", "error") end if isEventHandlerAdded("onClientRender", root, painel) then showCursor(false) selected = "" removeEventHandler("onClientRender", root, painel) end end end end end) addEvent("CreateMarkerAutoEscola", true) addEventHandler("CreateMarkerAutoEscola", root, function(number) local x, y, z = markers[number][1], markers[number][2], markers[number][3] marker = createMarker(x, y, z , "checkpoint", 2.0, 255, 255, 255) if number == 2 then terminou = true end end) addEventHandler ( "onClientMarkerHit", getRootElement(), function(source) triggerServerEvent("onMarkerHitAutoEscola", localPlayer, source) finalizar() end) function finalizar() if isElement(marker) then destroyElement(marker) end if getElementData(getLocalPlayer(), "AutoEscolaDataStarted",false) then triggerServerEvent("infoAutoEscola",localPlayer, localPlayer,"Você terminou o teste","success") end end addEvent("FinalizarTesteAutoEscola", true) addEventHandler ( "FinalizarTesteAutoEscola", root, finalizar) local x,y = guiGetScreenSize() function isCursorOnElement(x, y, w, h) if (not isCursorShowing()) then return false end local mx, my = getCursorPosition() local fullx, fully = guiGetScreenSize() cursorx, cursory = mx*fullx, my*fully if cursorx > x and cursorx < x + w and cursory > y and cursory < y + h then return true else return false end end function isEventHandlerAdded( sEventName, pElementAttachedTo, func ) if type( sEventName ) == 'string' and isElement( pElementAttachedTo ) and type( func ) == 'function' then local aAttachedFunctions = getEventHandlers( sEventName, pElementAttachedTo ) if type( aAttachedFunctions ) == 'table' and #aAttachedFunctions > 0 then for i, v in ipairs( aAttachedFunctions ) do if v == func then return true end end end end return false end Server_Side Abrir_AutoEscola = createMarker(2770.561, -1628.517, 11.177, "cylinder", 1.2,16, 111, 231, 90) Blip = createBlipAttachedTo ( Abrir_AutoEscola, 38 ) function OpenguiAE(thePlayer) local account = getPlayerAccount (thePlayer) if isGuestAccount (account) then outputChatBox ( "#106FE7✘ #ffffffAutoEscola #106FE7✘➺ #FFFFFFVocê não pode fazer a carta deslogado, Crie uma Conta!", thePlayer, 255,255,255,true) return end if isElementWithinMarker(thePlayer, Abrir_AutoEscola) then if getElementData(thePlayer, "AutoEscolaDataStarted", true) then exports.infobox:addBox(thePlayer,"Você ja começou um teste","warning") return end triggerClientEvent(thePlayer,"AbrirPainelAutoEscola",thePlayer) end end addEventHandler( "onMarkerHit", Abrir_AutoEscola, OpenguiAE ) function addBoxAutoEscola(element,msg,type) exports.infobox:addBox(element,msg,type) end addEvent("infoAutoEscola", true) addEventHandler("infoAutoEscola", root, addBoxAutoEscola) Moto_Teste = {} Carro_Teste = {} Caminhao_Teste = {} function iniciar(thePlayer, selected,money) exports.infobox:addBox(thePlayer,"Iniciou o Teste de "..selected,"info") setElementData(thePlayer, "AutoEscolaDataPlayer", 1) setElementData(thePlayer, "AutoEscolaDataStarted", true) takePlayerMoney(thePlayer,tonumber(money)) if selected == "Moto" then Moto_Teste[thePlayer] = createVehicle(581,2777.118, -1610.536, 10.922,-0, 0, 272.231) warpPedIntoVehicle(thePlayer, Moto_Teste[thePlayer]) elseif selected == "Carro" then Carro_Teste[thePlayer] = createVehicle(415,2777.118, -1610.536, 10.922,-0, 0, 272.231) warpPedIntoVehicle(thePlayer, Carro_Teste[thePlayer]) elseif selected == "Caminhão" then Caminhao_Teste[thePlayer] = createVehicle(515,2777.118, -1610.536, 10.922,-0, 0, 272.231) warpPedIntoVehicle(thePlayer, Caminhao_Teste[thePlayer]) end end addEvent("IniciarAutoEscola", true) addEventHandler("IniciarAutoEscola", root, iniciar) addEvent("onMarkerHitAutoEscola", true) function teste(element) if isElement(element) then local number = tonumber((getElementData(element, "AutoEscolaDataPlayer") or 1)) if getElementData(element, "AutoEscolaDataStarted", true) then triggerClientEvent(element,"CreateMarkerAutoEscola",element, number) end addEventHandler("onMarkerHitAutoEscola", root, function(source) if source == element then setElementData(source, "AutoEscolaDataPlayer", number +1) if number == 2 then triggerClientEvent(source,"FinalizarTesteAutoEscola",source) exports.infobox:addBox(source,"Você terminou o teste","success") setElementData(source, "AutoEscolaDataStarted", false) if Moto_Teste[source] and isElement(Moto_Teste[source]) then destroyElement ( Moto_Teste[source] ) end if Carro_Teste[source] and isElement(Carro_Teste[source]) then destroyElement ( Carro_Teste[source] ) end if Caminhao_Teste[source] and isElement(Caminhao_Teste[source]) then destroyElement ( Caminhao_Teste[source] ) end return end teste(source) end end) end end addEvent("AutoEscolaTeste", true) addEventHandler("AutoEscolaTeste", root, teste) addEventHandler ( "onVehicleExit", getRootElement(), function(thePlayer) if getElementData(thePlayer,"AutoEscolaDataStarted") then exports.infobox:addBox(thePlayer,"Você falhou no teste","error") destroyElement(markerCheckpoint) setElementData(thePlayer, "AutoEscolaDataPlayer", nil) if Moto_Teste[thePlayer] and isElement(Moto_Teste[thePlayer]) then destroyElement ( Moto_Teste[thePlayer] ) end if Carro_Teste[thePlayer] and isElement(Carro_Teste[thePlayer]) then destroyElement ( Carro_Teste[thePlayer] ) end if Caminhao_Teste[thePlayer] and isElement(Caminhao_Teste[thePlayer]) then destroyElement ( Caminhao_Teste[thePlayer] ) end setElementData(thePlayer, "AutoEscolaDataStarted", false) end end)
  2. Em alguns meses eu estava jogando SA-MP e coloquei um mod de um veículo pesado no jogo e o som dos veiculos sumiram do nada e depois de alguns dias jogando o MTA o som dos veiculos também sumiram (dentro de uns 3 dias no max) e eu tentei resolver esse bug e como não consegui deixei de lado e essa semana eu estava pesquisando a forma de resolver mas infelizmente não achei nada. No SA-MP o som todo dos veiculos sumiram , já o MTA eu consigo escutar derrapagens e o som some enquanto estou dentro dele , quando eu saio do veiculo o som aparece de acordo com a posição que fico perto do veiculo , eu troquei os sons do GTA por sons modificados e depois coloquei os sons originais e já mexi nas configurações do MTA e não deu em nada. E recentemente eu estava jogando MTA normalmente e percebi que eu não estava conseguindo escutar a rádio modificada dos servidores e isso não é erro de algum servidor porque todo dia eu jogava nele e coloquei um script de rádio em meu servidor e meu amigo conseguia escutar e eu não. Não sei se deu pra vocês entenderem mas espero que consigam me ajudar.
  3. addCommandHandler( "camhack", function( thePlayer ) if isPedInVehicle( thePlayer ) then if getVehicleOccupant( getPedOccupiedVehicle( thePlayer ) ) ~= thePlayer then if getElementData( thePlayer, "isPlayerInCamHackMode" ) then setElementAlpha( thePlayer, 255 ) setPlayerCamHackDisabled( thePlayer ) else setElementAlpha( thePlayer, 0 ) setPlayerCamHackEnabled( thePlayer, false ) end end else if getElementData( thePlayer, "isPlayerInCamHackMode" ) then setElementAlpha( thePlayer, 255 ) setPlayerCamHackDisabled( thePlayer ) setElementFrozen( thePlayer, false ) setElementCollisionsEnabled( thePlayer, true ) else setElementAlpha( thePlayer, 0 ) setPlayerCamHackEnabled( thePlayer, true ) setElementFrozen( thePlayer, true ) setElementCollisionsEnabled( thePlayer, false ) end end end ) addCommandHandler( "camhackm", function( ) isSlowCamHack = not isSlowCamHack end ) Bom eu tentei por esses 2 comandos só pra qm tiver a permissão de banimento poder usar com esse codigo : if ( hasObjectPermissionTo ( thePlayer, "command.ban", true ) ) then Só que eu não tive sucesso tentei de várias formas, e não deu certo a resource parava de funcionr ! alguém poderia me ajudar?
  4. Quando tento entrar em qualquer servidor do MTA , aparece esse mensagem : "Erro de conexão. IP inválido. " Preciso que vocês me ajudem a resolver esse problema , ja desinstalei e instalei varias vezes e não resolve . Muito obrigado pela atenção.
×
×
  • Create New...