PGRData/Script/matrix/xredpoint/xredpointconditions/XRedPointConditionGetCard.lua

16 lines
438 B
Lua
Raw Normal View History

----------------------------------------------------------------
-- 月卡奖励领取
local XRedPointConditionGetCard = {}
local Events = nil
function XRedPointConditionGetCard.GetSubEvents()
Events = Events or {
XRedPointEventElement.New(XEventId.EVENT_YK_UPDATE),
}
return Events
end
function XRedPointConditionGetCard.Check()
2024-09-01 22:49:41 +02:00
return not XDataCenter.PayManager.IsGotCard()
end
return XRedPointConditionGetCard