landsandboat/scripts/commands/hasitem.lua

52 lines
1.3 KiB
Lua

-----------------------------------
-- func: hasitem
-- desc: Checks if a player has a specific item
-----------------------------------
---@type TCommand
local commandObj = {}
commandObj.cmdprops =
{
permission = 1,
parameters = 'is'
}
local function error(player, msg)
player:printToPlayer(msg)
player:printToPlayer('!hasitem <itemID> (player)')
end
commandObj.onTrigger = function(player, itemId, target)
-- validate itemId
if itemId == nil then
error(player, 'You must provide an itemID.')
return
elseif itemId < 1 then
error(player, 'Invalid itemID.')
return
end
-- validate target
local targ
if target == nil then
targ = player:getCursorTarget()
if targ == nil or not targ:isPC() then
targ = player
end
else
targ = GetPlayerByName(target)
if targ == nil then
error(player, string.format('Player named "%s" not found!', target))
return
end
end
-- report hasItem
if targ:hasItem(itemId) then
player:printToPlayer(string.format('%s has item %i.', targ:getName(), itemId))
else
player:printToPlayer(string.format('%s does not have item %i.', targ:getName(), itemId))
end
end
return commandObj