2013-08-11 16:00:53 +01:00
|
|
|
function HandleItemCommand( Split, Player )
|
2013-08-07 18:36:38 +01:00
|
|
|
|
|
|
|
|
if ((#Split ~= 2) and (#Split ~=3)) then
|
2013-08-11 16:00:53 +01:00
|
|
|
SendMessage( Player, "Usage: /i <item>[:meta] [amount]" )
|
2013-08-07 18:36:38 +01:00
|
|
|
return true
|
|
|
|
|
end
|
|
|
|
|
|
2013-08-10 16:00:11 +01:00
|
|
|
local itemSplit = StringSplit(Split[2], ":")
|
|
|
|
|
local newSplit = {}
|
2013-08-07 18:36:38 +01:00
|
|
|
|
|
|
|
|
newSplit[1] = "/give"
|
|
|
|
|
newSplit[2] = Player:GetName()
|
|
|
|
|
newSplit[3] = itemSplit[1]
|
|
|
|
|
if Split[3] ~= nil then
|
|
|
|
|
newSplit[4] = Split[3]
|
|
|
|
|
else
|
|
|
|
|
newSplit[4] = 1
|
|
|
|
|
end
|
|
|
|
|
if itemSplit[2] ~= nil then
|
|
|
|
|
newSplit[5] = itemSplit[2]
|
|
|
|
|
end
|
|
|
|
|
|
2013-08-11 16:00:53 +01:00
|
|
|
HandleGiveCommand( newSplit, Player )
|
2013-08-07 18:36:38 +01:00
|
|
|
return true
|
2013-08-11 16:00:53 +01:00
|
|
|
|
|
|
|
|
end
|