diff options
Diffstat (limited to 'MCServer/Plugins/Core/plugins.lua')
-rw-r--r-- | MCServer/Plugins/Core/plugins.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/MCServer/Plugins/Core/plugins.lua b/MCServer/Plugins/Core/plugins.lua new file mode 100644 index 000000000..6d74cf29e --- /dev/null +++ b/MCServer/Plugins/Core/plugins.lua @@ -0,0 +1,15 @@ +function HandlePluginsCommand( Split, Player ) + local PluginManager = cRoot:Get():GetPluginManager() + local PluginList = PluginManager:GetAllPlugins() + + local PluginTable = {} + for k, Plugin in pairs( PluginList ) do + if ( Plugin ) then + table.insert(PluginTable, Plugin:GetName() ) + end + end + + Player:SendMessage( cChatColor.Green .. "Loaded plugins: (" .. #PluginTable .. ")" ) + Player:SendMessage( cChatColor.Gold .. table.concat(PluginTable, cChatColor.Gold.." ") ) + return true +end
\ No newline at end of file |