1
0
cuberite-2a/Server/Plugins/APIDump/Hooks/OnPlayerCrouched.lua

18 lines
528 B
Lua
Raw Normal View History

2020-03-23 12:24:31 +00:00
return
{
HOOK_PLAYER_CROUCHED =
{
CalledWhen = "Player crouched in the tick being currently processed.",
DefaultFnName = "OnPlayerCrouched", -- also used as pagename
Desc = [[
This function is called in each server tick for each {{cPlayer|player}} that has crouched.
]],
Params =
{
{ Name = "Player", Type = "{{cPlayer}}", Notes = "The player who has crouched." },
},
Returns = [[
If the function returns false or no value, other plugins callbacks are called.</p>
]],
}, -- HOOK_PLAYER_CROUCHED
}