Jump to content

eAi

Retired Staff
  • Posts

    2,986
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by eAi

  1. My guess is because SA-MP doesn't allow you to download your own models, so they have to include them built-in to the client. I've never played SA-MP though, so I don't know if that's the case.
  2. That's basically the same reason that it's not built in. The MTA server doesn't know anything about the collision data for the vehicles or the world, so it can't do server-side collision detection (as most other real-time multiplayer games would do). To implement server-side physics we'd have to extract all of the collision data from GTA and make our own perfect copy of the physics engine. Even if we could do this technically (it would be very hard) it would infringe R*'s copyright to include the GTA collision meshes with the MTA installer.
  3. eAi

    mta public statistic

    It doesn't appear that GTA V has affected MTA at all, we've still got record numbers of players. The number of players playing varies massively at different times of the day - with 5x more players playing at the peak compared to the trough each day. We've never had 26k simultaneous players.
  4. It's preferable to the current situation though, isn't it? It's certainly no worse.
  5. eAi

    Group Check

    getTeamFromName returns a team object (i.e. your COP or CR variables) not a string.
  6. eAi

    MTA on GTA 5?

    Not that it matters, but GTA:SA was never intended to have multiplayer.
  7. That should be more efficient. Sending clients data they don't need is a waste of bandwidth. If you genuinely need to send all the clients the same data, then triggering on the root would be somewhat more optimal (the data shouldn't need to be mcodes multiple times for example).
  8. eAi

    HTML question.

    See https://wiki.multitheftauto.com/wiki/Resource_Web_Access and more specifically https://wiki.multitheftauto.com/wiki/PHP_SDK. Bear in mind that the pages you see in webadmin and the other web-based resources are written in lua, not PHP.
  9. The content of the 'weird errors' might be more meaningful than the dxdiag log - post those here.
  10. eAi

    Green Candy

    This sounds very interesting (though a bit hard to read and rather cryptic). I look forward to seeing the patches!
  11. eAi

    MTA PHP SDK 0.4?

    https://wiki.multitheftauto.com/wiki/PHP_SDK
  12. eAi

    MTA PHP SDK 0.4?

    I've fixed the link on the wiki.
  13. eAi

    Acl events ^^

    What would these be useful for (except for admin tools?)
  14. https://wiki.multitheftauto.com/wiki/GetResourceInfo
  15. eAi

    MTA: SA Handling Issues

    You should use the MTA functions to change the handling. The Map Editor is running on a server too - it's a local one.
  16. If you look at the source code: http://code.google.com/searchframe#KdIe ... .com&l=210 You'll see that the first two arguments are used for the position of the colshape - the x and y values returned from getElementPosition. This position would ideally be the centre of the polygon (I'm not sure why we don't calculate that automatically?), as the only real purpose is so that we can do a cheap collision check to see if you're near the colshape, before we do a more expensive check against each side of the polygon.
  17. Maps are much better compressed than LUA, and should be a fair bit faster to load.
  18. I believe the only real way to mitigate against DDOS attacks is to make sure you've got a lot of bandwidth, that your router can handle as much data as the DDOSer can throw at it and that it can detect and throw away DDOS packets. This isn't easy, and I doubt any home systems are able to do a good job at this. Even the best professional hosting finds it hard - it has to be taught which packets are part of the DDOS (e.g. filtering by country, or some other fingerprint).
  19. This isn't the place for these kind of arguments.
  20. If you can, please report it to https://analysis.avira.com/en/submit so they can fix it.
  21. eAi

    MTA starts Single

    What GTA version do you have?
  22. You've written theplayer rather than thePlayer on the giveWeapon line.
  23. It's not saved anywhere, unless you use saveMap.
×
×
  • Create New...