update events.md
This commit is contained in:
parent
37fadec007
commit
b108c4710d
@ -90,6 +90,18 @@ function on_world_quit()
|
||||
|
||||
Called on world close (after saving)
|
||||
|
||||
```lua
|
||||
function on_block_placed(blockid, x, y, z, playerid)
|
||||
```
|
||||
|
||||
Called on block placed by player
|
||||
|
||||
```lua
|
||||
function on_block_broken(blockid, x, y, z, playerid)
|
||||
```
|
||||
|
||||
Called on block broken by player
|
||||
|
||||
## Layout events
|
||||
|
||||
Script *layouts/layout_name.xml.lua* events.
|
||||
|
||||
@ -89,6 +89,19 @@ function on_world_quit()
|
||||
```
|
||||
|
||||
Вызывается при выходе из мира (после сохранения)
|
||||
|
||||
```lua
|
||||
function on_block_placed(blockid, x, y, z, playerid)
|
||||
```
|
||||
|
||||
Вызывается после установки блока игроком
|
||||
|
||||
```lua
|
||||
function on_block_broken(blockid, x, y, z, playerid)
|
||||
```
|
||||
|
||||
Вызывается после разрушения блока игроком
|
||||
|
||||
## События макета
|
||||
|
||||
События прописываются в файле `layouts/имя_макета.xml.lua`.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user