1
0

Added correct core plugin

This commit is contained in:
Alexander Harkness
2013-07-27 16:24:03 +01:00
parent 66e837ecbc
commit 983d87e443
40 changed files with 3530 additions and 0 deletions

View File

@@ -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