Predefined variables list: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
_G -- returns a table of all global variables | _G -- returns a table of all global variables | ||
coroutine -- returns a table containing functions for threads | coroutine -- returns a table containing functions for threads | ||
debug -- returns a table containing debug functions | debug -- returns a table containing debug functions | ||
math -- returns a table that contains mathematical functions | math -- returns a table that contains mathematical functions | ||
string -- returns a table containing functions for strings | string -- returns a table containing functions for strings | ||
table -- returns a table that contains functions for tables | table -- returns a table that contains functions for tables | ||
_VERSION -- returns a string of the version of lua in format "Lua 5.1" | _VERSION -- returns a string of the version of lua in format "Lua 5.1" | ||
self -- used in methods. | self -- used in methods | ||
arg -- used in functions which use '...' as an argument | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 14:30, 27 May 2017
Lua Predefined variables
_G -- returns a table of all global variables coroutine -- returns a table containing functions for threads debug -- returns a table containing debug functions math -- returns a table that contains mathematical functions string -- returns a table containing functions for strings table -- returns a table that contains functions for tables _VERSION -- returns a string of the version of lua in format "Lua 5.1" self -- used in methods arg -- used in functions which use '...' as an argument
MTA Predefined variables
Click to collapse [-]
Sharedexports -- returns a table of resource names containing all export functions resource -- returns a resource element of the resource the snippet was executed in resourceRoot -- returns a resource root element of the resource the snippet was executed in root -- returns the root element of the server
Click to collapse [-]
Client onlyguiRoot -- returns the root element of all GUI elements. localPlayer -- returns the player element of the local player.
The list of hidden variables, that can be found in functions - handlers:
Click to collapse [-]
Sharedsource -- The player or element the event was attached to this -- Element, which was attached function-handler. eventName -- the name of the event ("onResourceStart", "onPlayerWasted" etc.)
Click to collapse [-]
Server onlyclient -- the client that called the event
More details about hidden variables in functions and events
List Predefined variables available in the HTTP files:
[php] requestHeaders -- table, contains all HTTP headlines current page. form -- table, contains all POST and GET settings, transferred current page. cookies -- table, contains all COOKIE, transferred current page. hostname -- string, contains IP or name host, which requested current page. url -- string, URL current page. user -- element, account user, which requested current page.