diff options
author | Alexander Harkness <bearbin@gmail.com> | 2013-08-13 18:55:46 +0200 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2013-08-13 18:55:46 +0200 |
commit | c52e0e81ea1584e37359ff9e77b00c3e35045ced (patch) | |
tree | b784106b72e245fba95350262d1a394c031a84df /MCServer/Plugins/Core/do.lua | |
parent | Merge pull request #84 from tonibm19/patch-2 (diff) | |
download | cuberite-c52e0e81ea1584e37359ff9e77b00c3e35045ced.tar cuberite-c52e0e81ea1584e37359ff9e77b00c3e35045ced.tar.gz cuberite-c52e0e81ea1584e37359ff9e77b00c3e35045ced.tar.bz2 cuberite-c52e0e81ea1584e37359ff9e77b00c3e35045ced.tar.lz cuberite-c52e0e81ea1584e37359ff9e77b00c3e35045ced.tar.xz cuberite-c52e0e81ea1584e37359ff9e77b00c3e35045ced.tar.zst cuberite-c52e0e81ea1584e37359ff9e77b00c3e35045ced.zip |
Diffstat (limited to 'MCServer/Plugins/Core/do.lua')
-rw-r--r-- | MCServer/Plugins/Core/do.lua | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/MCServer/Plugins/Core/do.lua b/MCServer/Plugins/Core/do.lua new file mode 100644 index 000000000..6ac7e96cd --- /dev/null +++ b/MCServer/Plugins/Core/do.lua @@ -0,0 +1,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 |