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

17 lines
No EOL
482 B
Lua

----------------------------------------------------------------
--单个类型任务奖励检测
local XRedPointConditionTaskCourse = {}
local Events = nil
function XRedPointConditionTaskCourse.GetSubEvents()
Events = Events or
{
XRedPointEventElement.New(XEventId.EVENT_TASK_COURSE_REWAED),
}
return Events
end
function XRedPointConditionTaskCourse.Check()
return XDataCenter.TaskManager.CheckAllCourseCanGet()
end
return XRedPointConditionTaskCourse