parent
3f8f389d6a
commit
fcba65b516
|
@ -2528,6 +2528,12 @@ RANK_TYPE = {
|
|||
SoulSign2 = 100103, --魂印排行榜(冲榜)
|
||||
Level_chong = 1003, --关卡排行榜(冲榜)
|
||||
FightValue_chong = 10022, --战力排行榜(冲榜)
|
||||
|
||||
DaijinquanRank_chong = 100201, --代金券排行榜(冲榜)
|
||||
YingxiongRank_chong = 100202, --英雄召唤排行榜(冲榜)
|
||||
FabaoRank_chong = 100203, --法宝召唤排行榜(冲榜)
|
||||
XunxianRank_chong = 100204, --寻仙召唤排行榜(冲榜)
|
||||
|
||||
Demons_chong = 1004, --心魔排行榜(冲榜)
|
||||
ShanHe_chong = 10030, --山河排行榜(冲榜)
|
||||
GodsWayTower = 45, --多队塔
|
||||
|
|
|
@ -355,16 +355,16 @@ function this.UpdateRankInfo(go, data)
|
|||
elseif rankType == RANK_TYPE.UpStar or rankType == RANK_TYPE.UpStar2 then
|
||||
infoTxt.gameObject:SetActive(true)
|
||||
infoTxt.text = Language[11932] .. data.rankInfo.param1
|
||||
elseif rankType == RANK_TYPE.DaijinquanRank then
|
||||
elseif rankType == RANK_TYPE.DaijinquanRank or rankType == RANK_TYPE.DaijinquanRank_chong then
|
||||
infoTxt.gameObject:SetActive(true)
|
||||
infoTxt.text = GetLanguageStrById("代金券") .. ":" .. data.rankInfo.param1
|
||||
elseif rankType == RANK_TYPE.YingxiongRank then
|
||||
elseif rankType == RANK_TYPE.YingxiongRank or rankType == RANK_TYPE.YingxiongRank_chong then
|
||||
infoTxt.gameObject:SetActive(true)
|
||||
infoTxt.text = GetLanguageStrById("次数:") .. data.rankInfo.param1
|
||||
elseif rankType == RANK_TYPE.FabaoRank then
|
||||
elseif rankType == RANK_TYPE.FabaoRank or rankType == RANK_TYPE.FabaoRank_chong then
|
||||
infoTxt.gameObject:SetActive(true)
|
||||
infoTxt.text = GetLanguageStrById("次数:") .. data.rankInfo.param1
|
||||
elseif rankType == RANK_TYPE.XunxianRank then
|
||||
elseif rankType == RANK_TYPE.XunxianRank or rankType == RANK_TYPE.XunxianRank_chong then
|
||||
infoTxt.gameObject:SetActive(true)
|
||||
infoTxt.text = GetLanguageStrById("次数:") .. data.rankInfo.param1
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue