summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/APIDump/Hooks/OnPlayerRightClickingEntity.lua
blob: 796622307598397d14ecc01de7c1047152d44d3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
return
{
	HOOK_PLAYER_RIGHT_CLICKING_ENTITY =
	{
		CalledWhen = "A player has right-clicked an entity. Plugins may override / refuse.",
		DefaultFnName = "OnPlayerRightClickingEntity",  -- also used as pagename
		Desc = [[
			This hook is called when the {{cPlayer|player}} right-clicks an {{cEntity|entity}}. Plugins may
			override the default behavior or even cancel the default processing.
		]],
		Params =
		{
			{ Name = "Player", Type = "{{cPlayer}}", Notes = "The player who has right-clicked the entity" },
			{ Name = "Entity", Type = "{{cEntity}} descendant", Notes = "The entity that has been right-clicked" },
		},
		Returns = [[
			If the functino returns false or no value, MCServer calls other plugins' callbacks and finally does
			the default processing for the right-click. If the function returns true, no other callbacks are
			called and the default processing is skipped.
		]],
	},  -- HOOK_PLAYER_RIGHT_CLICKING_ENTITY
}