Function Dump: Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Mr Doom Bringer No edit summary |
>JulienDethurens No edit summary |
||
(25 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
This is the location for the listing of all of the Lua based functions, ones that are built into the system. These are not to be confused with defined functions, ones that are made in your own code. These are changed/added to by the ROBLOX staff for the base Lua code, and cannot be overwritten or edited. | This is the location for the listing of all of the Lua based functions, ones that are built into the system. These are not to be confused with user-defined functions, ones that are made in your own code. These are changed/added to by the ROBLOX staff for the base Lua code, and cannot be overwritten or edited. | ||
These are broken up into 6 groups, where you can find more information about what you want to do on each page. | |||
;[[Function Dump/Core Functions|Core Functions]] | |||
:These are what help the Lua code run on Roblox. In here you can find listings for file manipulation, metatables, error handling and other basic system functions. If you aren't sure where the function is listed, look here first. | |||
;[[Function Dump/Coroutine Manipulation|Coroutine Manipulation]] | |||
:Here is the listing for coroutine manipulation, which allows you to set several things working at once and for a limited time of running. Take a look [http://en.wikipedia.org/wiki/Coroutine here] and [http://www.lua.org/manual/5.1/manual.html#2.11 here] for more detailed explanations of coroutines. | |||
;[[Function Dump/String Manipulation|String Manipulation]] | |||
:These functions let you do fancy things with words, such as changing the order of a string, comparing two strings and using the chat commands to do all kinds of fun stuff. | |||
;[[Function Dump/Table Manipulation|Table Manipulation]] | |||
:This section tells you how to play around with long lists of things and do fun stuff as well, such as reordering a table, sorting them, and searching for a specific item in a table. | |||
;[[Function Dump/Mathematical Functions|Mathematical Functions]] | |||
:Just as the name implies, this is a listing of all the math functions in Roblox Lua. Here you can find a listing of everything from trigonometry to a value so huge it doesn't have a real number. | |||
;[[Function Dump/Roblox Specific Functions|Roblox Specific Functions]] | |||
:These are functions that are only found in Roblox, and are used for a variety of things. | |||
[[Category:Reference Pages]] | [[Category:Reference Pages]] |
Latest revision as of 23:46, 11 March 2012
This is the location for the listing of all of the Lua based functions, ones that are built into the system. These are not to be confused with user-defined functions, ones that are made in your own code. These are changed/added to by the ROBLOX staff for the base Lua code, and cannot be overwritten or edited.
These are broken up into 6 groups, where you can find more information about what you want to do on each page.
- Core Functions
- These are what help the Lua code run on Roblox. In here you can find listings for file manipulation, metatables, error handling and other basic system functions. If you aren't sure where the function is listed, look here first.
- Coroutine Manipulation
- Here is the listing for coroutine manipulation, which allows you to set several things working at once and for a limited time of running. Take a look here and here for more detailed explanations of coroutines.
- String Manipulation
- These functions let you do fancy things with words, such as changing the order of a string, comparing two strings and using the chat commands to do all kinds of fun stuff.
- Table Manipulation
- This section tells you how to play around with long lists of things and do fun stuff as well, such as reordering a table, sorting them, and searching for a specific item in a table.
- Mathematical Functions
- Just as the name implies, this is a listing of all the math functions in Roblox Lua. Here you can find a listing of everything from trigonometry to a value so huge it doesn't have a real number.
- Roblox Specific Functions
- These are functions that are only found in Roblox, and are used for a variety of things.