Jump to content

Nico834

Helpers
  • Posts

    189
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Nico834

  1. There was an issue in our codebase that was fixed by our volunteer developers over the past few days. Read this discussion on GitHub for more details. The solution to the problem is simple from your side, please update Multi Theft Auto to the latest version from Nightly Builds, if you want your data to be preserved, just run the installer instead of uninstalling first, so it only updates the necessary components. I have one more friendly suggestion for you, which is not necessary to fix this problem, but is worth doing regardless. Based on the submitted diagnostics, it can be seen that your copy of Grand Theft Auto is currently located in the C:\Games\GTA SA folder, which is not ideal, instead it is better to use the default installation path, which is C:\Program Files (x86)\Rockstar Games\GTA San Andreas. If you have any problems or questions related to this topic, feel free to ask and I hope this solves your problem.
  2. Welcome to our forums! I have moved your topic to the Scripting section, as you can get more help with this here If you have further questions, ask them in the form of a reply and wait patiently for a helpful answer
  3. Please follow the steps below: - Please download and run the latest version of MTADiag on your computer. - Post the pastebin link generated by the tool here. * Requires administrator rights on Windows Vista and newer operating systems. * Requires the 2017 version of Visual C++ Redistributable.
  4. Please follow the steps below: - Please download and run the latest version of MTADiag on your computer. - Post the pastebin link generated by the tool here. * Requires administrator rights on Windows Vista and newer operating systems. * Requires the 2017 version of Visual C++ Redistributable.
  5. If you did not install the game to the original installation path, it may cause problems. I suggest you try to reinstall in the original path and try again.
  6. addEventHandler("onPlayerJoin", root, function () -- client has just joined and the proximity voice resource isn't yet running on the client (thus they'd be able to hear everything without limitations on distance) setPlayerVoiceIgnoreFrom(source, root) setPlayerVoiceBroadcastTo(source, nil) outputChatBox("Join", source) end ) addEventHandler("onPlayerQuit", root, function () outputChatBox("Quit", source) local ConnectedStation = getElementData(source, "Voice:ConnectedStation") if ConnectedStation then ConnectedStation = tonumber(ConnectedStation) if Stations['' .. ConnectedStation] then local Found = false for i = 1, #Stations['' .. ConnectedStation] do if Stations['' .. ConnectedStation][i] == source then Found = i break end end if not Found then return "Player not found in Station" end table.remove(Stations['' .. ConnectedStation], Found) setElementData(source, "Voice:ConnectedStation", false, "broadcast") triggerClientEvent(Stations['' .. FactionID], "Voice:BroadcastReset", Player, Stations['' .. FactionID]) return true end end end )
  7. Download the latest binaries from https://nightly.mtasa.com
  8. Nico834

    Please help!!!!!

    You should reinstall the game because it currently contains a lot of files that may cause problems.
  9. Nico834

    Crash From MTA

    If the problem still persists after checking and repairing your system files, I recommend a complete reinstallation of Windows.
  10. You obtained your copy of Grand Theft Auto from an unofficial source, and we do not support such copies. You should always obtain the game from an authorized source, for your own safety and a smooth gaming experience, and I also recommend installing the game in the original installation folder.
  11. If the problem still persists, install the latest binaries from https://nightly.mtasa.com
  12. You obtained your copy of Grand Theft Auto from an unofficial source, and we do not support such copies. You should always obtain the game from an authorized source, for your own safety and a smooth gaming experience, and I also recommend installing the game in the original installation folder.
  13. Grand Theft Auto should be installed in its original installation folder. GTA's path: C:\Program Files (x86)\Rockstar Games\GTA San Andreas
  14. Grand Theft Auto should be installed in its original installation folder. GTA's path: C:\Program Files (x86)\Rockstar Games\GTA San Andreas
  15. Nico834

    Crash From MTA

    Follow this guide: Use the System File Checker tool to repair missing or corrupted system files - Microsoft Support
  16. Please follow the steps below: - Please download and run the latest version of MTADiag on your computer. - Post the pastebin link generated by the tool here. * Requires administrator rights on Windows Vista and newer operating systems. * Requires the 2017 version of Visual C++ Redistributable.
  17. If Kaspersky anti-malware software is installed on your computer, update the definitions or whitelist Multi Theft Auto. If this doesn't help either, or if the mentioned software is not installed on your computer, then download the latest version of Multi Theft Auto from here.
  18. Your copy of Grand Theft Auto is probably incomplete or modified. You should buy the game, or if you have already done so, reinstall or verify the integrity of the files.
  19. Nico834

    Crash From MTA

    Please follow the steps below: - Please download and run the latest version of MTADiag on your computer. - Post the pastebin link generated by the tool here. * Requires administrator rights on Windows Vista and newer operating systems. * Requires the 2017 version of Visual C++ Redistributable.
  20. Nico834

    mta crashes randomly

    Your copy of Grand Theft Auto is probably incomplete or modified. You should buy the game, or if you have already done so, reinstall or verify the integrity of the files.
  21. Nico834

    Mta cant find gta sa

    Please follow the steps below: - Please download and run the latest version of MTADiag on your computer. - Post the pastebin link generated by the tool here. * Requires administrator rights on Windows Vista and newer operating systems. * Requires the 2017 version of Visual C++ Redistributable.
  22. You can issue a bug report here: New Issue · multitheftauto/mtasa-blue (github.com)
  23. bindKey("m", "down", function() showCursor(not isCursorShowing()) end )
×
×
  • Create New...