Modules: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Removed "Incomplete" flag)
m (→‎How to write modules?: removing useless parts that does not exist and rename the reference)
 
Line 34: Line 34:


==How to write modules?==
==How to write modules?==
* [[Modules_Introduction|Part 1]]
* [[Modules_Introduction|Modules Introduction]]
<!--* [[Modules_Introduction_2|Part 2]]-->
 


[[Category:Scripting Concepts]]
[[Category:Scripting Concepts]]

Latest revision as of 19:17, 28 September 2024

Modules are extensions for Multi Theft Auto's Lua core, allowing the integration and use of custom Lua functions that have been written in C++, and compiled as a DLL or SO file. Modules are commonly used to create functions for such purposes that Multi Theft Auto lacks, such as sockets. All modules listed here are not distributed with Multi Theft Auto, and must be manually installed.

Modules list

You can view a list of all the documented modules here:


How to write modules?