引导修改提交
parent
917662ff20
commit
7225723b34
|
@ -59,6 +59,18 @@ function this.OnLevelChange()
|
||||||
this.CheckFuncGuide()
|
this.CheckFuncGuide()
|
||||||
elseif PlayerManager.level == 22 then
|
elseif PlayerManager.level == 22 then
|
||||||
StoryMapManager.isShowStory = 3
|
StoryMapManager.isShowStory = 3
|
||||||
|
elseif PlayerManager.level == 75 then
|
||||||
|
local config = ConfigManager.GetConfigData(ConfigName.SpecialConfig,40)
|
||||||
|
if config then
|
||||||
|
local limits = string.split(config.Value, "|")
|
||||||
|
if limits then
|
||||||
|
local lvs = string.split(limits[1], "#")
|
||||||
|
local stars = string.split(limits[2], "#")
|
||||||
|
if PlayerManager.level >= tonumber(lvs[2]) then
|
||||||
|
table.insert(_FuncGuideList, 102900)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
--
|
--
|
||||||
|
|
Loading…
Reference in New Issue