landsandboat/scripts/commands/addtitle.lua

49 lines
1.1 KiB
Lua

-----------------------------------
-- func: addtitle
-- desc: Add and set player title.
-----------------------------------
---@type TCommand
local commandObj = {}
commandObj.cmdprops =
{
permission = 1,
parameters = 'ss'
}
local function error(player, msg)
player:printToPlayer(msg)
player:printToPlayer('!addtitle <title ID> (player)')
end
commandObj.onTrigger = function(player, titleId, target)
-- validate titleId
if titleId == nil then
error(player, 'You must supply a title ID.')
return
end
titleId = tonumber(titleId) or xi.title[string.upper(titleId)]
if titleId == nil or titleId < 1 then
error(player, 'Invalid title ID.')
return
end
-- validate target
local targ
if target == nil then
targ = player
else
targ = GetPlayerByName(target)
if targ == nil then
error(player, string.format('Player named "%s" not found!', target))
return
end
end
-- add title
targ:addTitle(titleId)
player:printToPlayer(string.format('%s was given title %s.', targ:getName(), titleId))
end
return commandObj