More new plugin awesomeness
git-svn-id: http://mc-server.googlecode.com/svn/trunk@174 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
13
Plugins/NewTest/pluginlist.lua
Normal file
13
Plugins/NewTest/pluginlist.lua
Normal file
@@ -0,0 +1,13 @@
|
||||
function HandlePluginListCommand( Split, Player )
|
||||
local PluginManager = cRoot:Get():GetPluginManager()
|
||||
local PluginList = PluginManager:GetAllPlugins()
|
||||
|
||||
local PluginTable = {}
|
||||
for i, Plugin in ipairs( PluginList ) do
|
||||
table.insert(PluginTable, Plugin:GetName() )
|
||||
end
|
||||
|
||||
Player:SendMessage( cChatColor.Green .. "Loaded plugins:" )
|
||||
Player:SendMessage( cChatColor.Gold .. table.concat(PluginTable, cChatColor.Gold.." ") )
|
||||
return true
|
||||
end
|
||||
Reference in New Issue
Block a user