PGRData/Resources/Scripts/XRedPoint/XRedPointConditions/XRedPointConditionGuardCampRed.lua

19 lines
450 B
Lua
Raw Normal View History

2022-12-26 08:36:01 +00:00
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