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

19 lines
No EOL
450 B
Lua

local XRedPointConditionGuardCampRed = {}
local Events = nil
function XRedPointConditionGuardCampRed.GetSubEvents()
Events = Events or
{
XRedPointEventElement.New(XEventId.EVENT_GUARD_CAMP_ACTIVITY_DATA_CHANGE),
}
return Events
end
function XRedPointConditionGuardCampRed.Check()
if XDataCenter.GuardCampManager.CheckRedPoint() then
return true
end
return false
end
return XRedPointConditionGuardCampRed