Jump to content

Forums

  1. Multi Theft Auto: San Andreas 1.x

    1. Support for MTA:SA 1.x

      HELP! HELP! Need help? Post here.

      55.9k
      posts
    2. User Guides

      These guides are a good place to start learning how to achieve certain things within MTA in an efficient and well mannered way.

      11
      posts
    3. Open Source Contributors

      This space is for contributors to discuss the development of MTA. No user suggestions/support.

      1.3k
      posts
    4. Suggestions

      Suggestions and requests go here. Please note that actual feature requests must be filed on our GitHub.

      7.7k
      posts
    5. [Read-Only] Ban appeals

      We have stopped accepting ban appeals for MTA. You can find more about this at our newspost: https://forum.multitheftauto.com/topic/139550-cheater-reports-ban-appeals-in-2023/

      4.6k
      posts
  2. General MTA

    1. News

      News and updates on Multi Theft Auto.

      9.8k
      posts
    2. Media

      User-made screens and movies go here.

      4.5k
      posts
    3. Site/Forum/Discord/Mantis/Wiki related

      Share your comments & concerns about our services.

      5.7k
      posts
    4. MTA Chat

      MTA related chat that is NOT support related!

      2.2k
      posts
    5. 331.2k
      posts
  3. MTA Community

    1. Scripting

      All Lua scripting topics related to Multi Theft Auto.

      262.5k
      posts
    2. Maps

      Discussions for maps on various gamemodes.

      13.5k
      posts
    3. Resources

      Everything else about resources.

      28.8k
      posts
    4. Other Creations & GTA modding

      This section includes things such as GUI themes, forum userbars, user-created MTA logos, etc. Also contains topics which cover general GTA modding areas that can be used in MTA, such as modelling.

      2.5k
      posts
    5. Competitive gameplay

      Discussions about various MTA-related competitive gameplay events. Also gang (clan) forums.

      26.7k
      posts
    6. Servers

      Looking for a server to play on? Looking for someone to host your server? Looking for a place to discuss with other server owners? Here's where to look.

      15.9k
      posts
  4. Other

    1. General

      Non-MTA discussions. Anything you want.

      38.1k
      posts
    2. Multi Theft Auto 0.5r2

      Discussion regarding Multi Theft Auto 0.5r2 for GTAIII and Vice City.

      694
      posts
    3. Third party GTA mods

      Showcase for single player mods and requests.

      813
      posts
  5. Archive

    1. 144k
      posts
    2. Trash

      These posts have broken forum rules. They are stored here temporarily so offending users can see what they have done wrong.

      4k
      posts
  • Posts

    • That is a good direction, but there is one important detail: The example on isLineOfSightClear is useful for obstacle detection / jump logic, yes. However, setPedControlState is a client function, and for server-side peds it is not automatically synchronized, so using it directly on a slothbot ped may look broken for other players. So if this boss is fully server-side through slothbot, you may need: - obstacle / height detection with isLineOfSightClear or processLineOfSight - then trigger the jump from the ped syncer client, or handle it with a custom movement solution instead of only server-side control states Also, if the goal is specifically “jump when the player is on a high place”, then line of sight alone may not be enough. You may also want to compare the player Z position with the boss Z position and only trigger jump when the target is above a certain height difference.
    • Yes, it is possible to play downloaded maps solo in MTA. If it gets stuck on “starting map”, it is usually not an admin problem. It is more often caused by: - broken or incomplete map resource - missing dependencies - bad meta.xml - local server/editor resource issues Check F8 first, because it usually shows the exact error. Also try deleting editor_test and editor_dump and make sure your editor/local server resources are installed correctly. MTA Wiki and older forum posts both point to editor/local resource problems as a common cause of this kind of issue. :contentReference[oaicite:4]{index=4}
    • 👋 @arturmaliew Your XML structure is broken because some <group> tags are closed in the wrong place. That is why the file cannot be opened,not necessarily because the file is missing, but because the XML is invalid. You accidentally closed the main group too early and then opened another group at the wrong level. Try this fixed version: <catalog type="vehicle"> <group name="Машины"> <group name="Ваз"> <vehicle id="560" name="2107" /> </group> <group name="Иномарки"> <vehicle id="415" name="Nissan GT-R" /> </group> <group name="Дпс"> <vehicle id="597" name="Приора ДПС" /> <vehicle id="427" name="Уаз Полиция" /> </group> </group> <group name="Motorbikes"> <vehicle id="481" name="BMX" /> <vehicle id="581" name="BF-400" /> <vehicle id="462" name="Скутер" /> <vehicle id="463" name="Freeway" /> <vehicle id="523" name="HPV1000" /> <vehicle id="461" name="PCJ-600" /> <vehicle id="586" name="Wayfarer" /> <vehicle id="471" name="Quadbike" /> </group> </catalog> Also make sure the file is saved as UTF-8 and that the resource is loading the correct path to vehicles.xml
    • 👋 @User8382983  I took some time to read through the GitHub source and I honestly like the approach you took with this project. The modular architecture is very clean and makes the anticheat easy to maintain and extend. Splitting detections into independent modules is definitely the right direction for an MTA resource like this. I also like that everything is configurable through config.lua that makes it much easier for server owners to adapt it to their environment. The amount of detection types is also impressive (movement, combat, environment, network etc.). Especially the event spam protection, element data protection and movement analyzers are very useful in real servers. Another great thing is that the project is open source. Transparency is extremely important when it comes to anticheat systems, and it allows other developers to contribute and improve the system over time. If I could give a few suggestions: - Some detections (like wallhack scanning and VPN detection) may need further refinement because they can be unreliable in some environments. - It might be good to move as much logic as possible to the server side, since client-side protections can sometimes be bypassed by advanced loaders. - As the project grows, adding more documentation about how each detection works internally could also help other developers contribute. Overall it's a very promising project and I respect the effort you put into it. It's always great to see new open-source tools for the MTA community. Good work 👍
    • 👋 @SQUALER you should contact the server owners of the server you are trying to log in to.

Twitter Feed

×
×
  • Create New...