summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/APIDump/Hooks/OnSpawningEntity.lua
blob: c4bff39161a0938dc40affe6b3c038bcdd2c84da (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
28
29
30
31
32
return
{
	HOOK_SPAWNING_ENTITY =
	{
		CalledWhen = "Before an entity is spawned in the world.",
		DefaultFnName = "OnSpawningEntity",  -- also used as pagename
		Desc = [[
			This hook is called before the server spawns an {{cEntity|entity}}. The plugin can either modify the
			entity before it is spawned, or disable the spawning altogether. If the entity spawning is a
			monster, the {{OnSpawningMonster|HOOK_SPAWNING_MONSTER}} hook is called before this hook.</p>
			<p>
			See also the {{OnSpawnedEntity|HOOK_SPAWNED_ENTITY}} hook for a similar hook called after the
			entity is spawned.
		]],
		Params =
		{
			{ Name = "World", Type = "{{cWorld}}", Notes = "The world in which the entity will spawn" },
			{ Name = "Entity", Type = "{{cEntity}} descentant", Notes = "The entity that will spawn" },
		},
		Returns = [[
			If the function returns false or no value, the next plugin's callback is called. Finally, the server
			spawns the entity with whatever parameters have been set on the {{cEntity}} object by the callbacks.
			If the function returns true, no other callback is called for this event and the entity is not
			spawned.
		]],
	},  -- HOOK_SPAWNING_ENTITY
}