From e03e8b7b30d5ca8d47a9b0d469d3a01ce85b9e4b Mon Sep 17 00:00:00 2001 From: STRWarrior Date: Wed, 11 Dec 2013 12:44:13 +0100 Subject: Documented OnWorldStarted. --- MCServer/Plugins/APIDump/Hooks/OnWorldStarted.lua | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 MCServer/Plugins/APIDump/Hooks/OnWorldStarted.lua (limited to 'MCServer/Plugins/APIDump') diff --git a/MCServer/Plugins/APIDump/Hooks/OnWorldStarted.lua b/MCServer/Plugins/APIDump/Hooks/OnWorldStarted.lua new file mode 100644 index 000000000..61e3de86e --- /dev/null +++ b/MCServer/Plugins/APIDump/Hooks/OnWorldStarted.lua @@ -0,0 +1,24 @@ +return +{ + HOOK_WORLD_STARTED = + { + CalledWhen = "A {{cWorld|world}} is initialized", + DefaultFnName = "OnWorldStarted", -- also used as pagename + Desc = [[ + This hook is called whenever a {{cWorld|world}} is initialized. + ]], + Params = + { + { Name = "World", Type = "{{cWorld}}", Notes = "World that is started" }, + }, + Returns = [[ + If the function returns false or no value, the next plugin's callback is called. If the function + returns true, no other callback is called for this event. There is no overridable behavior. + ]], + }, -- HOOK_WORLD_STARTED +} + + + + + -- cgit v1.2.3 From a4393dbf6cfe2dbc6fadbd0b031de77208b90361 Mon Sep 17 00:00:00 2001 From: STRWarrior Date: Sat, 14 Dec 2013 16:40:51 +0100 Subject: Documented cTNTEntity. --- MCServer/Plugins/APIDump/APIDesc.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'MCServer/Plugins/APIDump') diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua index 75d5c011f..b7dddec05 100644 --- a/MCServer/Plugins/APIDump/APIDesc.lua +++ b/MCServer/Plugins/APIDump/APIDesc.lua @@ -1862,6 +1862,17 @@ end }, }, -- cServer + cTNTEntity = + { + Desc = "This class manages a TNT entity.", + Functions = + { + GetCounterTime = { Return = "number", Notes = "Returns the time until the entity explodes." }, + GetMaxFuseTime = { Return = "number", Notes = "Returns how long the fuse was." }, + }, + Inherits = "cEntity", + }, + cTracer = { Desc = [[ -- cgit v1.2.3