PGRData/Resources/Scripts/XRedPoint/XRedPointConditions/XRedPointConditionBfrtChapterReward.lua
2022-12-26 14:06:01 +05:30

18 lines
No EOL
510 B
Lua

----------------------------------------------------------------
--节红点检测
local XRedPointConditionBfrtChapterReward = {}
local Events = nil
function XRedPointConditionBfrtChapterReward.GetSubEvents()
Events = Events or
{
XRedPointEventElement.New(XEventId.EVENT_FINISH_TASK)
}
return Events
end
function XRedPointConditionBfrtChapterReward.Check(chapterId)
return XDataCenter.BfrtManager.CheckAnyTaskRewardCanGet(chapterId)
end
return XRedPointConditionBfrtChapterReward