[新手引导]=====================================屏蔽新手引导

wangzhenxing 2023-11-11 11:02:48 +08:00
parent c970454f9c
commit a3451e590b
1 changed files with 10 additions and 0 deletions

View File

@ -57,12 +57,18 @@ function this.PracticeGuideFun()
end end
function this.OnLevelChange() function this.OnLevelChange()
--屏比等级引导
if not AppConst.isGuide then
-- --LogGreen("不在引导内")
return
end
-- 提审服不再出发相关引导 -- 提审服不再出发相关引导
if SERVER_VERSION == 1 then if SERVER_VERSION == 1 then
return return
end end
-- 首充引导特殊处理到十级开放 -- 首充引导特殊处理到十级开放
if PlayerManager.level == 10 then if PlayerManager.level == 10 then
table.insert(_FuncGuideList, 100200) table.insert(_FuncGuideList, 100200)
--解开孙悟空封印的剧情 --解开孙悟空封印的剧情
--StoryMapManager.isShowStory = 1 --StoryMapManager.isShowStory = 1
@ -138,6 +144,10 @@ function this.OnFightPass(fightId)
end end
-- 通过关卡时判断 -- 通过关卡时判断
function this.BeforeFightCheck(fightId, func) function this.BeforeFightCheck(fightId, func)
if not AppConst.isGuide then
-- --LogGreen("不在引导内")
return
end
-- 引导完成 -- 引导完成
local function OnFuncGuideDone() local function OnFuncGuideDone()
if func then if func then