mirror of
https://github.com/etlegacy/etlegacy-lua-docs.git
synced 2024-11-10 06:51:49 +00:00
set lower toctree maxdepth and fixed internal link
This commit is contained in:
parent
e2e4963594
commit
1b61756812
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ Contents
|
||||||
--------
|
--------
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 3
|
:maxdepth: 2
|
||||||
|
|
||||||
intro
|
intro
|
||||||
cvars
|
cvars
|
||||||
|
|
|
@ -6,7 +6,7 @@ Legacy's Lua API is the interface for communication between Lua and Legacy mod.
|
||||||
|
|
||||||
The basic idea for this Lua API is event-management. After a certain event, the lua-interaction-code in Legacy executes a predefined function, with additional predefined arguments.
|
The basic idea for this Lua API is event-management. After a certain event, the lua-interaction-code in Legacy executes a predefined function, with additional predefined arguments.
|
||||||
|
|
||||||
For example, if a player dies the `et_Obituary( victim, killer, meansOfDeath ) <callbacks.html#et-obituary-victim-killer-meansofdeath>`__ function is executed. The Lua API allows you to manipulate and control this information.
|
For example, if a player dies the `et_Obituary( victim, killer, meansOfDeath ) <callbacks.html#et-obituary-target-attacker-meansofdeath>`__ function is executed. The Lua API allows you to manipulate and control this information.
|
||||||
|
|
||||||
In some cases you can also return a value to Legacy, whenever you intercepted something (i.e. a command), and prevent Legacy to handle it further.
|
In some cases you can also return a value to Legacy, whenever you intercepted something (i.e. a command), and prevent Legacy to handle it further.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue