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

17 lines
No EOL
536 B
Lua

local XRedPointConditionArchiveCGAll = {}
local Events = nil
function XRedPointConditionArchiveCGAll.GetSubEvents()
Events = Events or
{
XRedPointEventElement.New(XEventId.EVENET_ARCHIVE_MARK_CG),
XRedPointEventElement.New(XEventId.EVENET_ARCHIVE_NEW_CG),
}
return Events
end
function XRedPointConditionArchiveCGAll.Check()
return XDataCenter.ArchiveManager.CheckCGRedPointByGroup() and XFunctionManager.JudgeCanOpen(XFunctionManager.FunctionName.Archive)
end
return XRedPointConditionArchiveCGAll