PGRData/Script/matrix/xredpoint/xredpointconditions/XRedPointConditionFashionStoryTask.lua
2024-09-01 22:49:41 +02:00

17 lines
No EOL
579 B
Lua

local XRedPointConditionFashionStoryTask={}
function XRedPointConditionFashionStoryTask.Check()
--获取当前活动所有任务
local tasks=XDataCenter.FashionStoryManager.GetCurrentAllTask(XDataCenter.FashionStoryManager.GetCurrentActivityId())
--判断是否有任务待领取
if not XTool.IsTableEmpty(tasks) then
for i, task in ipairs(tasks) do
if task.State == XDataCenter.TaskManager.TaskState.Achieved then
return true
end
end
end
return false
end
return XRedPointConditionFashionStoryTask