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

16 lines
No EOL
413 B
Lua

local XRedPointConditionNieRTaskRed = {}
local Events = nil
function XRedPointConditionNieRTaskRed.GetSubEvents()
Events = Events or
{
XRedPointEventElement.New(XEventId.EVENT_TASK_SYNC),
}
return Events
end
function XRedPointConditionNieRTaskRed.Check(chapterId)
local red = XDataCenter.NieRManager.CheckNieRTaskRed(chapterId)
return red
end
return XRedPointConditionNieRTaskRed