60 lines
1.6 KiB
Lua
60 lines
1.6 KiB
Lua
-----------------------------------
|
|
-- func: completequest <logID> <questID> <player>
|
|
-- desc: Completes the given quest for the GM or target player.
|
|
-----------------------------------
|
|
local logIdHelpers = require('scripts/globals/log_ids')
|
|
-----------------------------------
|
|
---@type TCommand
|
|
local commandObj = {}
|
|
|
|
commandObj.cmdprops =
|
|
{
|
|
permission = 1,
|
|
parameters = 'sss'
|
|
}
|
|
|
|
local function error(player, msg)
|
|
player:printToPlayer(msg)
|
|
player:printToPlayer('!completequest <logID> <questID> (player)')
|
|
end
|
|
|
|
commandObj.onTrigger = function(player, logId, questId, target)
|
|
-- validate logId
|
|
local questLog = logIdHelpers.getQuestLogInfo(logId)
|
|
if questLog == nil then
|
|
error(player, 'Invalid logID.')
|
|
return
|
|
end
|
|
|
|
local logName = questLog.full_name
|
|
logId = questLog.quest_log
|
|
|
|
-- validate questId
|
|
local areaQuestIds = xi.quest.id[xi.quest.area[logId]]
|
|
if questId ~= nil then
|
|
questId = tonumber(questId) or areaQuestIds[string.upper(questId)]
|
|
end
|
|
|
|
if questId == nil or questId < 0 then
|
|
error(player, 'Invalid questID.')
|
|
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
|
|
|
|
-- complete quest
|
|
targ:completeQuest(logId, questId)
|
|
player:printToPlayer(string.format('Completed %s Quest with ID %u for %s', logName, questId, targ:getName()))
|
|
end
|
|
|
|
return commandObj
|