Jump to content

Shady1

Members
  • Posts

    906
  • Joined

  • Last visited

  • Days Won

    61

Everything posted by Shady1

  1. I guess there is something wrong with the source files, can you stop the test by making the files?
  2. I'll be waiting for you tag me
  3. thanks, he talked to me on discord and I gave him the necessary answer but forgot to comment on the topic in the forum... Thanks for your help.
  4. Shady1

    CD16 error

    Let's wait for MTA Staff to write a response about your problem.
  5. Shady1

    CD16 error

    Nonstandard GTA file: \audio\CONFIG\TrakLkup.dat Nonstandard GTA file: \audio\streams\BEATS Nonstandard GTA file: \audio\streams\CUTSCENE a few/non-standard files. Reinstall GTA: SA with a clean, unmodified version,I don't think there is any other solution.
  6. Shady1

    CD16 error

    i want to run mtadiag again and pastebin post link
  7. Shady1

    CD16 error

    you can try a different location
  8. Shady1

    CD16 error

    Are you sure you did a clean install of the MTA again?
  9. Shady1

    CD16 error

    You are welcome, I will always help you
  10. Shady1

    CD16 error

    https://www.g2a.com/grand-theft-auto-san-andreas-steam-key-global-i10000004439009 no sales on steam,It is advantageous for you to buy a key
  11. Shady1

    CD16 error

    you should install without mods and install cleanly,You should not use GTA:SA as CRACK, it will be better for you Tag me if you have any other questions, I will help you
  12. Shady1

    CD16 error

    You must install without mods and cleanly,and if GTA:SA is crack you will have to buy the original instead. (MTA team does not recommend crack)
  13. first of all @Lalalu , welcome to the forum, it would be great if you could tag me and show a screenshot of your problem to get your opinions on this.
  14. Shady1

    CD16 error

    there are too many non-standards, you should reinstall the MTA program,to a mod-free and clean folder.
  15. oi @realasuramc, preparei um código de comando para o seu problema, quero que você o teste e tente outra tecla do teclado no lado "bindkey" (você deve atribuir outra chave em vez de "t") function mensagemRP(player, cmd, ...) local messagemFRP = table.concat ({...}," ") local name = getPlayerName(player) outputChatBox("#FF3C00[ #ffffff CDC - Chat Global #FF3C00] "..name.." #ffffff"..messagemFRP, root, 255, 255, 255, true) --efeito no chat end addCommandHandler("Global", mensagemRP) addEventHandler("onPlayerJoin", root, function() bindKey(source, "t", "down", "chatbox", "Global") end ) addEventHandler("onResourceStart", resourceRoot, function() for _,player in ipairs(getElementsByType("player")) do bindKey(player,"t", "down", "chatbox", "Global") end end )
  16. can you show the code line
  17. I will wait for a positive or negative answer after trying
  18. try this function https://wiki.multitheftauto.com/wiki/FindRotation
  19. Shady1

    CD16 Error

    I can't see pastebin link
  20. Shady1

    Error help pls

    don't do what you're trying to do and restart the MTA
  21. Como recomendação, você precisa criar um banco de dados, mas se quiser que seja mais prático, pode salvá-lo em XML.
  22. veicletestdrive = {} addEvent("testdrive", true) addEventHandler("testdrive", getRootElement(), function(player,veicleid) veicletestdrive[player] = createVehicle(veicleid,-2422.01147, -605.47894, 132.56250) warpPedIntoVehicle(player,veicletestdrive[player]) setTimer(function(player) --pass player to timer destroyElement(veicletestdrive[player]) setElementPosition(player, -2412.01294, -596.52393, 132.64844) end, 30000, 1, player) --pass player to timer end ) tente isso @Dandnix
  23. local cooldown = {} function dxConce() if exibindo_painelC == false then local tick = getTickCount() -- fixed if cooldown[element] and tick - cooldown[element] < 5000 then return end cooldown = getTickCount() --fixed addEventHandler("onClientRender", root, drawConce) exibindo_painelC = true bindKey('backspace','down', function() if exibindo_painelC == true then removeEventHandler("onClientRender", root, drawConce) setCameraTarget (localPlayer) exibindo_painel = false end end) end end
×
×
  • Create New...