From 983d87e44356c4cfc8f8908ec365006323a4dbe0 Mon Sep 17 00:00:00 2001 From: Alexander Harkness Date: Sat, 27 Jul 2013 16:24:03 +0100 Subject: Added correct core plugin --- MCServer/Plugins/Core/give.lua | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 MCServer/Plugins/Core/give.lua (limited to 'MCServer/Plugins/Core/give.lua') diff --git a/MCServer/Plugins/Core/give.lua b/MCServer/Plugins/Core/give.lua new file mode 100644 index 000000000..baabdf557 --- /dev/null +++ b/MCServer/Plugins/Core/give.lua @@ -0,0 +1,39 @@ +function HandleGiveCommand(Split, Player) + if ((#Split ~= 2) and (#Split ~=3)) then + Player:SendMessage(cChatColor.Green .. "Usage: /item [ItemType/Name:Dmg] "); + return true; + end + + local Item = cItem(); + local FoundItem = StringToItem(Split[2], Item); + + if not(IsValidItem(Item.m_ItemType)) then -- StringToItem does not check if item is valid + FoundItem = false + end + + if not(FoundItem) then + Player:SendMessage( cChatColor.Green .. "Invalid item id or name!" ) + return true + end + + local ItemAmount = 1; + if (#Split == 3) then + ItemAmount = tonumber(Split[3]); + if ((ItemAmount == nil) or (ItemAmount < 1) or (ItemAmount > 512)) then + Player:SendMessage(cChatColor.Green .. "Invalid amount!"); + return true; + end + end + + Item.m_ItemCount = ItemAmount; + + local ItemsGiven = Player:GetInventory():AddItem(Item); + if (ItemsGiven == ItemAmount) then + Player:SendMessage( cChatColor.Green .. "There you go!"); + LOG("Gave " .. Player:GetName() .. " " .. Item.m_ItemCount .. " times " .. Item.m_ItemType .. ":" .. Item.m_ItemDamage); + else + Player:SendMessage(cChatColor.Green .. "Not enough space in inventory, only gave " .. ItemsGiven); + LOG("Player " .. Player:GetName() .. " asked for " .. Item.m_ItemCount .. " times " .. Item.m_ItemType .. ":" .. Item.m_ItemDamage ..", but only could fit " .. ItemsGiven); + end + return true; +end \ No newline at end of file -- cgit v1.2.3