summaryrefslogtreecommitdiffstats
path: root/MCServer
diff options
context:
space:
mode:
authorAlexander Harkness <bearbin@gmail.com>2014-02-15 11:52:31 +0100
committerAlexander Harkness <bearbin@gmail.com>2014-02-15 11:52:31 +0100
commita57c8bd7dacbbffef968b2108b0a7fd84ae64198 (patch)
treea8f78c858b1ef4f209b974e8e8053a498bd06671 /MCServer
parentUpdated Core. (diff)
parentDocumented BroadcastParticleEffect (diff)
downloadcuberite-a57c8bd7dacbbffef968b2108b0a7fd84ae64198.tar
cuberite-a57c8bd7dacbbffef968b2108b0a7fd84ae64198.tar.gz
cuberite-a57c8bd7dacbbffef968b2108b0a7fd84ae64198.tar.bz2
cuberite-a57c8bd7dacbbffef968b2108b0a7fd84ae64198.tar.lz
cuberite-a57c8bd7dacbbffef968b2108b0a7fd84ae64198.tar.xz
cuberite-a57c8bd7dacbbffef968b2108b0a7fd84ae64198.tar.zst
cuberite-a57c8bd7dacbbffef968b2108b0a7fd84ae64198.zip
Diffstat (limited to 'MCServer')
-rw-r--r--MCServer/Plugins/APIDump/APIDesc.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua
index e877ec446..34aff5ddb 100644
--- a/MCServer/Plugins/APIDump/APIDesc.lua
+++ b/MCServer/Plugins/APIDump/APIDesc.lua
@@ -2031,6 +2031,7 @@ end
BroadcastChatInfo = { Params = "Message, [{{cClientHandle|ExcludeClient}}]", Return = "", Notes = "Prepends Yellow [INFO] / colours entire text (depending on ShouldUseChatPrefixes()) and broadcasts message. For informational messages, such as command usage." },
BroadcastChatSuccess = { Params = "Message, [{{cClientHandle|ExcludeClient}}]", Return = "", Notes = "Prepends Green [INFO] / colours entire text (depending on ShouldUseChatPrefixes()) and broadcasts message. For success messages." },
BroadcastChatWarning = { Params = "Message, [{{cClientHandle|ExcludeClient}}]", Return = "", Notes = "Prepends Rose [WARN] / colours entire text (depending on ShouldUseChatPrefixes()) and broadcasts message. For concerning events, such as plugin reload etc." },
+ BroadcastParticleEffect = { Params = "ParticleName, X, Y, Z, OffSetX, OffSetY, OffSetZ, ParticleData, ParticleAmmount, [{{cClientHandle|ExcludeClient}}]", Return = "", Notes = "Spawns the specified particles to all players in the world exept the optional ExeptClient. A list of available particles by thinkofdeath can be found {{https://gist.github.com/thinkofdeath/5110835|Here}}" },
BroadcastSoundEffect = { Params = "SoundName, X, Y, Z, Volume, Pitch, [{{cClientHandle|ExcludeClient}}]", Return = "", Notes = "Sends the specified sound effect to all players in this world, except the optional ExceptClient" },
BroadcastSoundParticleEffect = { Params = "EffectID, X, Y, Z, EffectData, [{{cClientHandle|ExcludeClient}}]", Return = "", Notes = "Sends the specified effect to all players in this world, except the optional ExceptClient" },
CastThunderbolt = { Params = "X, Y, Z", Return = "", Notes = "Creates a thunderbolt at the specified coords" },