Math: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Fixed a typo. It should be randomseed and not random itself.)
 
Line 37: Line 37:


==See Also==
==See Also==
* [http://lua-users.org/wiki/MathLibraryTutorial Math examples on the LUA Wiki]
* [http://lua-users.org/wiki/MathLibraryTutorial Math examples on the Lua wiki.]


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

Latest revision as of 07:49, 8 June 2024

Math is a built-in Lua library which contains mathematical functions and constants that you can use in scripts.

Do this beforehand to improve randomness:

math.randomseed(os.time())

See Also