-
Posts
415 -
Joined
-
Last visited
-
Days Won
33
Everything posted by FernandoMTA
-
v5.1.0 released (forgot to announce it here) v5.2.0 released, changelogs: https://github.com/Fernando-A-Rocha/mta-add-models/releases/tag/v5.2.0
-
open source [REL] NandoCrypt - File Encryption Resource
FernandoMTA replied to FernandoMTA's topic in Resources
v2.2.0 released: modernization and new command for QoL Download and changelog here: https://github.com/Fernando-A-Rocha/mta-nandocrypt/releases/tag/v2.2.0 -
See example. You use loadstring to import and override some default MTA functions, or use exports directly. https://github.com/Fernando-A-Rocha/mta-add-models/blob/main/[examples]/test_vehicles/s_vehicles.lua Use a recent https://nightly.multitheftauto.com/ server and client version. -- Newmodels v5 (codename Azul ) released! https://github.com/Fernando-A-Rocha/mta-add-models/tree/main?tab=readme-ov-file What changed? This version (v5) provides no guarantee that your code made for previous versions (v3, v4) will still work, but don't worry, the main concept hasn't changed. It is easy to migrate from v4 (not from v3) to v5. The models folder structure remained the same, but the scripts have changed. This resource no longer uses and relies on the MTA Element Data system to sync the models to all clients! This major change was made to improve performance and control the sync of models more efficiently.
-
Happy holidays! It's been more than a decade for me since I started playing MTA, my favorite game mod
-
Hahahaha is this AI voice? Nice video!!
-
A new channel for discussing security appeared on MTA development Discord, if you're curious.
-
https://github.com/Fernando-A-Rocha/mta-server-updater run this python script to easily update your server
-
awesome! I'm new to using these APIs i'll be digging into the project
-
oooo interesting Is the project available for contribution on GitHub or something?
-
This is really interesting. I'm gonna study this subject. Thank you for the thread! It definitely makes me feel even more that MTA-OOP doesn't need to exist, and we can already do everything with vanilla Lua tables.
-
report bugs at github.com/mtasa-blue issues i believe your problem is going over the memory limit.
-
Hi, I saw you archived this python version of tederis' c++ program, I forked it and made some slight fixes, I'll keep maintaining it https://github.com/Fernando-A-Rocha/ase2json_py
-
Hi @Megadreams the images on the main post hosted @ https://www.vultaic.com/sphene-tmp don't seem to be working
-
Hi idk if this is needed currently. MTA now has new useful file functions to scan folders for files etc: https://wiki.multitheftauto.com/wiki/PathListDir
-
lol thanks idk how I missed skin id 199!!!! Please tell me if you find any more issues. Stay alert to github v1.2.2 relesed with the patch mentioned above https://github.com/Fernando-A-Rocha/mta-modloader-reborn/releases/tag/v1.2.2
-
Nice original server!!
-
Some vehicles "engineRequestModel" features
FernandoMTA replied to DarkStalker30's topic in Скриптинг
You can make a custom "sirens" script with custom corona lights attached to vehicles. This will work regardless of the model. As for the hardcoded vehicle features like truck/tow-truck attach, dozer, ZR350 popup headlights, etc, some of these don't have workarounds in MTA using Lua scripts, but others do. For example, you can code popup headlights using vehicle component position/rotation. Good luck -
Some vehicles "engineRequestModel" features
FernandoMTA replied to DarkStalker30's topic in Скриптинг
Sirens won't work on models added using enginerequestmodel. Other features like dozer or tow truck also don't work. See bug report: https://github.com/multitheftauto/mtasa-blue/issues/1861 I have a lot of experience with these new model features. Feel free to ask. I created this framework: https://github.com/Fernando-A-Rocha/mta-add-models/ -
[SELL] Luraph - #1 Lua Obfuscator - Starting at $1
FernandoMTA replied to memcorrupt's topic in Resources
It would be nice to see performance comparisons on real MTA scripts running unobfuscated VS obfuscated using your product. Clientside scripts, to be more precise, are the ones server devs would be interested in protecting from theft.- 3 replies
-
- luraph
- lua obfuscator
-
(and 1 more)
Tagged with:
-
@cr4zypi3t You have some software on your PC that MTA classifies as VPN unfortunately. Could you please run MTADiag and post the results?
-
Working on a complete remake of this project "newmodels_reborn" Check https://github.com/Fernando-A-Rocha/mta-add-models/tree/main !
-
Yes, you can only track the client's resources download progress using that event ^ Downloading resource(s) can happen immediately when the player joins the server (downloaded resources are started progressively as their downloads finish) or during the gameplay if an admin/dev restarts a resource or starts a new resource that needs to be downloaded. To make a Loading/Downloading panel that appears when the player joins you just need to wait & check if the player is downloading, track the progress, and when done, initiate the next step (can be a login panel). Tracking download progress later during gameplay doesn't really matter.
-
If you handle the outputChatBox messages in 1 resource or script, you can simply override the outputChatBox function, redefining to do your color changes and magic. -- serverside outputChatBoxOriginal = outputChatBox outputChatBox = function(text, element, r, g, b, colorCoded) -- here you can change text variable return outputChatBoxOriginal(text, element, r, g, b, colorCoded) end
-
You can already do this yourself, i dont have time right now :)) u would have to edit a bit of the scripts though, as it is made to function with regular .dff, .txd, .col only