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

19 lines
No EOL
630 B
Lua

----------------------------------------------------------------
local XRedPointConditionReceiveChat = {}
local Events = nil
function XRedPointConditionReceiveChat.GetSubEvents()
Events = Events or {
XRedPointEventElement.New(XEventId.EVENT_CHAT_RECEIVE_WORLD_MSG),
XRedPointEventElement.New(XEventId.EVENT_GUILD_RECEIVE_CHAT),
XRedPointEventElement.New(XEventId.EVENT_CHAT_RECEIVE_ROOM_MSG),
XRedPointEventElement.New(XEventId.EVENT_CHAT_RECEIVE_MENTOR_MSG),
}
return Events
end
function XRedPointConditionReceiveChat.Check()
return true
end
return XRedPointConditionReceiveChat