summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/do.lua
blob: 6ac7e96cdb93f19d21697b147e5d2af7fc0413ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
function HandleDoCommand( Split, Player )

	if #Split < 3 then
		SendMessage( "Usage: /do <player> <command> [arguments]" )
		return true
	end

	-- Get the command and arguments.
	local newSplit = table.concat( Split, " ", 3 )

	local pluginManager = cRoot:Get():GetPluginManager()
	pluginManager:ExecuteCommand( Split[2], newSplit )

end

function HandleSudoCommand ( Split, Player )

	if #Split < 3 then
		SendMessage( "Usage: /sudo <player> <command> [arguments]" )
		return true
	end

	-- Get the command and arguments.
	local newSplit = table.concat( Split, " ", 3 )

	local pluginManager = cRoot:Get():GetPluginManager()
	pluginManager:ForceExecuteCommand( Split[2], newSplit )

end