30 lines
914 B
Lua
30 lines
914 B
Lua
|
|
||
|
----------------------------------------------------------------
|
||
|
--角色技能红点检测
|
||
|
local XRedPointConditionCharacterSkill = {}
|
||
|
local Events = nil
|
||
|
function XRedPointConditionCharacterSkill.GetSubEvents()
|
||
|
Events = Events or
|
||
|
{
|
||
|
XRedPointEventElement.New(XEventId.EVENT_CHARACTER_LEVEL_UP),
|
||
|
XRedPointEventElement.New(XEventId.EVENT_CHARACTER_SKILL_UP),
|
||
|
XRedPointEventElement.New(XEventId.EVENT_CHARACTER_QUALITY_PROMOTE),
|
||
|
XRedPointEventElement.New(XEventId.EVENT_CHARACTER_SKILL_UNLOCK),
|
||
|
}
|
||
|
return Events
|
||
|
end
|
||
|
|
||
|
function XRedPointConditionCharacterSkill.Check(characterId)
|
||
|
|
||
|
if not characterId then
|
||
|
return false
|
||
|
end
|
||
|
|
||
|
if not XFunctionManager.JudgeOpen(XFunctionManager.FunctionName.CharacterSkill) then
|
||
|
return false
|
||
|
end
|
||
|
|
||
|
return XDataCenter.CharacterManager.CanPromoteSkill(characterId)
|
||
|
end
|
||
|
|
||
|
return XRedPointConditionCharacterSkill
|