Predefined variables list: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 30: | Line 30: | ||
source -- The player or element the event was attached to | source -- The player or element the event was attached to | ||
this -- Element, which was attached function-handler. | this -- Element, which was attached function-handler. | ||
eventName -- the name of the event ("onResourceStart", "onPlayerWasted" etc.) | |||
</syntaxhighlight> | |||
</section> | |||
<section name="Server only" class="server" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
client -- the client that called the event | |||
sourceResourceRoot -- the root of the resource that called the event | |||
sourceResource -- the resource that called the event | sourceResource -- the resource that called the event | ||
</syntaxhighlight> | </syntaxhighlight> | ||
</section> | </section> | ||
[http://wiki.multitheftauto.com/wiki/AddEventHandler More details about hidden variables in functions and events] | [http://wiki.multitheftauto.com/wiki/AddEventHandler More details about hidden variables in functions and events] | ||
[[Element_tree]] | [[Element_tree]] |
Revision as of 10:53, 11 February 2012
Click to collapse [-]
Shared_G -- returns a table of all global variables coroutine -- returns a table containing functions for threads debug -- returns a table containing debug functions. exports -- returns a table of resource names containing all export functions math -- returns a table that contains mathematical 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 string -- returns a table containing functions for strings table -- returns a table that contains functions for tables
Click to collapse [-]
Server_VERSION -- returns a string of the version of lua in the server in format "Lua 5.1"
Click to collapse [-]
ClientguiRoot -- returns the root element all GUI elements. localPlayer -- returns the player element of the local player. _VERSION -- returns a string of the version of lua in the client in format "Lua 5.1"
The list of hidden variables, that can be found in functions and handlers:
Click to collapse [-]
Server/Clientsource -- 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 sourceResourceRoot -- the root of the resource that called the event sourceResource -- the resource that called the event