diff options
author | Alexander Harkness <bearbin@gmail.com> | 2013-08-10 17:00:11 +0200 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2013-08-10 17:00:11 +0200 |
commit | 0355be903f7ae6fc8ced5bafe806a806598b7ff1 (patch) | |
tree | defb2f3eebdc25cc485a25713add93f058f46fc9 /MCServer/Plugins/Core/console.lua | |
parent | Merge pull request #56 from mc-server/LinuxColorConsole (diff) | |
download | cuberite-0355be903f7ae6fc8ced5bafe806a806598b7ff1.tar cuberite-0355be903f7ae6fc8ced5bafe806a806598b7ff1.tar.gz cuberite-0355be903f7ae6fc8ced5bafe806a806598b7ff1.tar.bz2 cuberite-0355be903f7ae6fc8ced5bafe806a806598b7ff1.tar.lz cuberite-0355be903f7ae6fc8ced5bafe806a806598b7ff1.tar.xz cuberite-0355be903f7ae6fc8ced5bafe806a806598b7ff1.tar.zst cuberite-0355be903f7ae6fc8ced5bafe806a806598b7ff1.zip |
Diffstat (limited to 'MCServer/Plugins/Core/console.lua')
-rw-r--r-- | MCServer/Plugins/Core/console.lua | 63 |
1 files changed, 62 insertions, 1 deletions
diff --git a/MCServer/Plugins/Core/console.lua b/MCServer/Plugins/Core/console.lua index 8fd548612..c4ee291ea 100644 --- a/MCServer/Plugins/Core/console.lua +++ b/MCServer/Plugins/Core/console.lua @@ -9,6 +9,7 @@ function InitConsoleCommands() PluginMgr:BindConsoleCommand("banlist", HandleConsoleBanList, " - Lists all players banned by name"); PluginMgr:BindConsoleCommand("getversion", HandleConsoleVersion, " - Gets server version reported to 1.4+ clients"); PluginMgr:BindConsoleCommand("help", HandleConsoleHelp, " - Lists all commands"); + PluginMgr:BindConsoleCommand("give", HandleConsoleGive, " - Gives items to the specified player.") PluginMgr:BindConsoleCommand("list", HandleConsoleList, " - Lists all players in a machine-readable format"); PluginMgr:BindConsoleCommand("listgroups", HandleConsoleListGroups, " - Shows a list of all the groups"); PluginMgr:BindConsoleCommand("numchunks", HandleConsoleNumChunks, " - Shows number of chunks currently loaded"); @@ -23,6 +24,66 @@ function InitConsoleCommands() end +function HandleConsoleGive(Split) + + -- Make sure there are a correct number of arguments. + if #Split ~= 3 and #Split ~= 4 and #Split ~= 5 then + return true, "Usage: give <player> <item> [amount] [meta]" + end + + -- Get the item from the arguments and check it's valid. + local Item = cItem() + if #Split == 5 then + local FoundItem = StringToItem(Split[3] .. ":" .. Split[5], Item) + else + local FoundItem = StringToItem(Split[3], Item) + end + if not IsValidItem(Item.m_ItemType) then -- StringToItem does not check if item is valid + FoundItem = false + end + + if not FoundItem then + return true, "Invalid item id or name!" + end + + -- Work out how many items the user wants. + local ItemAmount = 1 + if #Split > 3 then + ItemAmount = tonumber(Split[4]) + if ItemAmount == nil or ItemAmount < 1 or ItemAmount > 512 then + return true, "Invalid amount!" + end + end + + Item.m_ItemCount = ItemAmount + + -- Get the playername from the split. + local playerName = Split[2] + + local function giveItems(newPlayer) + local ItemsGiven = newPlayer:GetInventory():AddItem(Item) + if ItemsGiven == ItemAmount then + newPlayer:SendMessage(cChatColor.Green .. "[INFO] " .. cChatColor.White .. "There you go!" ) + LOG("Gave " .. newPlayer:GetName() .. " " .. Item.m_ItemCount .. " times " .. Item.m_ItemType .. ":" .. Item.m_ItemDamage) + else + Player:SendMessage( cChatColor.Rose .. "[INFO] " .. cChatColor.White .. "Not enough space in inventory, only gave " .. ItemsGiven) + return true, "Only " .. Item.m_ItemCount .. " out of " .. ItemsGiven .. "items could be delivered.") + end + end + + -- Finally give the items to the player. + itemStatus = cRoot:Get():FindAndDoWithPlayer(playerName, giveItems) + + -- Check to make sure that giving items was successful. + if not itemStatus then + return true, "There was no player that matched your query." + end + + return true + +end +end + function HandleConsoleBan(Split) if (#Split < 2) then return true, "Usage: ban [Player] <Reason>"; @@ -50,7 +111,7 @@ end function HandleConsoleUnban(Split) if( #Split < 2 ) then - return true, "Usage: /unban [Player]" + return true, "Usage: unban [Player]" end if( BannedPlayersIni:GetValueB("Banned", Split[2], false) == false ) then |