Jump to content

Patrick

Moderators
  • Posts

    1,140
  • Joined

  • Last visited

  • Days Won

    41

Everything posted by Patrick

  1. https://forum.multitheftauto.com/forum/180-ban-appeals/
  2. https://wiki.multitheftauto.com/wiki/SpawnPlayer
  3. Hey, Ren712 shared a resource on community, you just have to modify it a little bit: https://community.multitheftauto.com/index.php?p=resources&s=details&id=18643
  4. Hey, there is a missing / in line 219 <file src="toyota/impreza.dff" type="client">
  5. Hi. Thanks for your feedback. Please try with the latest version: https://github.com/Patrick2562/mtasa-pDownloader
  6. Wrong language/section, moved to Russian section.
  7. Hi! The idea is really good and would be awesome to have something like that in MTA, since .luac doesn't provide full protection (ofc). But... I think we don't have it for good reasons, just like bytecode isn't safe and the Lua VM can be exploited "easily". Thats why Roblox removed bytecode support in 2012: https://blog.roblox.com/2012/08/bye-bye-bytecode/ Could these vulnerabilities be fixed or exists at all with your method of compiling directly to machine-code?
  8. Wrong language, moved to Portuguese section.
  9. Welcome! Troubleshooting steps for collisions 1) Export collision at 0,0,0 XYZ coordinates. 2) Ensure the rotations and scale values are at their defaults. If they aren't, you can reset the values through Hierarchy tab on your right side -> Reset scale/transforms. 3) Ensure the dimensions are less than 256 +/- on each axis, within a 512m cube. 4) Ensure the model topology is clean and has no isolated edges or vertices, as these can cause invisible walls. 5) While a collision can contain 32k vertices, it's strongly recommended to stay below 5k. 6) For invisible walls, install Goldfish's edition of Kam's scripts and run CST exporter. Export .cst -> import into Steve M's Collision Editor -> save as single .col file. Goldfish's Kam's scripts: https://gtaforums.com/topic/907323-rel-kams-gta-scripts-2018/
  10. Hi, it's not possible because one overwrite the other. You have to handle this inside one function. function Output(...) -- "magic parameter" for all local args = {...} -- put them into a table local length = #args if length == 1 then -- 1 parameter passed to function local text = args[1] elseif length == 2 then -- 2 parameter passed to function local text, player = args[1], args[2] elseif length == 5 then -- 5 parameter passed to function local text, player, colorR, colorG, colorB = unpack(args) -- or you can use unpack instead of indexing table one by one end end
  11. You can read about that here https://github.com/multitheftauto/mtasa-blue/issues/1370
  12. Hey! No, currently it's not possible. Rich presence had to be removed because of licensing issues. It'll probably come back in the future versions of MTA, but I don't know when exactly.
  13. Hi. No, it's not possible.
  14. Welcome! local connection = exports.dm_mysql:getConnection() function onJoin() local serial = getPlayerSerial(source) local ipadress = getPlayerIP(source) local serialcheck = dbQuery(connection, "SELECT banned FROM accounts WHERE serial = ?", serial) local result = dbPoll(serialcheck, -1) if result and #result == 1 then -- found an account local banned = tonumber(result[1]["banned"]) == 1 -- A Boolean from database is 0 (false) or 1 (true), this will be true if the value 1, false otherwise if banned then outputChatBox("Banned", source) else outputChatBox("Not banned", source) end end end addEventHandler("onPlayerJoin", root, onJoin)
  15. Hi. - Models are loaded to the memory, just like the secret key. If someone can dump out the key from the memory, he can do it with models as well. Currently this key is inside an encrypted, non-cached script. - Model loading is a performance heavy operation by default, encryption just makes it worse. (everything has a price) I try to make the loader as optimized as possible, but loading a large file is problematic, doesn't matter is it encrypted or not. By the way this method doesn't increase the file size.
  16. Model encrypter BETA Protect your models easily. https://mtaclub.eu/pcrypt When it's done, don't forget to read HOW_TO_USE.txt! Please let me know if you find a bug!
  17. Megoldva, MTA Discordon, itt.
  18. Maybe it is possible somehow to get ped's brightness and modify parachute's with shaders, but I have no idea how could you do it. Btw do you use the latest pAttach release? Don't you have bugs while attaching objects to player's head? ... I mean wierd movement / rotation offsets
  19. Sorry, we can't help you in leaked gamemodes. Your thread has been locked.
  20. Welcome. Is owner_email_address set in mtaserver.conf? And make sure ase is 1
  21. Patrick

    Web

    With fetchRemote, but "to the web" is not accurate enough.
×
×
  • Create New...