PGRData/Script/matrix/xredpoint/xredpointconditions/xplanetrunning/XRedPointConditionPlanetRunningActivity.lua
2024-09-01 22:49:41 +02:00

23 lines
No EOL
544 B
Lua

local XRedPointConditionPlanetRunningActivity = {}
function XRedPointConditionPlanetRunningActivity.Check()
if XDataCenter.PlanetManager.CheckFirstOpenActivityRedPoint() then
return true
end
if XDataCenter.PlanetManager.CheckShopRedPoint() then
return true
end
if XDataCenter.PlanetManager.CheckTaskRedPoint() then
return true
end
if XDataCenter.PlanetManager.CheckNewChapterRedPoint() then
return true
end
return false
end
return XRedPointConditionPlanetRunningActivity